:root {
    --blue-900: #005aa8;
    --blue-800: #004e94;
    --blue-700: #0b3f6f;
    --blue-100: #eaf4fb;
    --cyan: #22c8dc;
    --green: #9ddc2f;
    --orange: #f39200;
    --orange-strong: #dd8300;
    --text-900: #12314f;
    --text-700: #45617d;
    --line: #d6e4ef;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(0, 53, 102, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-900);
    background: #f6f8fb;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.gov-top-bar {
    background: var(--blue-900);
    color: var(--white);
    font-size: 12px;
}

.top-bar-container {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gov-mark {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
}

.gov-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

/* ── Site Nav ───────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 200ms ease;
}

.site-nav.scrolled {
    box-shadow: 0 2px 18px rgba(0, 42, 90, 0.1);
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    gap: 24px;
}

.site-nav__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--blue-900);
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-icon {
    font-size: 1.2rem;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav__links a {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-700);
    border-radius: 4px;
    transition: color 150ms ease, background 150ms ease;
    white-space: nowrap;
}

.site-nav__links a:hover {
    color: var(--blue-900);
    background: var(--blue-100);
}

.site-nav__links .nav-cta {
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    margin-left: 8px;
    border-radius: 4px;
    padding: 9px 18px;
}

.site-nav__links .nav-cta:hover {
    background: var(--orange-strong);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--blue-900);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-shell {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-image: url('assets/bg inicial.png');
    background-size: cover;
    background-position: center right;
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 42, 90, 0.82);
    z-index: 0;
}

.hero-shell .container {
    position: relative;
    z-index: 1;
}

.hero-topline {
    padding-top: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-section {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 36px 0 64px;
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 660px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    max-width: 620px;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-copy p {
    max-width: 520px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(243, 146, 0, 0.24);
}

.btn-primary:hover {
    background: var(--orange-strong);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.content-section .btn-outline {
    background: transparent;
    color: var(--blue-900);
    border-color: #afc9dc;
}

.content-section .btn-outline:hover {
    background: #eef6fb;
}

.btn-small {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.92rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.hero-highlights li {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}


.featured-banner {
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    gap: 40px;
    background: #0c2340;
    padding: 44px 48px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-banner__content {
    color: var(--white);
}

.featured-banner__kicker {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}

.featured-banner__content h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--white);
}

.featured-banner__content p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.97rem;
    max-width: 480px;
}

.featured-banner__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.88;
}

.featured-banner__logo img {
    width: 100%;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.cards-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 30px 0 44px;
}

.info-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(0, 66, 122, 0.07);
}

.info-card--accent {
    background: #1c4e86;
    color: var(--white);
}

.info-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 0.92rem;
    color: inherit;
    opacity: 0.9;
}

.attention-banner {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    min-height: 132px;
    background: #d9eaf5;
    overflow: hidden;
    border: 1px solid var(--line);
}

.attention-banner__art,
.attention-banner__icon {
    min-height: 132px;
    position: relative;
}

.attention-banner__art::before,
.attention-banner__art::after,
.attention-banner__icon::before,
.attention-banner__icon::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(0, 90, 168, 0.12);
    border-radius: 18px;
}

.attention-banner__art::before {
    width: 52px;
    height: 52px;
    top: 40px;
    left: 36px;
    transform: rotate(16deg);
}

.attention-banner__art::after {
    width: 18px;
    height: 18px;
    bottom: 18px;
    right: 60px;
    border-radius: 50%;
}

.attention-banner__content {
    text-align: center;
    color: var(--blue-700);
    padding: 24px 18px;
}

.attention-banner__content h2 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.attention-banner__content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.attention-banner__content a {
    display: inline-block;
    margin-top: 10px;
    color: var(--orange);
    font-weight: 700;
}

.attention-banner__icon span {
    position: absolute;
    right: 44px;
    top: 28px;
    width: 110px;
    height: 76px;
    border: 3px solid #0f5fa8;
    border-radius: 22px;
}

.attention-banner__icon span::before,
.attention-banner__icon span::after {
    content: "";
    position: absolute;
}

.attention-banner__icon span::before {
    width: 36px;
    height: 3px;
    background: #0f5fa8;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.attention-banner__icon span::after {
    width: 3px;
    height: 36px;
    background: #0f5fa8;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.section-heading {
    padding: 44px 0 18px;
}

.section-heading h2,
.content-section h2 {
    color: var(--blue-900);
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.08;
    margin-bottom: 10px;
}

.section-heading p,
.content-section p,
.content-section li,
.beneficio-text p,
.sidebar-card li {
    color: var(--text-700);
    font-size: 0.98rem;
}

.benefits-section {
    padding-bottom: 8px;
}

.benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 320px;
    gap: 34px;
    align-items: start;
}

.benefits-list {
    display: grid;
    gap: 18px;
}

.beneficio-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.beneficio-item:hover {
    box-shadow: 0 10px 32px rgba(0, 58, 110, 0.13);
    transform: translateY(-2px);
}

.beneficio-img-wrapper {
    position: relative;
    overflow: hidden;
}

.beneficio-img-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    display: block;
    transition: transform 300ms ease;
}

.beneficio-item:hover .beneficio-img-wrapper img {
    transform: scale(1.04);
}

.beneficio-text {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--orange);
}

.beneficio-text h3,
.content-section h3,
.sidebar-card h3 {
    color: var(--blue-900);
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.beneficio-text ul {
    margin: 6px 0 18px 18px;
    color: var(--text-700);
    flex: 1;
}

.beneficio-text li + li {
    margin-top: 7px;
}

.saiba-mais-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 20px;
    align-self: flex-start;
    transition: background-color 180ms ease, transform 180ms ease;
    letter-spacing: 0.02em;
}

.saiba-mais-link:hover {
    background: var(--orange-strong);
    transform: translateY(-1px);
}

.benefits-sidebar {
    position: sticky;
    top: 22px;
}

.sidebar-card {
    padding: 26px 24px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 10px 26px rgba(0, 66, 122, 0.08);
}

.sidebar-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.sidebar-card li {
    padding-bottom: 12px;
    border-bottom: 1px dashed #bfd4e4;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 12px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 20px;
}

.quick-links a {
    padding: 10px 14px;
    background: #ffffff;
    color: var(--blue-700);
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid var(--line);
}

.content-section {
    padding: 36px 0;
}

.content-section > p {
    max-width: 860px;
}

.two-column {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 42px;
    align-items: center;
}

.content-highlight,
.content-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}

.logo-badge {
    width: min(330px, 100%);
    padding: 54px 26px;
    border-radius: 28px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue-900);
    background: var(--white);
    border: 1px solid var(--line);
}

.content-photo img {
    max-height: 290px;
    object-fit: contain;
}

.split-copy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 22px;
}

.split-copy > div {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--white);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    background: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

th,
td {
    border: 1px solid #e2edf5;
    padding: 12px 14px;
    text-align: center;
    font-size: 0.92rem;
}

th {
    background: #edf6fb;
    color: var(--blue-700);
}

.bottom-cta {
    margin-top: 24px;
    background: var(--blue-900);
    color: var(--white);
}

.bottom-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 38px 0;
}

.bottom-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 8px;
}

.bottom-cta p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
}

/* ── Steps Section ─────────────────────────────────────── */
.steps-section {
    background: var(--blue-900);
    color: var(--white);
    padding: 56px 0;
    margin-top: 12px;
}

.steps-section .section-heading h2 {
    color: var(--white);
}

.steps-section .section-heading p {
    color: rgba(255, 255, 255, 0.8);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.step-card {
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    position: relative;
}

.step-card--highlight {
    border-color: var(--orange);
    background: rgba(243, 146, 0, 0.1);
}

.step-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.steps-cta {
    margin-top: 36px;
    text-align: center;
}

.steps-cta .btn {
    font-size: 1rem;
    padding: 0 36px;
    min-height: 52px;
}

/* ── FAQ Section ────────────────────────────────────────── */
.faq-section {
    padding: 44px 0;
}

.faq-list {
    margin-top: 8px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue-700);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 200ms ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--blue-900);
}

.faq-item > p {
    padding: 0 22px 20px;
    font-size: 0.96rem;
    color: var(--text-700);
    line-height: 1.6;
    border-top: 1px solid var(--line);
    margin-top: -1px;
}

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.5);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: #ffffff;
}

/* ── Main Footer ────────────────────────────────────────── */
.main-footer {
    background: #033d72;
    color: var(--white);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a,
.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .container {
        width: min(960px, calc(100% - 32px));
    }

    .hero-section,
    .benefits-layout,
    .two-column,
    .split-copy,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cards-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
        gap: 28px;
        padding-bottom: 40px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy p {
        max-width: 100%;
    }

    .featured-banner {
        grid-template-columns: 1fr;
        padding: 36px 32px;
    }

    .featured-banner__logo {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav__links {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 8px 16px 16px;
        gap: 2px;
        box-shadow: 0 8px 20px rgba(0, 42, 90, 0.1);
    }

    .site-nav__links.open {
        display: flex;
    }

    .site-nav__links .nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    .info-card {
        grid-template-columns: 160px 1fr;
    }

    .benefits-sidebar {
        position: static;
    }

    .sidebar-card {
        max-width: 100%;
    }

    .attention-banner {
        grid-template-columns: 1fr;
    }

    .attention-banner__art,
    .attention-banner__icon {
        display: none;
    }

    .bottom-cta__inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bottom-cta__inner .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 720px) {
    .container {
        width: calc(100% - 32px);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 16px 16px;
    }

    .faq-item > p {
        padding: 0 16px 18px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .gov-top-bar {
        padding: 8px 0;
    }

    .top-bar-container {
        align-items: stretch;
        gap: 10px;
    }

    .hero-section {
        padding: 18px 0 36px;
        min-height: auto;
        gap: 22px;
    }

    .hero-topline {
        padding-top: 16px;
        font-size: 12px;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
    }

    .hero-copy p {
        font-size: 0.96rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-highlights {
        gap: 10px;
    }

    .featured-banner {
        padding: 28px 20px;
    }

    .cards-strip {
        padding-top: 24px;
    }

    .info-card {
        grid-template-columns: 1fr;
    }

    .beneficio-item {
        grid-template-columns: 1fr;
    }

    .beneficio-img-wrapper img {
        min-height: 220px;
        height: 220px;
    }

    .info-card img {
        height: 180px;
    }

    .beneficio-text {
        padding: 18px 20px;
    }

    .beneficio-text h3 {
        font-size: 1.05rem;
    }

    .section-heading {
        padding: 34px 0 18px;
    }

    .section-heading h2,
    .content-section h2,
    .bottom-cta h2 {
        font-size: clamp(1.45rem, 6.5vw, 1.95rem);
    }

    .content-section {
        padding: 28px 0;
    }

    .content-highlight,
    .content-photo {
        min-height: 200px;
    }

    .content-photo img {
        max-height: 220px;
    }

    .split-copy {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .split-copy > div {
        padding: 16px;
    }

    .quick-links {
        gap: 8px;
        padding: 16px 0 10px;
    }

    .quick-links a {
        width: 100%;
        text-align: center;
    }

    th,
    td {
        padding: 10px 12px;
        font-size: 0.86rem;
    }

    .bottom-cta__inner {
        padding: 30px 0;
    }

    .bottom-cta__inner .btn {
        max-width: none;
    }

    .footer-inner {
        padding: 16px 0 22px;
    }

    .footer-links,
    .footer-copy {
        font-size: 0.85rem;
    }

    .steps-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 32px);
    }

    .hero-section {
        padding-bottom: 28px;
    }

    .info-card {
        padding: 14px;
    }

    .info-card img,
    .beneficio-img-wrapper img {
        height: 150px;
    }

    .attention-banner__content {
        padding: 20px 14px;
    }

    .sidebar-card,
    .split-copy > div {
        padding: 16px;
    }
}

/* ── Exit-intent popup ────────────────────────────────────────────── */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.exit-popup[hidden] {
    display: none;
}

.exit-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 50, 0.72);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.exit-popup__box {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 36px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 42, 90, 0.3);
    animation: popup-in 0.28s cubic-bezier(0.34, 1.46, 0.64, 1) both;
}

@keyframes popup-in {
    from { opacity: 0; transform: scale(0.88) translateY(24px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.exit-popup__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-400);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.15s;
}

.exit-popup__close:hover {
    color: var(--blue-900);
}

.exit-popup__icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    line-height: 1;
}

.exit-popup__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.exit-popup__text {
    font-size: 0.97rem;
    color: var(--text-700);
    line-height: 1.65;
    margin-bottom: 24px;
}

.exit-popup__cta {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 14px 20px;
    margin-bottom: 12px;
}

.exit-popup__dismiss {
    background: none;
    border: none;
    color: var(--text-400);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 4px;
    text-decoration: underline;
    font-family: inherit;
}

.exit-popup__dismiss:hover {
    color: var(--text-700);
}

@media (max-width: 480px) {
    .exit-popup__box {
        padding: 32px 20px 24px;
    }

    .exit-popup__title {
        font-size: 1.15rem;
    }
}

@media (hover: none) {
    .btn:hover,
    .beneficio-item:hover,
    .saiba-mais-link:hover,
    .whatsapp-float:hover {
        transform: none;
    }

    .card:hover {
        transform: none;
        box-shadow: none;
    }
}
