/* ============================================================
   Perícia Expert — Landing Page
   Paleta base: #1462FD (azul da marca)
   Fonte: Inter
   Medidas responsivas: rem (tipografia/espaços), % e vh (layout),
   clamp() para escalar. px só em sombras (cosmético).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Marca — escala de azul derivada de #1462FD */
    --blue-50:  #EBF1FF;
    --blue-100: #D6E3FF;
    --blue-200: #AEC6FF;
    --blue-300: #7CA3FF;
    --blue-400: #4A81FE;
    --blue-500: #1462FD; /* cor base da marca */
    --blue-600: #0B4FDB;
    --blue-700: #093FB0;

    /* Neutros */
    --ink-900: #14181F; /* títulos */
    --ink-700: #2C313A;
    --ink-600: #4A4F57; /* parágrafos */
    --ink-500: #6B7280;
    --ink-300: #B3B7BE;
    --line:    #D8DBE0;

    /* Superfícies */
    --surface:      #FFFFFF;
    --surface-soft: #F4F5F7;

    /* Cores semânticas */
    --color-primary:       var(--blue-500);
    --color-primary-hover:  var(--blue-600);
    --color-on-primary:    #FFFFFF;

    /* Tipografia */
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Layout — padding lateral fluido (mín 1.5rem, ideal 4vw, máx 4rem/64px) */
    --container-max: 100%;
    --container-pad: clamp(1.5rem, 4vw, 4rem);

    /* Sombras (cosmético — px é adequado aqui) */
    --shadow-btn: 0 10px 24px -8px rgba(20, 98, 253, 0.55);
    --shadow-pill: 0 1px 2px rgba(20, 24, 31, 0.06), 0 4px 12px -6px rgba(20, 24, 31, 0.12);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

html {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink-900);
    background: var(--surface);
    line-height: 1.5;
}

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

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

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- Utilitários ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(
        108deg,
        rgba(245, 248, 253, 1) 1%,
        rgba(233, 236, 242, 1) 61%,
        rgba(179, 183, 190, 1) 90%
    );
}

/* Grade em perspectiva ao fundo (lado direito) */
.hero__grid {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62%;
    max-width: 75rem;
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to top, #000 40%, transparent 100%);
            mask-image: linear-gradient(to top, #000 40%, transparent 100%);
}

.hero__grid img {
    width: 100%;
    height: auto;
}

/* ---------- Header ---------- */
.site-header {
    position: relative;
    z-index: 10;
    padding-block: 1.75rem;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-header__logo img {
    height: 2.125rem;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-700);
    transition: color 0.18s ease;
}

.nav__link:hover {
    color: var(--color-primary);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.375rem;
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink-900);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-pill);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-login:hover {
    transform: translateY(-0.0625rem);
    box-shadow: 0 2px 4px rgba(20, 24, 31, 0.08), 0 10px 20px -6px rgba(20, 24, 31, 0.18);
}

.btn-login img {
    width: 1.125rem;
    height: 1.125rem;
}

/* Wrapper dos itens do menu — no desktop "some" do layout (display: contents),
   deixando .nav e .btn-login como itens diretos do header (layout inalterado) */
.nav-collapse {
    display: contents;
}

/* Botão de menu (hambúrguer/X) — só aparece em tablet/mobile */
.nav-toggle {
    display: none;
    position: relative;
    z-index: 100; /* acima do overlay do menu */
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.nav-toggle__icon {
    width: 1.75rem;
    height: 1.75rem;
}

.nav-toggle__close {
    display: none;
}

/* Com o menu aberto, alterna hambúrguer -> X */
.nav-toggle.is-open .nav-toggle__open {
    display: none;
}

.nav-toggle.is-open .nav-toggle__close {
    display: block;
}

/* ---------- Conteúdo do Hero ---------- */
.hero__inner {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 45.625rem;
    min-width: 0; /* permite encolher no flex e o texto quebrar */
    padding-block: 2.5rem;
    /* Desktop: entra deslizando da esquerda */
    animation: hero-slide-left 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink-600);
    margin-bottom: 1.375rem;
}

.hero__title {
    font-size: clamp(1.75rem, 4vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 1.75rem;
    overflow-wrap: break-word;
}

.hero__title em {
    font-style: italic;
    font-weight: 800;
}

.hero__desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-600);
    max-width: 31.25rem;
    margin-bottom: 2.25rem;
}

/* Botão primário */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-on-primary);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-btn);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-0.125rem);
    box-shadow: 0 16px 30px -10px rgba(20, 98, 253, 0.6);
}

.btn-primary__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    border-radius: 50px;
    background: #FFFFFF;
}

.btn-primary__arrow {
    display: block;
    width: 0.875rem;
    height: 0.875rem;
}

/* Botão secundário (WhatsApp) — mesmo formato do CTA, cores/ícone diferentes */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 999px;
    background: #25D366; /* verde WhatsApp */
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.55);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-secondary:hover {
    background: #1EBE57;
    transform: translateY(-0.125rem);
    box-shadow: 0 16px 30px -10px rgba(37, 211, 102, 0.6);
}

.btn-secondary__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    border-radius: 50px;
    background: #FFFFFF;
}

.btn-secondary__icon img {
    display: block;
    width: 1rem;
    height: 1rem;
}

.hero__benefits {
    margin-top: 1.875rem;
    font-size: 1.05rem;
    color: var(--ink-700);
    font-weight: 500;
}

.hero__benefits span {
    color: var(--ink-300);
    margin-inline: 0.625rem;
}

/* ---------- Imagem do André ---------- */
.hero__media {
    position: absolute;
    top: 0;
    bottom: 0;
    right: var(--container-pad);
    z-index: 2;
    width: 48%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    /* Entra deslizando da direita (todos os tamanhos) */
    animation: hero-slide-right 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both;
}

/* Em telas largas (≥1640px) afasta a foto para não ficar longe do conteúdo */
@media (min-width: 1640px) {
    .hero__media {
        right: 14rem;
    }
}

.hero__media img {
    height: 94%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
}

/* ============================================================
   VSL + CTA
   ============================================================ */
.vsl {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--surface);
}

.vsl__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-block: 3rem;
    gap: 1.5rem;
}

.vsl__eyebrow {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-primary);
}

.vsl__title {
    font-size: clamp(1.75rem, 3.4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
    max-width: 60rem;
    overflow-wrap: break-word;
}

.vsl__title em {
    font-style: italic;
    font-weight: 800;
    color: var(--color-primary);
}

/* Player — mantém 16:9. A largura também é limitada pela altura da
   viewport (reservando ~24rem p/ título, CTA e espaçamentos) para que
   a seção inteira caiba em 100vh em qualquer tela. */
.vsl__video {
    width: min(100%, 56rem, calc((100vh - 24rem) / 0.5625));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px -24px rgba(20, 24, 31, 0.35);
}

/* Ações da VSL — CTA + botão secundário lado a lado */
.vsl__actions {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 40em) {
    .vsl__cta,
    .btn-secondary {
        font-size: 1rem;
    }
}

/* Animação de entrada ao entrar na viewport (stagger) */
.vsl__eyebrow,
.vsl__title,
.vsl__video,
.vsl__actions {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vsl.is-visible .vsl__eyebrow,
.vsl.is-visible .vsl__title,
.vsl.is-visible .vsl__video,
.vsl.is-visible .vsl__actions {
    opacity: 1;
    transform: none;
}

.vsl.is-visible .vsl__title   { transition-delay: 0.1s; }
.vsl.is-visible .vsl__video   { transition-delay: 0.2s; }
.vsl.is-visible .vsl__actions { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .vsl__eyebrow,
    .vsl__title,
    .vsl__video,
    .vsl__actions {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   PROBLEMA + SOLUÇÃO / AUTORIDADE
   ============================================================ */
.ps {
    background: var(--surface);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.ps__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.ps__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
}

/* Selo de ícone reutilizável (círculo azul + ícone branco) */
.icon-badge {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 20%;
    background: var(--color-primary);
}

.icon-badge img {
    width: 1.4rem;
    height: 1.4rem;
    filter: brightness(0) invert(1); /* ícone preto -> branco */
}

/* ---------- Seção A — A dor ---------- */
.ps__pain {
    max-width: 62rem;
    text-align: center;
}

.ps__lead {
    margin-top: 1.25rem;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-600);
    max-width: 46rem;
    margin-inline: auto;
}

.pain-list {
    margin-top: 2.75rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

/* micro-interações no hover */
.pain-item:hover {
    transform: translateY(-4px);
    background: var(--surface);
    border-color: var(--blue-200);
    box-shadow: 0 18px 36px -18px rgba(20, 24, 31, 0.25);
}

.pain-item .icon-badge {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-item:hover .icon-badge {
    transform: scale(1.08);
    box-shadow: 0 8px 18px -6px rgba(20, 98, 253, 0.5);
}

.pain-item p {
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--ink-700);
}

.pain-item strong {
    font-weight: 700;
    color: var(--ink-900);
}

.ps__result {
    margin-top: 2.25rem;
    display: inline-block;
    padding: 1.15rem 1.75rem;
    border-radius: 14px;
    background: var(--blue-50);
    color: var(--ink-900);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.55;
}

/* ---------- Seção B — Autoridade ---------- */
.ps__author {
    margin-top: clamp(4rem, 8vw, 6rem);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.ps__author-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* painel decorativo atrás da foto */
.ps__author-media::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 30rem;
    height: 92%;
    border-radius: 28px;
    background: linear-gradient(160deg, var(--blue-50), #DCE7FF);
    z-index: 0;
}

.ps__author-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 28rem;
    height: auto;
    object-fit: contain;
}

.ps__author-text h2 {
    margin-bottom: 1.5rem;
}

.ps__author-text p {
    margin-top: 1rem;
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--ink-600);
}

.ps__author-text strong {
    font-weight: 700;
    color: var(--ink-900);
}

.cred-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cred-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-900);
}

.cred-list .icon-badge {
    width: 2.4rem;
    height: 2.4rem;
}

.cred-list .icon-badge img {
    width: 1.15rem;
    height: 1.15rem;
}

/* Animação de entrada (dispara ao entrar na viewport, via .is-visible) */
.ps__author-media,
.ps__author-text {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ps__author-media {
    transform: translateX(-3rem); /* foto entra pela esquerda */
}

.ps__author-text {
    transform: translateX(3rem);  /* texto entra pela direita */
    transition-delay: 0.15s;
}

.ps__author.is-visible .ps__author-media,
.ps__author.is-visible .ps__author-text {
    opacity: 1;
    transform: none;
}

@media (max-width: 64em) {
    .ps__author {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 40rem;
    }

    .ps__author-media {
        order: -1;
    }

    /* empilhado: ambos entram de baixo */
    .ps__author-media,
    .ps__author-text {
        transform: translateY(2rem);
    }

    .ps__author-text {
        text-align: center;
    }

    .cred-list {
        align-items: flex-start; /* itens alinhados à esquerda */
        width: fit-content;
        margin-inline: auto;     /* grupo centralizado sob o texto */
    }
}

@media (max-width: 48em) {
    .pain-list {
        grid-template-columns: 1fr;
    }
}

/* respeita quem prefere menos movimento: mantém o realce, remove o movimento */
@media (prefers-reduced-motion: reduce) {
    .pain-item,
    .pain-item .icon-badge {
        transition: none;
    }

    .pain-item:hover,
    .pain-item:hover .icon-badge {
        transform: none;
    }

    .ps__author-media,
    .ps__author-text {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   PARA QUEM É ESTE CURSO
   ============================================================ */
.fit {
    background: var(--surface-soft);
    padding-block: clamp(4rem, 8vw, 7rem);
}

/* Grid de largura total: conteúdo à esquerda, tabela à direita */
.fit__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.fit__inner {
    min-width: 0;
}

/* Cabeçalho centralizado no topo da seção */
.fit__head {
    max-width: 62rem;
    text-align: center;
    margin-bottom: 3rem;
}

.fit__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.fit__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 1.5rem;
}

.fit__lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-600);
    max-width: 48rem;
    margin-inline: auto;
}

.fit__lead strong {
    color: var(--ink-900);
    font-weight: 600;
}

/* ---------- Lista de requisitos ---------- */
.req-list {
    display: grid;
    gap: 1rem;
}

.req-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.req-num {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 20%;
    background: var(--color-primary);
    color: var(--color-on-primary);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.req-item h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 0.35rem;
}

.req-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-600);
}

.req-item strong {
    color: var(--ink-900);
    font-weight: 600;
}

/* nota de ressalva */
.fit__note {
    margin-top: 1.5rem;
    padding: 1.15rem 1.35rem;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
    background: var(--blue-50);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-700);
}

.fit__note strong {
    color: var(--ink-900);
}

/* ---------- Tabela de perfis ---------- */
.fit-table__wrap {
    position: sticky;
    top: 2rem;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}

.fit-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.fit-table th {
    padding: 1rem 1.35rem;
    background: var(--blue-50);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-700);
    border-bottom: 1px solid var(--line);
}

.fit-table td {
    padding: 1.15rem 1.35rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-600);
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.fit-table tbody tr:last-child td {
    border-bottom: none;
}

.fit-table td strong {
    color: var(--ink-900);
    font-weight: 600;
}

.fit-table tbody tr {
    transition: background 0.2s ease;
}

.fit-table tbody tr:hover {
    background: var(--surface-soft);
}

.fit__close {
    margin-top: 2rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-700);
    font-weight: 500;
}

/* acessível só para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Tablet: empilha conteúdo e tabela */
@media (max-width: 64em) {
    .fit__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fit-table__wrap {
        position: static;
        top: auto;
    }
}

/* Tabela vira blocos empilhados no mobile */
@media (max-width: 48em) {
    .fit-table__wrap {
        border: none;
        border-radius: 0;
        background: none;
        overflow-x: visible;
    }

    .fit-table,
    .fit-table tbody,
    .fit-table tr,
    .fit-table td {
        display: block;
        width: 100%;
    }

    .fit-table thead {
        display: none;
    }

    .fit-table tr {
        margin-bottom: 1rem;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--surface);
        overflow: hidden;
    }

    .fit-table td {
        border-bottom: none;
        padding: 1rem 1.25rem;
    }

    .fit-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--color-primary);
    }

    .fit-table td + td {
        border-top: 1px solid var(--line);
    }
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.ben {
    background: var(--surface);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.ben__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ben__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.ben__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
    max-width: 46rem;
}

.ben-list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* linha única em largura total */
    gap: 1.25rem;
    text-align: left;
    width: 100%;
}

.ben-item {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.ben-item:hover {
    transform: translateY(-4px);
    background: var(--surface);
    border-color: var(--blue-200);
    box-shadow: 0 18px 36px -18px rgba(20, 24, 31, 0.25);
}

.ben-item .icon-badge {
    margin-bottom: 1.15rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ben-item:hover .icon-badge {
    transform: scale(1.08);
    box-shadow: 0 8px 18px -6px rgba(20, 98, 253, 0.5);
}

.ben-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 0.6rem;
}

.ben-item p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-600);
}

.ben-item strong {
    font-weight: 600;
    color: var(--ink-900);
}

/* linha de impacto */
.ben-item__impact {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-weight: 600;
    color: var(--color-primary) !important;
}

.ben-item:hover .ben-item__impact {
    border-top-color: var(--blue-200);
}

/* nota de fonte */
.ben__source {
    margin-top: 1.75rem;
    max-width: 52rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--ink-500);
}

.ben__cta {
    margin-top: 2.5rem;
}

@media (max-width: 64em) {
    .ben-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48em) {
    .ben-list {
        grid-template-columns: 1fr;
    }

    .ben__cta {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ben-item,
    .ben-item .icon-badge {
        transition: none;
    }

    .ben-item:hover,
    .ben-item:hover .icon-badge {
        transform: none;
    }
}

/* ============================================================
   O QUE VOCÊ VAI DOMINAR (features)
   ============================================================ */
.feat {
    background: var(--surface-soft);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.feat__head {
    max-width: 62rem;
    text-align: center;
    margin-bottom: 3rem;
}

.feat__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.feat__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
}

/* Bento: 2 cards | 2 cards | imagem — largura total (como a Hero) */
.feat__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(1rem, 1.5vw, 1.5rem);
    align-items: start;
}

/* conteúdo à esquerda, imagem à direita (sem alterar a ordem no HTML) */
.feat-list {
    order: 1;
}

.feat__media {
    order: 2;
}

/* ---------- Imagem da reconstrução (painel que acompanha a altura dos cards) ---------- */
.feat__media {
    margin: 0;
    align-self: start; /* painel abraça a imagem, sem esticar */
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.feat__media img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.feat__media figcaption {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--ink-500);
}

/* ---------- Cards (2 x 2) ---------- */
.feat-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.feat-item__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* micro-interações no hover */
.feat-item:hover {
    transform: translateY(-4px);
    border-color: var(--blue-200);
    box-shadow: 0 18px 36px -18px rgba(20, 24, 31, 0.25);
}

.feat-item .icon-badge {
    margin-bottom: 1.15rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feat-item:hover .icon-badge {
    transform: scale(1.08);
    box-shadow: 0 8px 18px -6px rgba(20, 98, 253, 0.5);
}

.feat-item h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 0.45rem;
}

.feat-item p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--ink-600);
}

/* linha de resultado prático ("e daí?") — ancorada na base do card */
.feat-item__result {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
    color: var(--color-primary) !important;
    font-weight: 500;
}

/* respiro entre a descrição e a linha de resultado */
.feat-item__body > p:not(.feat-item__result) {
    margin-bottom: 0.85rem;
}

.feat-item:hover .feat-item__result {
    border-top-color: var(--blue-200);
}

/* ---------- Animação de entrada (via .is-visible) ---------- */
.feat__media,
.feat-list {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feat__media {
    transform: translateX(3rem);  /* imagem (à direita) entra pela direita */
}

.feat-list {
    transform: translateX(-3rem); /* conteúdo (à esquerda) entra pela esquerda */
    transition-delay: 0.15s;
}

.feat.is-visible .feat__media,
.feat.is-visible .feat-list {
    opacity: 1;
    transform: none;
}

@media (max-width: 64em) {
    .feat__inner {
        grid-template-columns: 1fr;
        max-width: 46rem;
    }

    .feat__media {
        order: 0; /* empilhado: imagem volta para o topo */
        max-width: 32rem;
        margin-inline: auto;
    }

    /* empilhado: ambos entram de baixo */
    .feat__media,
    .feat-list {
        transform: translateY(2rem);
    }
}

@media (max-width: 48em) {
    .feat-list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feat-item,
    .feat-item .icon-badge {
        transition: none;
    }

    .feat-item:hover,
    .feat-item:hover .icon-badge {
        transform: none;
    }

    .feat__media,
    .feat-list {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   CONTEÚDO DO CURSO (ementa — 16 módulos)
   ============================================================ */
.ementa {
    background: var(--surface);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.ementa__head {
    max-width: 62rem;
    text-align: center;
    margin-bottom: 3rem;
}

.ementa__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.ementa__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 1rem;
}

.ementa__lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-600);
    max-width: 42rem;
    margin-inline: auto;
}

/* ---------- Grid: imagem (esquerda, fixa) | lista de módulos (direita) ---------- */
.ementa__inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.ementa__media {
    margin: 0;
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.ementa__media img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ementa__media figcaption {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--ink-500);
}

/* ---------- Lista numerada de módulos ---------- */
.emt-list {
    counter-reset: emt;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.emt-item {
    counter-increment: emt;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.emt-item::before {
    content: counter(emt, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: var(--blue-50);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
}

.emt-item:hover {
    transform: translateX(4px);
    border-color: var(--blue-200);
    box-shadow: 0 14px 30px -18px rgba(20, 24, 31, 0.25);
}

.emt-item__body h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 0.25rem;
}

.emt-item__body p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-600);
}

.emt-item__note {
    margin-top: 0.4rem;
    font-size: 0.82rem !important;
    font-style: italic;
    color: var(--ink-500) !important;
}

/* ---------- Módulo em destaque (Módulo 12 — casos práticos) ---------- */
.emt-item--feature {
    background: var(--blue-50);
    border-color: var(--blue-200);
    box-shadow: 0 10px 30px -18px rgba(20, 98, 253, 0.45);
}

.emt-item--feature::before {
    background: var(--color-primary);
    color: #fff;
}

.emt-item--feature:hover {
    box-shadow: 0 16px 34px -16px rgba(20, 98, 253, 0.5);
}

.emt-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    background: var(--surface);
    border: 1px solid var(--blue-200);
    border-radius: 999px;
}

.emt-tag img {
    width: 0.9rem;
    height: 0.9rem;
    /* recolore o ícone lucide (traço preto) para o azul da marca */
    filter: brightness(0) saturate(100%) invert(28%) sepia(93%) saturate(4000%) hue-rotate(214deg) brightness(101%) contrast(101%);
}

/* ---------- Animação de entrada (via .is-visible) ---------- */
.ementa__media,
.emt-list {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ementa__media {
    transform: translateX(-3rem); /* imagem entra pela esquerda */
}

.emt-list {
    transform: translateX(3rem);  /* lista entra pela direita */
    transition-delay: 0.15s;
}

.ementa.is-visible .ementa__media,
.ementa.is-visible .emt-list {
    opacity: 1;
    transform: none;
}

@media (max-width: 64em) {
    .ementa__inner {
        grid-template-columns: 1fr;
        max-width: 46rem;
    }

    .ementa__media {
        position: static;
        max-width: 34rem;
        margin-inline: auto;
    }

    /* empilhado: ambos entram de baixo */
    .ementa__media,
    .emt-list {
        transform: translateY(2rem);
    }
}

@media (max-width: 40em) {
    .emt-item {
        padding: 1rem;
        gap: 0.85rem;
    }

    .emt-item::before {
        min-width: 2.15rem;
        height: 2.15rem;
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .emt-item {
        transition: none;
    }

    .emt-item:hover {
        transform: none;
    }

    .ementa__media,
    .emt-list {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   BÔNUS (5 bônus + CTA)
   ============================================================ */
.bonus {
    background: var(--surface-soft);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.bonus__head {
    max-width: 62rem;
    text-align: center;
    margin-bottom: 3rem;
}

.bonus__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.bonus__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 1rem;
}

.bonus__lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-600);
    max-width: 44rem;
    margin-inline: auto;
}

/* ---------- Cartões dos bônus (flex centrado: 3 por linha, sobra centralizada) ---------- */
.bonus-grid {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 74rem;
    margin-inline: auto;
}

.bonus-item {
    flex: 1 1 20rem;
    max-width: 23rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.bonus-item:hover {
    transform: translateY(-4px);
    border-color: var(--blue-200);
    box-shadow: 0 18px 36px -18px rgba(20, 24, 31, 0.25);
}

.bonus-item .icon-badge {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus-item:hover .icon-badge {
    transform: scale(1.08);
    box-shadow: 0 8px 18px -6px rgba(20, 98, 253, 0.5);
}

.bonus-item__tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.bonus-item__body h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 0.45rem;
}

.bonus-item__body p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--ink-600);
}

/* ---------- CTA abaixo dos cartões ---------- */
.bonus-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2.75rem;
}

.bonus-cta__lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink-700);
    margin-bottom: 1.5rem;
}

.bonus-cta .btn-primary {
    font-size: 1.1rem;
}

/* ---------- Animação de entrada (via .is-visible) ---------- */
.bonus-grid,
.bonus-cta {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bonus-cta {
    transition-delay: 0.12s;
}

.bonus.is-visible .bonus-grid,
.bonus.is-visible .bonus-cta {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .bonus-item,
    .bonus-item .icon-badge {
        transition: none;
    }

    .bonus-item:hover,
    .bonus-item:hover .icon-badge {
        transform: none;
    }

    .bonus-grid,
    .bonus-cta {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   PROVA SOCIAL (galeria + lightbox)
   ============================================================ */
.social {
    background: var(--surface);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.social__head {
    max-width: 62rem;
    text-align: center;
    margin-bottom: 3rem;
}

.social__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.social__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 1rem;
}

.social__lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-600);
    max-width: 42rem;
    margin-inline: auto;
}

/* ---------- Carrossel (uma linha) ---------- */
.carousel {
    position: relative;
}

.carousel__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-block: 0.5rem; /* espaço para o "lift" do hover */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__item {
    flex: 0 0 auto;
    height: clamp(20rem, 30vw, 26rem);
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface-soft);
    cursor: zoom-in;
    scroll-snap-align: start;
    box-shadow: 0 10px 26px -18px rgba(20, 24, 31, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.carousel__item:hover {
    transform: translateY(-4px);
    border-color: var(--blue-200);
    box-shadow: 0 20px 40px -20px rgba(20, 24, 31, 0.4);
}

.carousel__item img {
    display: block;
    height: 100%;
    width: auto;
}

/* setas de rolagem */
.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-pill);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.carousel__btn:hover {
    background: var(--surface);
    box-shadow: 0 2px 4px rgba(20, 24, 31, 0.08), 0 12px 24px -8px rgba(20, 24, 31, 0.22);
}

.carousel__btn img {
    width: 1.4rem;
    height: 1.4rem;
}

.carousel__btn--prev {
    left: -0.75rem;
}

.carousel__btn--prev img {
    transform: rotate(180deg);
}

.carousel__btn--next {
    right: -0.75rem;
}

.carousel__btn[disabled] {
    opacity: 0;
    pointer-events: none;
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(9, 12, 20, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__figure {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
}

.lightbox__img {
    max-width: min(92vw, 34rem);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__close {
    top: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
}

.lightbox__close img {
    width: 1.4rem;
    height: 1.4rem;
    filter: brightness(0) invert(1);
}

.lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
}

.lightbox__nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.lightbox__nav img {
    width: 1.6rem;
    height: 1.6rem;
    filter: brightness(0) invert(1);
}

.lightbox__prev {
    left: 1.25rem;
}

.lightbox__prev img {
    transform: rotate(180deg);
}

.lightbox__next {
    right: 1.25rem;
}

.lightbox__counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Animação de entrada (via .is-visible) ---------- */
.social__head,
.carousel {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel {
    transition-delay: 0.1s;
}

.social.is-visible .social__head,
.social.is-visible .carousel {
    opacity: 1;
    transform: none;
}

@media (max-width: 48em) {
    .carousel__item {
        height: 22rem;
    }

    .carousel__btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .lightbox__nav {
        width: 2.5rem;
        height: 2.5rem;
    }
}

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

    .carousel__item {
        transition: none;
    }

    .carousel__item:hover {
        transform: none;
    }

    .social__head,
    .carousel {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   CTA INTERMEDIÁRIA (faixa azul)
   ============================================================ */
.cta-band {
    background: var(--surface);
    padding: clamp(3rem, 6vw, 5rem) var(--container-pad);
}

/* card azul arredondado */
.cta-band__inner {
    position: relative;
    overflow: hidden;
    max-width: 64rem;
    margin-inline: auto;
    text-align: center;
    padding: clamp(2.75rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: clamp(20px, 3vw, 32px);
    background: linear-gradient(115deg, var(--blue-600) 0%, var(--blue-500) 55%, var(--blue-400) 100%);
    box-shadow: 0 30px 60px -30px rgba(20, 98, 253, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* brilho sutil no canto do card */
.cta-band__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 120% at 100% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* conteúdo acima do brilho */
.cta-band__inner > * {
    position: relative;
    z-index: 1;
}

.cta-band__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.cta-band__title {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.cta-band__lead {
    font-size: 1.12rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 46rem;
}

.cta-band__lead strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* chips do mecanismo */
.cta-chips {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.cta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem 0.5rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 500;
}

.cta-chip__icon {
    display: inline-flex;
}

.cta-chip__icon img {
    width: 1.15rem;
    height: 1.15rem;
    filter: brightness(0) invert(1);
}

/* botão branco sobre o azul */
.btn-cta {
    margin-top: 2.25rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px -12px rgba(0, 0, 0, 0.5);
}

.btn-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 999px;
    background: var(--color-primary);
}

.btn-cta__icon img {
    width: 0.9rem;
    height: 0.9rem;
}

.cta-band__note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* animação de entrada (via .is-visible) */
.cta-band__inner {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cta-band.is-visible .cta-band__inner {
    opacity: 1;
    transform: none;
}

@media (max-width: 40em) {
    .btn-cta {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-band__inner {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   OFERTA + CTA (value stack + card de preço)
   ============================================================ */
.offer {
    background: var(--surface);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.offer__head {
    max-width: 62rem;
    text-align: center;
    margin-bottom: 3rem;
}

.offer__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.offer__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
}

/* ---------- Grid: value stack | card de preço ---------- */
.offer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
    max-width: 66rem;
    margin-inline: auto;
}

/* ---------- Value stack ---------- */
.offer-list,
.offer-bonus__list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.offer-list > li,
.offer-bonus__list > li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink-700);
}

.offer-list__ic {
    display: inline-flex;
    flex: none;
    margin-top: 0.1rem;
}

.offer-list__ic img {
    width: 1.3rem;
    height: 1.3rem;
    /* recolore o ícone lucide (traço preto) para o azul da marca */
    filter: brightness(0) saturate(100%) invert(28%) sepia(93%) saturate(4000%) hue-rotate(214deg) brightness(101%) contrast(101%);
}

.offer-bonus {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 16px;
}

.offer-bonus__label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
}

/* ---------- Card de preço (fundo azul, como a faixa CTA) ---------- */
.offer-card {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: clamp(20px, 3vw, 28px);
    background: linear-gradient(115deg, var(--blue-600) 0%, var(--blue-500) 55%, var(--blue-400) 100%);
    box-shadow: 0 30px 60px -30px rgba(20, 98, 253, 0.7);
    color: #FFFFFF;
    text-align: center;
}

.offer-card__intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.offer-card__price {
    margin-top: 0.35rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    font-size: clamp(2.5rem, 5.2vw, 3.5rem); /* dá evidência ao valor da parcela */
    line-height: 1.05;
    font-weight: 500;
}

.offer-card__mult {
    font-size: 0.42em; /* "12x de" menor, relativo ao valor */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.offer-card__price strong {
    font-weight: 800;
}

.offer-card__cash {
    margin-top: 0.5rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.offer-card__cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.75rem;
}

.offer-reinforce {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.75rem;
    text-align: left;
}

.offer-reinforce > li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    font-size: 0.96rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.offer-reinforce__ic {
    display: inline-flex;
    flex: none;
    margin-top: 0.08rem;
}

.offer-reinforce__ic img {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1); /* branco sobre o azul */
}

.offer-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.offer-secure img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* ---------- Ancoragem de valor ---------- */
.offer-anchor {
    max-width: 52rem;
    margin: 2.75rem auto 0;
    padding: 1.5rem 1.75rem;
    background: var(--blue-50);
    border-radius: 16px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--ink-700);
}

.offer-anchor strong {
    color: var(--color-primary);
    font-weight: 800;
}

/* ---------- Animação de entrada (via .is-visible) ---------- */
.offer__stack,
.offer-card,
.offer-anchor {
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.offer__stack {
    transform: translateX(-2.5rem);
}

.offer-card {
    transform: translateX(2.5rem);
    transition-delay: 0.1s;
}

.offer-anchor {
    transform: translateY(2rem);
    transition-delay: 0.2s;
}

.offer.is-visible .offer__stack,
.offer.is-visible .offer-card,
.offer.is-visible .offer-anchor {
    opacity: 1;
    transform: none;
}

@media (max-width: 64em) {
    .offer__grid {
        grid-template-columns: 1fr;
        max-width: 34rem;
    }

    /* empilhado: entram de baixo */
    .offer__stack,
    .offer-card {
        transform: translateY(2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .offer__stack,
    .offer-card,
    .offer-anchor {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   QUEBRA DE OBJEÇÕES (FAQ / accordion)
   ============================================================ */
.faq {
    background: var(--surface-soft);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.faq__head {
    max-width: 52rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq__eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.faq__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink-900);
}

.faq__inner {
    max-width: 52rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
    border-color: var(--blue-200);
    box-shadow: 0 14px 30px -18px rgba(20, 24, 31, 0.25);
}

.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink-900);
    cursor: pointer;
}

.faq-item__icon {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--blue-50);
    transition: transform 0.3s ease, background 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
    background: var(--color-primary);
}

.faq-item__icon img {
    width: 1.15rem;
    height: 1.15rem;
}

.faq-item.is-open .faq-item__icon img {
    filter: brightness(0) invert(1);
}

/* corpo colapsável (altura animada via JS) */
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq-item__a-inner {
    padding: 0 1.5rem 1.4rem;
}

.faq-item__a p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-600);
}

.faq-item__a strong {
    color: var(--ink-900);
    font-weight: 700;
}

/* animação de entrada (via .is-visible) */
.faq__head,
.faq-list {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-list {
    transition-delay: 0.1s;
}

.faq.is-visible .faq__head,
.faq.is-visible .faq-list {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-item__icon,
    .faq-item__a {
        transition: none;
    }

    .faq__head,
    .faq-list {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   Responsivo
   ============================================================ */
/* Tablet + Mobile (≤ 64em / 1024px):
   foto no topo, conteúdo vira um card translúcido sobreposto na base */
@media (max-width: 64em) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-header {
        z-index: 100; /* mantém header acima do overlay */
    }

    .site-header__logo {
        position: relative;
        z-index: 100; /* logo continua visível sobre o overlay */
    }

    /* Menu vira overlay full-screen */
    .nav-collapse {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 90;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        background: var(--surface);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.5rem);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .nav-collapse.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-collapse .nav {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-collapse .nav__link {
        font-size: 1.35rem;
    }

    .nav-collapse .btn-login {
        display: inline-flex; /* visível dentro do menu */
        font-size: 1.05rem;
        padding: 0.85rem 1.5rem;
        background: var(--color-primary);
        color: var(--color-on-primary);
        box-shadow: var(--shadow-btn);
    }

    /* ícone (preto) vira branco sobre o fundo azul */
    .nav-collapse .btn-login img {
        filter: brightness(0) invert(1);
    }

    .hero {
        min-height: 100vh;
    }

    /* Foto do André — preenche o espaço no topo, atrás do card */
    .hero__media {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 34rem;
        margin-inline: auto;
        flex: 1;
        min-height: 0;
        align-items: flex-start;
        justify-content: center;
        padding-top: 1.5rem;
        opacity: 1;
    }

    .hero__media img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: top center;
    }

    /* Card de conteúdo, sobreposto à base da foto */
    .hero__inner {
        position: relative;
        z-index: 5;
        flex: none;
        margin-top: -5rem; /* sobreposição sobre a foto */
        padding-bottom: 1.5rem;
        align-items: stretch;
    }

    .hero__content {
        max-width: none;
        width: 100%;
        padding: 1rem;
        margin-bottom: 5rem; /* sobe o card p/ cobrir um pouco mais o braço na foto */
        border-radius: 20px;
        background: rgba(253, 253, 253, 0.85);
        -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        /* Tablet/mobile: entra deslizando de baixo */
        animation-name: hero-slide-up;
    }

    /* espaçamentos internos do card mais compactos */
    .hero__eyebrow {
        margin-bottom: 0.75rem;
    }

    .hero__title {
        margin-bottom: 1rem;
    }

    .hero__desc {
        max-width: none;
        margin-bottom: 1.25rem;
    }

    .hero__benefits {
        margin-top: 1.25rem;
    }

    .hero__grid {
        width: 100%;
        opacity: 0.5;
    }
}

/* Mobile (≤ 40em / 640px) */
@media (max-width: 40em) {
    .site-header__logo img {
        height: 1.75rem;
    }

    .btn-primary {
        font-size: 1rem;
    }
}

/* ============================================================
   Animações de entrada
   ============================================================ */
@keyframes hero-slide-left {
    from {
        opacity: 0;
        transform: translateX(-3rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-slide-right {
    from {
        opacity: 0;
        transform: translateX(3rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-slide-up {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .hero__content,
    .hero__media {
        animation: none;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink-900);
    color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* ---------- Marca ---------- */
.footer__logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer__logo img {
    height: 2.125rem;
    width: auto;
    /* logo azul da marca -> branco sobre o fundo escuro */
    filter: brightness(0) invert(1);
}

.footer__about {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 26rem;
}

/* ---------- Colunas de links ---------- */
.footer__title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.footer__links,
.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer__links a,
.footer__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.18s ease;
}

.footer__links a:hover,
.footer__social a:hover {
    color: #FFFFFF;
}

/* ---------- Redes sociais (ícone em badge) ---------- */
.footer__social-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.18s ease;
}

.footer__social a:hover .footer__social-ic {
    background: var(--color-primary);
}

.footer__social-ic img {
    width: 1.15rem;
    height: 1.15rem;
    filter: brightness(0) invert(1); /* ícone preto -> branco */
}

/* ---------- Barra inferior (copyright) ---------- */
.footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 1.5rem;
}

.footer__bar p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

@media (max-width: 64em) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 40em) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ============================================================
   Botão flutuante do WhatsApp
   ============================================================ */
.wa-float {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wa-float__btn {
    display: inline-flex;
    flex: none;
    filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.45));
    transition: transform 0.2s ease;
}

.wa-float:hover .wa-float__btn {
    transform: scale(1.06);
}

.wa-float__btn img {
    width: clamp(3.25rem, 8vw, 3.75rem);
    height: auto;
}

/* Balão de mensagem — fundo claro, aparece após 2s (classe .is-bubble via JS) */
.wa-float__bubble {
    position: relative;
    max-width: 14rem;
    padding: 0.7rem 1rem;
    background: var(--surface);
    color: var(--ink-900);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
    border-radius: 14px;
    box-shadow: 0 12px 30px -12px rgba(20, 24, 31, 0.35);
    /* escondido até o JS liberar */
    opacity: 0;
    transform: translateX(0.5rem);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* seta do balão apontando para o ícone */
.wa-float__bubble::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.5rem;
    transform: translateY(-50%);
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-style: solid;
    border-color: transparent transparent transparent var(--surface);
}

.wa-float.is-bubble .wa-float__bubble {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

@media (max-width: 40em) {
    .wa-float__bubble {
        max-width: 11rem;
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-float__btn,
    .wa-float__bubble {
        transition: none;
    }
}
