:root {
    --navy: #061b49;
    --blue: #083a8c;
    --red: #e10613;
    --light: #f5f7fb;
    --ink: #141927;
    --muted: #657085;
    --gold: #ffc72c;
    --white: #ffffff;
}

/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* HEADER */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8ebf2;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand img {
    height: 58px;
    max-width: 300px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 22px;
    align-items: center;
    font-weight: 700;
    color: var(--navy);
}

.menu {
    display: none;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--red);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(225, 6, 19, 0.2);
    border: 0;
    cursor: pointer;
}

.btn.secondary {
    background: var(--navy);
}

.btn.ghost {
    background: #ffffff;
    color: var(--navy);
    box-shadow: inset 0 0 0 2px #dfe5f2;
}

.btn.small {
    padding: 10px 16px;
}

/* HERO */
.hero {
    background: radial-gradient(circle at 75% 15%, #eaf2ff 0, #ffffff 33%, #f7f9fd 100%);
    padding: 74px 0 50px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #eef4ff;
    color: var(--blue);
    border: 1px solid #dbe8ff;
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 900;
}

h1 {
    font-size: clamp(40px, 6vw, 76px);
    line-height: 0.94;
    margin: 22px 0;
    color: var(--navy);
    letter-spacing: -2px;
}

h1 span,
.red {
    color: var(--red);
}

.lead {
    font-size: 20px;
    line-height: 1.55;
    color: #38445a;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.trust div,
.mini-card {
    background: #ffffff;
    border: 1px solid #e4e8f0;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(6, 27, 73, 0.06);
    font-weight: 800;
    color: var(--navy);
}

/* IMAGEM NO HERO */
.hero-card-image {
    width: 100%;
}

.hero-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(6, 27, 73, 0.18);
}



.passport {
    font-size: 120px;
    text-align: center;
    margin: 46px 0 20px;
}

.stamp {
    position: absolute;
    right: 24px;
    top: 24px;
    background: var(--red);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
}

.steps {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.steps div {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px;
}

/* SEÇÕES */
.section {
    padding: 72px 0;
}

.section.alt {
    background: var(--light);
}

.title {
    max-width: 850px;
    margin-bottom: 34px;
}

.title h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.03;
    color: var(--navy);
    margin: 0 0 12px;
}

.title p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 16px 42px rgba(6, 27, 73, 0.06);
}

.card h3 {
    color: var(--navy);
    font-size: 24px;
    margin: 10px 0;
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #edf4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 28px;
}

/* CHECKLIST */
.checklist {
    display: grid;
    gap: 14px;
}

.check {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e5e9f2;
    padding: 18px;
    border-radius: 18px;
}

.check b {
    color: var(--navy);
}

.check::before {
    content: "✓";
    flex: 0 0 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #ffffff;
    font-weight: 900;
}

/* SIMULADOR */
.sim {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.simbox {
    background: #ffffff;
    border-radius: 30px;
    padding: 28px;
    border: 1px solid #e5e9f2;
    box-shadow: 0 20px 55px rgba(6, 27, 73, 0.08);
}

.field {
    margin: 16px 0;
}

.field label {
    display: block;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cfd7e6;
    border-radius: 14px;
    font: inherit;
}

.result {
    margin-top: 16px;
    padding: 18px;
    border-radius: 16px;
    background: #eefaf2;
    color: #12612d;
    font-weight: 900;
    display: none;
}

.result.warn {
    background: #fff5e8;
    color: #7c3e00;
}

/* PREÇOS */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.price {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #e5e9f2;
}

.price strong {
    font-size: 32px;
    color: var(--navy);
}

/* FAQ */
.faq {
    display: grid;
    gap: 14px;
}

.faq details {
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    padding: 20px;
}

.faq summary {
    font-weight: 900;
    color: var(--navy);
    cursor: pointer;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--navy), #0b4daf);
    color: #ffffff;
    border-radius: 34px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cta h2 {
    font-size: 42px;
    margin: 0 0 10px;
}

/* FOOTER */
.footer {
    background: #071638;
    color: #ffffff;
    padding: 48px 0 0;
}

.footgrid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 30px;
}

.footlogo {
    width: 260px;
    background: #ffffff;
    border-radius: 14px;
    padding: 6px;
}

.footer a {
    display: block;
    margin: 10px 0;
    color: #dbe6ff;
}

.legal {
    margin-top: 30px;
    padding: 18px;
    text-align: center;
    background: #040d25;
    color: #cad5ee;
    font-size: 13px;
}

/* MOBILE CTA */
.mobile-cta {
    display: none;
}

/* ADMIN */
.admin {
    background: #f4f6fb;
}

.admin-wrap {
    width: min(1100px, 94%);
    margin: 30px auto;
}

.admin-card {
    background: #ffffff;
    border: 1px solid #e3e7f0;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 18px;
}

.admin-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.table th,
.table td {
    border-bottom: 1px solid #e7ebf3;
    padding: 12px;
    text-align: left;
}

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* RESPONSIVO */
@media (max-width: 860px) {
    .menu {
        display: block;
        background: var(--navy);
        color: #ffffff;
        border: 0;
        border-radius: 10px;
        padding: 10px 14px;
        font-size: 22px;
    }

    nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 83px;
        background: #ffffff;
        padding: 22px;
        box-shadow: 0 20px 40px #0002;
        flex-direction: column;
    }

    .open nav {
        display: flex;
    }

    .brand img {
        height: 48px;
        max-width: 230px;
    }

    .hero-grid,
    .sim,
    .cta,
    .footgrid {
        grid-template-columns: 1fr;
    }

    .cards,
    .pricing,
    .trust,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 40px;
    }

    h1 {
        letter-spacing: -1px;
    }

    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 50;
    }

    .mobile-cta a {
        background: var(--red);
        color: #ffffff;
        text-align: center;
        padding: 14px;
        font-weight: 900;
    }

    .mobile-cta a:first-child {
        background: #16a34a;
    }

    .footer {
        padding-bottom: 55px;
    }

    .cta h2 {
        font-size: 30px;
    }
}