/* ═══════════════════════════════════════════════════════════════
   MENTE NA AREIA — Paleta Editorial Esportiva
   ═══════════════════════════════════════════════════════════════

   CONCEITO: Leveza + Editorial Esportivo (Nike / Adidas aesthetic)
   A página é quase inteiramente preto e branco.
   O coral aparece UMA VEZ — na zona de conversão.
   Esse único momento de cor torna o CTA impossível de ignorar.

   ZONA 1 (VSL + Reforço): Preto profundo → branco puro
   ZONA 2 (Confiança):     Cinza muito claro → branco
   ZONA 3 (Conversão):     Coral explode, única cor da página

   PALETA:
   --black    : #0A0A0A   preto editorial
   --ink      : #1A1A1A   texto principal
   --ink-mid  : #444444   texto secundário
   --ink-soft : #777777   texto terciário
   --rule     : #E8E8E8   linhas e bordas
   --off-white: #F6F6F4   fundo claro
   --white    : #FFFFFF   branco puro
   --coral    : #FF5733   o único acento — zona 3 apenas
   --coral-h  : #FF7A5E   coral hover
   --coral-dk : #E03E1A   coral escuro
═══════════════════════════════════════════════════════════════ */

:root {
    --black: #0A0A0A;
    --ink: #1A1A1A;
    --ink-mid: #444444;
    --ink-soft: #777777;
    --rule: #E2E2E0;
    --off-white: #F6F6F4;
    --white: #FFFFFF;
    --coral: #FF5733;
    --coral-h: #FF7A5E;
    --coral-dk: #E03E1A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    /* 19/09/2026: 'clip' corta o excesso horizontal SEM transformar o body em área de
       rolagem, que no Safari do iPhone faz a barra fixa piscar. Safari 16+; abaixo, vale o hidden. */
    overflow-x: clip;
}

/* ─── TYPE SCALE ─── */
h1,
h2 {
    font-family: 'Playfair Display', serif;
    line-height: 1.12;
}

h1 {
    line-height: 1.08;
}

h2 {
    line-height: clamp(1.12, 1.16, 1.2);
}

h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

h4 {
    font-size: 1.04rem;
}

em {
    font-style: italic;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 88px 0;
}

/* ─── SHARED ─── */
.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 12px;
}

.lead {
    font-size: 1.13rem;
    color: var(--ink-mid);
    line-height: 1.78;
    max-width: 600px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    /* 19/09/2026: sem backdrop-filter. No Safari do iPhone o desfoque num header sticky
       pisca ao rolar (defeito do WebKit); com 96% de branco ele nem aparecia. */
    border-bottom: 1px solid var(--rule);
    padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.header-pill {
    display: inline-block;
    padding: 8px 22px;
    background: transparent;
    color: var(--black);
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    border-radius: 999px;
    font-size: 1.03rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s, opacity 0.35s;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    pointer-events: none;
}

.header-pill:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.header-pill:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.header-pill:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 3px;
}

@media (max-width: 480px) {
    .header-pill {
        padding: 7px 14px;
        font-size: 0.88rem;
    }

    .logo-img {
        height: 42px;
    }
}

/* ══════════════════════════════════════
   ZONA 1 — VSL + REFORÇO PÓS-VSL
   Fundo: preto editorial
   Sem coral. Máximo contraste tipográfico.
   ══════════════════════════════════════ */

.vsl-hero {
    background: var(--black);
    padding: 72px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vsl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 255, 255, 0.03), transparent 60%);
}

.vsl-hero .container {
    position: relative;
}

.vsl-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
}

.vsl-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 18px;
    color: var(--white);
}

.line-thin {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.25;
}

.line-bold {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5.6vw, 4.2rem);
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--white);
    margin-top: 4px;
}

.line-coda {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: clamp(1.2rem, 3vw, 1.72rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.97);
    max-width: 660px;
    margin: 18px auto 0;
}

.vsl-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.76;
    font-weight: 300;
}

/* VSL Player */
.vsl-frame {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 44px;
}

.vsl-screen {
    position: relative;
    width: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

/* Fallback 16:9 onde aspect-ratio falha (navegadores antigos) */
@supports not (aspect-ratio: 16 / 9) {
    .vsl-screen {
        height: 0;
        padding-bottom: 56.25%;
    }
}

.vsl-embed,
.vsl-screen > iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border: 0;
}

/* Post-VSL CTA */
.vsl-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vsl-micro {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.64);
}

/* Micro-prova hero */
.vsl-proof {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 28px;
    margin-top: -16px;
}

/* Checklist marquee dentro da hero */
.vsl-checklist-marquee {
    margin: 0 0 40px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 0;
}

.vsl-checklist-marquee .zd-track {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.76);
    animation-duration: 20.4s;
}

.vsl-checklist-marquee .zd-dot {
    color: rgba(255, 255, 255, 0.40);
}

.btn-ghost-white {
    cursor: pointer;
    display: inline-block;
    padding: 16px 44px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.22s;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-ghost-white:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2), 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-ghost-white:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Trust Rail */
.trust-rail {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.trust-rail::-webkit-scrollbar {
    display: none;
}

.trust-rail-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px 28px;
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    white-space: nowrap;
    min-width: max-content;
    padding: 0 20px;
}

@media (max-width: 860px) {
    .trust-rail {
        overflow-x: visible;
    }

    .trust-rail-inner {
        flex-wrap: wrap;
        white-space: normal;
        min-width: unset;
        gap: 10px 22px;
        font-size: 0.92rem;
        padding: 0 16px;
    }
}

.dot {
    color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    .trust-rail-inner .dot {
        display: none;
    }
}

/* Testimonials */
.testimonials {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
}

.testimonials h2 {
    margin-bottom: 44px;
}

.testimonials h2 em {
    color: var(--ink-soft);
}

/* REMOVIDO em 30/07/2026: bloco de depoimento de um design anterior
   (.t-grid, .t-stack, .t-card, .t-large, .t-stars, cite, blockquote).
   Nenhum deles era usado no index.html. O .t-card::before injetava uma aspa
   em #E16245, e como o card novo de depoimento reaproveita a classe .t-card
   (para herdar o scroll-reveal de mente-na-areia.js:116), essa aspa colorida
   voltaria a aparecer numa secao da ZONA 2, que nao admite cor.
   O estilo do card novo vive junto do .t-mural, mais abaixo neste arquivo. */

/* ══════════════════════════════════════
   ZONA 2 — CONFIANÇA E VALOR
   Fundo: branco e cinza muito claro
   Sem coral. Acento: preto editorial.
   ══════════════════════════════════════ */

/* Problem */
.problem {
    background: var(--off-white);
}

.problem-intro-block {
    margin-bottom: 56px;
}

.problem-intro-block h2 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

.problem-intro-block h2 em {
    color: var(--ink-soft);
    font-style: italic;
}

.problem-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 48px;
    background: var(--white);
}

@media (max-width: 680px) {
    .problem-cols {
        grid-template-columns: 1fr;
    }
}

.problem-col {
    padding: 36px 28px;
    border-right: 1px solid var(--rule);
}

.problem-col:last-child {
    border-right: none;
}

.pcol-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 12px;
}

.problem-col h3 {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 14px;
}

.problem-col ul {
    list-style: none;
}

.problem-col ul li {
    font-size: 1rem;
    color: var(--ink-mid);
    padding: 5px 0;
    border-bottom: 1px solid var(--rule);
    line-height: 1.5;
}

.problem-col ul li:last-child {
    border-bottom: none;
}

.problem-statement {
    background: var(--black);
    border-radius: 14px;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 600px) {
    .problem-statement {
        padding: 28px 24px;
    }
}

.ps-line {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.3;
}

.ps-bold {
    color: var(--white);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
}

/* Method */
.method {
    background: var(--white);
}

.method-header {
    margin-bottom: 52px;
}

.method-header h2 {
    margin-bottom: 16px;
}

.method-header h2 em {
    color: var(--ink-soft);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 40px;
}

@media (max-width: 640px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module-item {
        border-right: none;
    }

    .module-item:nth-child(5) {
        border-bottom: 1px solid var(--rule);
    }

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

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    transition: background 0.18s;
}

.module-item:nth-child(even) {
    border-right: none;
}

.module-item:nth-child(5),
.module-item:nth-child(6) {
    border-bottom: none;
}

.module-item:hover {
    background: var(--off-white);
}

.mod-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--rule);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.mod-content h4 {
    font-size: 1.04rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.mod-content p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.outcomes-strip {
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 32px 36px;
}

.outcomes-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 16px;
    display: block;
}

.outcomes-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.outcomes-pills li {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.86rem;
    color: var(--ink-mid);
    font-weight: 500;
}

/* CTA intermediário pós-módulos */
.method-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
}

.btn-method-cta {
    cursor: pointer;
    display: inline-block;
    padding: 16px 44px;
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.22s;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-method-cta:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25), 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-method-cta:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.method-cta-micro {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

/* Mobile: o texto do CTA é longo — deixa quebrar e respeitar a margem do container (evita encostar na borda) */
@media (max-width: 560px) {
    .btn-method-cta {
        white-space: normal;
        max-width: 100%;
        padding: 15px 26px;
        text-align: center;
        line-height: 1.35;
    }
}

/* Urgência de lançamento — offer */
.offer-urgency {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 32px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
}

.ou-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.offer-urgency p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.offer-urgency strong {
    color: rgba(255, 255, 255, 0.97);
}

/* About */
/* Branco, e nao off-white: a .appsec logo acima e a faixa off-white da Zona 2.
   Duas faixas cinza encostadas viram um bloco continuo e o filete some. Branco
   encostando em branco com filete e padrao ja usado em .testimonials/.problem. */
.about {
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 88px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 44px;
    align-items: start;
    width: 100%;
}

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 250px 1fr;
        gap: 36px;
    }
}

@media (max-width: 780px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-img {
        aspect-ratio: 4/3;
    }

    .about-text h2 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .creds-marquee {
        max-width: 100%;
        width: 100%;
        margin-top: 16px;
        overflow: hidden;
    }

    .about-text {
        overflow: hidden;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 52px 0;
        overflow: hidden;
    }

    .about-img {
        aspect-ratio: 3/2;
    }
}

.about-img-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Empilhado (mobile/tablet estreito): foto volta ao fluxo, sem fixar.
   Precisa vir depois da regra base para vencer a cascata. */
@media (max-width: 780px) {
    .about-img-wrap {
        position: static;
        top: auto;
    }
}

.about-img {
    aspect-ratio: 3/4;
    background: var(--rule);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-mid);
    text-decoration: none;
    padding: 9px 16px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    transition: all 0.22s;
    letter-spacing: 0.01em;
}

.about-instagram:hover {
    border-color: var(--ink-soft);
    color: var(--ink);
    background: var(--white);
}

.ig-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 12px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.03rem;
    color: var(--ink-mid);
    line-height: 1.76;
    margin-bottom: 14px;
    max-width: 520px;
}

.about-text em {
    color: var(--ink);
    font-style: italic;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.16rem !important;
    line-height: 1.6 !important;
    color: var(--ink) !important;
    padding-left: 18px;
    border-left: 3px solid var(--ink);
    margin-bottom: 18px !important;
}

/* Bonuses */
.bonuses {
    background: var(--white);
    padding: 88px 0;
}

.bonuses h2 {
    margin-bottom: 8px;
}

.bonuses h2 em {
    color: var(--ink-soft);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 40px;
}

@media (max-width: 680px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* 4 bônus: 2×2 no desktop, mantendo os filetes internos da caixa */
@media (min-width: 769px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-item {
        border-bottom: 1px solid var(--rule);
    }

    .bonus-item:nth-child(2n) {
        border-right: none;
    }

    .bonus-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

.bonus-item {
    padding: 32px 26px;
    border-right: 1px solid var(--rule);
}

.bonus-item:last-child {
    border-right: none;
}

.bonus-icon-wrap {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.bonus-item h4 {
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 12px;
    font-weight: 700;
}

.bonus-item ul {
    list-style: none;
}

.bonus-item ul li {
    font-size: 1.03rem;
    color: var(--ink-soft);
    padding: 4px 0;
    border-bottom: 1px solid var(--rule);
    line-height: 1.5;
}

.bonus-item ul li:last-child {
    border-bottom: none;
}

/* Audience */
.audience {
    background: var(--off-white);
}

.audience-title {
    margin-bottom: 48px;
}

.audience-cols {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 48px;
}

@media (max-width: 680px) {
    .audience-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aud-divider {
        display: none;
    }
}

.aud-divider {
    background: var(--rule);
}

.aud-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.aud-label-yes {
    color: var(--ink);
}

.aud-label-no {
    color: var(--ink-soft);
}

.aud-icon-yes {
    color: #27AE60;
    font-weight: 900;
    font-size: 1.9em;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin-right: 3px;
}

.aud-icon-no {
    color: #C0392B;
    font-weight: 900;
    font-size: 1.9em;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin-right: 3px;
}

.aud-yes ul,
.aud-no ul {
    list-style: none;
}

.aud-yes ul li,
.aud-no ul li {
    font-size: 1.02rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    color: var(--ink-mid);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.aud-yes ul li::before {
    content: '✓';
    font-weight: 800;
    color: var(--ink);
    flex-shrink: 0;
}

.aud-no ul li::before {
    content: '✗';
    color: var(--ink);
    font-weight: 900;
    font-size: 1.15em;
    flex-shrink: 0;
}

/* Proof */
.proof {
    background: var(--white);
    border-top: 1px solid var(--rule);
}

.proof .eyebrow {
    margin-bottom: 16px;
}

.proof h2 {
    margin-bottom: 20px;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

.proof h2 em {
    color: var(--ink-soft);
    font-style: italic;
}

.proof-lead {
    font-size: 1.05rem;
    color: var(--ink-mid);
    line-height: 1.76;
    max-width: 780px;
    margin: 0 0 18px;
}

.proof-lead:last-of-type {
    margin-bottom: 32px;
}

.proof-lead strong {
    color: var(--ink);
    font-weight: 700;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
        /* URLs longas não podem ser cortadas pelo clip do grid no mobile */
        overflow: visible;
    }
}

.proof-card {
    padding: 28px;
    border-right: 1px solid var(--rule);
    transition: all 0.22s;
    border-radius: 8px;
    min-width: 0;
}

.proof-card:hover {
    background: var(--off-white);
}

.proof-card:last-child {
    border-right: none;
}

.proof-src {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
}

.proof-card p {
    font-size: 1.05rem;
    color: var(--ink-mid);
    line-height: 1.66;
    margin-bottom: 10px;
    overflow-wrap: break-word;
}

.proof-card a {
    font-size: 0.8rem;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.proof-card a:hover {
    color: var(--ink-soft);
}

/* Support */
.support {
    background: var(--off-white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.support h2 {
    margin-bottom: 44px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
}

@media (max-width: 680px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

.support-item {
    padding: 32px 26px;
    border-right: 1px solid var(--rule);
    text-align: center;
}

.support-item:last-child {
    border-right: none;
}

.sup-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 10px;
}

.support-item h4 {
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.support-item p {
    font-size: 1.03rem;
    color: var(--ink-soft);
    line-height: 1.62;
}

/* FAQ */
.faq {
    background: var(--white);
}

.faq h2 {
    margin-bottom: 44px;
}

.faq-list {
    max-width: 720px;
}

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

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--ink-soft);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-q.open::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    font-size: 1.01rem;
    color: var(--ink-mid);
    line-height: 1.72;
}

.faq-a.open {
    max-height: 600px;
    padding-bottom: 20px;
}

/* ══════════════════════════════════════
   ZONA 3 — CONVERSÃO
   Aqui e só aqui o coral aparece.
   É o único momento de cor da página.
   O contraste é brutal. O CTA é inevitável.
   ══════════════════════════════════════ */

/* Divisor marquee */
.zone-divider {
    background: var(--coral);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Variante para zonas claras (branco/off-white) */
.zone-divider--light {
    background: var(--black);
}

/* Variante para saída do preto (visualization → problem) */
.zone-divider--light .zd-track {
    color: rgba(255, 255, 255, 0.82);
}

.zone-divider--light .zd-dot {
    color: rgba(255, 255, 255, 0.44);
}

/* Variante branca — entre seções de fundo escuro e claro */
.zone-divider--white {
    background: var(--white);
}

.zone-divider--white .zd-track {
    color: rgba(0, 0, 0, 0.7);
}

.zone-divider--white .zd-dot {
    color: rgba(0, 0, 0, 0.32);
}

.zd-track {
    display: inline-flex;
    gap: 24px;
    animation: marquee 22s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.92);
    width: max-content;
}

/* Durações calibradas para velocidade constante entre dividers */
.zd--pressao .zd-track {
    animation-duration: 23.6s;
}

.zd--ciencia .zd-track {
    animation-duration: 25.1s;
}

.zd--destravar .zd-track {
    animation-duration: 29.1s;
}

.zd-dot {
    color: rgba(255, 255, 255, 0.64);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Offer Section */
.offer {
    background: var(--black);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 87, 51, 0.08), transparent 55%);
}

.offer .container {
    position: relative;
}

.offer-headline-block {
    text-align: center;
    margin-bottom: 52px;
}

.offer-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-bottom: 14px;
}

.offer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Pricing Card */
.offer-card {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    margin: 40px auto 0;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.offer-card-top {
    background: var(--coral);
    padding: 36px 36px 28px;
    text-align: center;
}

@media (max-width: 480px) {
    .offer-card-top {
        padding: 28px 20px 22px;
    }

    .offer-includes {
        padding: 20px 20px;
    }
}

.offer-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.offer-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 20px;
}

.offer-value-block {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offer-value-line {
    font-size: 1.01rem;
    color: rgba(255, 255, 255, 0.97);
    line-height: 1.55;
}

.offer-value-line strong {
    color: white;
    font-weight: 700;
}

.offer-includes {
    padding: 24px 32px;
    border-bottom: 1px solid var(--rule);
}

.inc-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 12px;
    display: block;
}

.offer-includes ul {
    list-style: none;
}

.offer-includes ul li {
    font-size: 1.05rem;
    color: var(--ink-mid);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.offer-includes ul li::before {
    content: '✓';
    color: var(--coral);
    font-weight: 800;
    flex-shrink: 0;
}

.btn-checkout {
    cursor: pointer;
    display: block;
    /* O botao nao encosta nas bordas do card em nenhuma largura: 520px de teto
       no desktop e, quando o card e mais estreito que isso, 100% menos 48px de
       inset lateral. margin auto centraliza (as media queries repetem o auto). */
    width: calc(100% - 48px);
    max-width: 520px;
    margin: 24px auto 16px;
    /* 18px lateral encostava o texto na borda em telas medias. O clamp garante
       respiro em qualquer largura/zoom e o text-wrap:balance quebra em 2 linhas
       centradas quando o espaco acabar, em vez de tocar a borda. */
    padding: 18px clamp(28px, 7vw, 52px);
    text-wrap: balance;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--coral-h), var(--coral), var(--coral-dk));
    color: white;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.04rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.22s;
    box-shadow: 0 4px 0 rgba(180, 50, 20, 0.6), 0 8px 28px rgba(255, 87, 51, 0.35);
    letter-spacing: 0.01em;
    white-space: normal;
    word-break: break-word;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(180, 50, 20, 0.55), 0 16px 44px rgba(255, 87, 51, 0.45);
    filter: brightness(1.06);
}

.btn-checkout:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 rgba(180, 50, 20, 0.6), 0 4px 12px rgba(255, 87, 51, 0.3);
}

.offer-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 28px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.g-shield {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.offer-guarantee strong {
    font-size: 1.05rem;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.offer-guarantee p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* Final punch */
.final-punch {
    background: var(--coral);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-punch::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(255, 255, 255, 0.05), transparent);
}

.final-punch .container {
    position: relative;
}

.fp-pre {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 12px;
    font-style: normal;
    letter-spacing: 0.01em;
}

.fp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    color: white;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 36px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.btn-final {
    cursor: pointer;
    display: inline-block;
    padding: 18px 52px;
    background: white;
    color: var(--coral-dk);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.04rem;
    text-decoration: none;
    transition: all 0.22s;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 6px 24px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-final {
        display: block;
        padding: 18px 24px;
        text-align: center;
    }
}

.btn-final:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.22), 0 14px 36px rgba(0, 0, 0, 0.25);
}

.btn-final:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background: var(--black);
    padding: 36px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.footer-logo-img {
    height: auto;
    width: 220px;
    max-width: 100%;
    opacity: 1;
    display: block;
    margin: 0 auto 8px;
}

footer p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
}

footer a {
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.84);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.50) !important;
}

.footer-sep {
    margin: 0 6px;
    opacity: 0.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .vsl-hero {
        padding: 48px 0 44px;
    }

    .problem-statement {
        padding: 28px 24px;
    }

    .offer {
        padding: 60px 0;
    }

    .final-punch {
        padding: 60px 0;
    }

    .support-grid,
    .bonus-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .support-item,
    .bonus-item,
    .proof-card {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .support-item:last-child,
    .bonus-item:last-child,
    .proof-card:last-child {
        border-bottom: none;
    }

    .problem-cols {
        grid-template-columns: 1fr;
    }

    .problem-col {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

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

    .module-item {
        border-right: none;
    }

    .offer-card-top {
        padding: 28px 24px 22px;
    }

    .offer-includes {
        padding: 20px 24px;
    }

    .btn-checkout {
        margin: 20px auto 14px;
    }

    .offer-guarantee {
        padding: 14px 20px;
    }
}

/* ─── ANIMATIONS ─── */
/* A hero (.vsl-hero) NAO anima mais a entrada (corrige a tela preta no Instagram;
   nasce visivel pelo <style> critico). Mas o keyframe fadeUp abaixo CONTINUA
   necessario: mente-na-areia.js (linha ~141) usa `animation: fadeUp` no scroll-reveal
   dos cards (.t-card, .bonus-item, .proof-card, .problem-col, .id-check, etc.).
   Sem ele, os cards ficam presos em opacity:0 (invisiveis). NAO remover. */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   ESTILOS DAS NOVAS SEÇÕES — COPY ULTRA CONVERSÃO
   Adicionados ao CSS base sem alterar nenhuma regra existente
   ══════════════════════════════════════════════════════════ */

/* ── VSL Checklist ── */
.vsl-checklist {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto 40px;
    max-width: 860px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    white-space: nowrap;
}

.vsl-checklist li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border-right: none;
    line-height: 1.4;
    white-space: nowrap;
}

.vsl-checklist li:not(:last-child)::after {
    content: '·';
    color: rgba(255, 255, 255, 0.44);
    font-size: 1.1rem;
    margin-left: 16px;
    font-weight: 300;
}

.vsl-checklist li:last-child {
    border-right: none;
}

.vsl-checklist li::before {
    content: '✔';
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.58);
    flex-shrink: 0;
}

/* ── Seção Identificação ── */
.identification {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
}

.id-header {
    margin-bottom: 44px;
}

.id-header .eyebrow {
    margin-bottom: 10px;
}

.identification h2 {
    margin-bottom: 0;
}

.identification h2 em {
    color: var(--ink-soft);
}

/* Grid 2 colunas: poema + checks */
.id-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 44px;
}

@media (max-width: 720px) {
    .id-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .id-conclusion {
        margin-top: 24px;
    }

    .id-checks {
        height: auto;
    }
}

/* Coluna esquerda — poema */
.id-poem {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--black);
    border-radius: 14px;
    padding: 36px 32px;
    justify-content: center;
}

@media (max-width: 480px) {
    .id-poem {
        padding: 28px 24px;
    }
}

.poem-flow {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

.poem-symptoms {
    list-style: none;
    padding: 16px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.poem-symptoms li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
    padding: 5px 0 5px 14px;
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    line-height: 1.45;
}

.poem-diagnosis {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0;
}

.poem-diagnosis strong {
    color: rgba(255, 255, 255, 0.96);
    font-weight: 600;
}

/* Coluna direita — checks */
.id-checks {
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.id-check {
    padding: 22px 28px;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
    color: var(--ink-mid);
    line-height: 1.55;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: background 0.15s;
    cursor: default;
    flex: 1;
}

.id-check:last-child {
    border-bottom: none;
}

.id-check:hover {
    background: var(--off-white);
}

.id-check::before {
    content: '?';
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--ink-soft);
    opacity: 0.35;
    flex-shrink: 0;
    line-height: 1;
}

/* Diagnóstico — largura total */
.id-conclusion {
    background: var(--black);
    border-radius: 14px;
    padding: 36px 44px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.idc-sub {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.66);
    font-style: italic;
}

.idc-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--white);
    line-height: 1.2;
}

@media (max-width: 680px) {
    .id-conclusion {
        padding: 24px;
    }
}

/* ── Proof row: imagem real + cards lado a lado ── */
.t-proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 8px;
}

@media (max-width: 780px) {
    .t-proof-row {
        grid-template-columns: 1fr;
    }
}

.t-proof-img-col {
    position: sticky;
    top: 100px;
    z-index: 2;
}

@media (max-width: 780px) {
    .t-proof-img-col {
        position: static;
        top: auto;
    }
}

.t-proof-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    display: block;
}

.t-proof-cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* ── Mural de prints reais (prova social) ── */
.t-mural {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

/* Card de depoimento. Grade de 2 colunas: conteudo + prova.
   O texto ocupa as duas colunas; so a assinatura divide a linha com o print,
   senao a coluna do print ficaria reservada em TODAS as linhas e estrangularia
   a citacao (era o defeito da primeira versao). */
.t-mural .t-card {
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto auto;
    column-gap: 20px;
}

.t-card--hero {
    grid-column: span 2;
}

/* Rotulo do canal: mesma regua do .eyebrow. Sem pilula e sem coral, porque a
   secao esta na ZONA 2 ("Sem coral. Acento: preto editorial"). */
.t-selo {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: start;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.t-quote {
    grid-column: 1 / -1;
    grid-row: 2;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.06rem;
    line-height: 1.5;
    color: var(--ink);
    margin: 14px 0 0;
}

.t-card--hero .t-quote {
    font-size: 1.28rem;
    line-height: 1.46;
}

/* Enfase por peso e preto editorial, nunca por cor. */
.t-quote mark {
    background: none;
    color: var(--black);
    font-weight: 600;
}

.t-rule {
    grid-column: 1 / -1;
    grid-row: 3;
    height: 1px;
    background: var(--rule);
    margin: 18px 0 14px;
}

.t-assin {
    grid-column: 1;
    grid-row: 4;
    display: flex;
    align-items: center;
    gap: 11px;
}

.t-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--rule);
    flex-shrink: 0;
}

.t-nm {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
}

.t-uf {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    line-height: 1.3;
    color: var(--ink-soft);
}

.t-prova {
    grid-column: 2;
    grid-row: 4;
    align-self: end;
    position: relative;
    width: 104px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-mini {
    width: 104px;
    height: 104px;
    border-radius: 11px;
    border: 1px solid var(--rule);
    background: var(--white);
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.18s;
}

.t-lab {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    color: var(--ink-soft);
}

/* Selo de lupa. Tela de toque nao tem hover nem cursor de lupa, entao sem um
   sinal permanente nada avisa que a imagem amplia. Anel escuro + fundo branco
   para ficar visivel sobre print preto e sobre tela clara do app. */
.t-lupa {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='M20 20l-4.5-4.5M10.5 7.5v6M7.5 10.5h6'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.18), 0 2px 7px rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

@media (hover: hover) {
    .t-mini:hover,
    .app-frame img:hover {
        transform: scale(1.04);
    }
}

.t-mini:active,
.app-frame img:active {
    transform: scale(0.97);
}

@media (max-width: 860px) {
    .t-mural {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .t-mural .t-card {
        grid-column: span 1;
        padding: 22px;
        column-gap: 16px;
    }

    .t-card--hero .t-quote {
        font-size: 1.12rem;
    }
}

/* ── Testimonial note ── */
.t-note {
    text-align: center;
    margin-top: 28px;
    font-size: 1.04rem;
    color: var(--ink-soft);
    font-style: italic;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   O MÉTODO NO SEU BOLSO (app)
   Entre .method (branco) e .about (off-white). Fundo off-white com filete
   em cima para nao fundir com o branco do .method. Preto aqui roubaria a
   singularidade visual da .offer, unica secao escura do fim da pagina.
   O contraste desta secao vem das molduras pretas das telas, nao do fundo.
   ══════════════════════════════════════ */
.appsec {
    background: var(--off-white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 82px 0;
}

/* margin-bottom e o em em cinza sao definidos por secao neste arquivo,
   nao ha regra global de h2 que cubra isso. */
.appsec h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    margin-bottom: 26px;
    max-width: 800px;
}

.appsec h2 em {
    color: var(--ink-soft);
    font-style: italic;
}

.app-lede {
    max-width: 640px;
    color: var(--ink-mid);
    font-size: 1.02rem;
    line-height: 1.72;
}

/* ── Telas do app: composicao escalonada, a do Modo Quadra elevada ── */
.app-shots {
    display: grid;
    grid-template-columns: 1fr 1.16fr 1fr;
    gap: 30px;
    align-items: end;
    margin: 56px 0 0;
}

.app-shot {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 26px;
}

.app-shot--hero {
    padding-bottom: 0;
}

/* Moldura de aparelho. O padding preto e o que da corpo de celular a
   miniatura; por isso a lupa e reposicionada em relacao ao .t-lupa base. */
.app-frame {
    position: relative;
    display: block;
    background: var(--black);
    border-radius: 28px;
    padding: 7px;
    box-shadow: 0 22px 44px -24px rgba(10, 10, 10, 0.55);
}

.app-shot--hero .app-frame {
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 40px 78px -28px rgba(10, 10, 10, 0.62);
}

.app-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    cursor: zoom-in;
    transition: transform 0.18s;
}

.app-shot--hero .app-frame img {
    border-radius: 25px;
}

.app-frame .t-lupa {
    top: 13px;
    right: 13px;
}

.app-shot--hero .app-frame .t-lupa {
    top: 14px;
    right: 14px;
}

.app-shot figcaption {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--ink-soft);
    text-align: center;
}

.app-shot--hero figcaption {
    color: var(--ink-mid);
}

/* ── Regua das tres etapas do fluxo ── */
.app-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 62px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.app-step {
    padding: 30px;
    border-right: 1px solid var(--rule);
}

.app-step:first-child {
    padding-left: 0;
}

.app-step:last-child {
    padding-right: 0;
    border-right: 0;
}

.app-step-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.app-step-title {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.95rem;
    line-height: 1.1;
    color: var(--black);
    margin: 10px 0;
}

.app-step p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--ink-mid);
}

/* ── Bloco dos audios da Debora ── */
.app-audio {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 40px;
}

.app-audio p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--ink-mid);
    max-width: 690px;
}

.app-audio strong {
    color: var(--black);
    font-weight: 600;
}

.app-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 44px;
    flex-shrink: 0;
}

.app-wave span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: #A8A8A4;
}

.app-wave span:nth-child(1) { height: 14px; background: #C9C9C6; }
.app-wave span:nth-child(2) { height: 26px; }
.app-wave span:nth-child(3) { height: 38px; background: #6E6E6A; }
.app-wave span:nth-child(4) { height: 44px; background: var(--black); }
.app-wave span:nth-child(5) { height: 30px; background: #6E6E6A; }
.app-wave span:nth-child(6) { height: 40px; background: var(--ink); }
.app-wave span:nth-child(7) { height: 20px; }
.app-wave span:nth-child(8) { height: 32px; background: #6E6E6A; }
.app-wave span:nth-child(9) { height: 12px; background: #C9C9C6; }
.app-wave span:nth-child(10) { height: 24px; }

.app-mais {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-top: 26px;
}

.app-mais strong {
    color: var(--ink);
    font-weight: 600;
}

.app-fecho {
    margin-top: 40px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--ink);
    max-width: 700px;
}

/* CTA alinhado a esquerda: o .method-cta logo acima e centralizado, entao
   repetir o mesmo eixo faria os dois botoes lerem como o mesmo bloco. */
.app-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 38px;
}

@media (max-width: 860px) {
    .appsec {
        padding: 56px 0;
    }

    .appsec h2 {
        margin-bottom: 20px;
    }

    .app-lede {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* As 3 telas continuam lado a lado no celular. A leitura acontece no
       dialog de ampliacao, entao a miniatura so precisa ser reconhecivel
       e tocavel, e assim a secao nao ganha 3 rolagens de altura. */
    .app-shots {
        gap: 10px;
        margin-top: 32px;
    }

    .app-shot {
        gap: 9px;
        padding-bottom: 12px;
    }

    .app-frame {
        border-radius: 14px;
        padding: 4px;
        box-shadow: 0 12px 22px -12px rgba(10, 10, 10, 0.55);
    }

    .app-shot--hero .app-frame {
        border-radius: 16px;
        padding: 4px;
        box-shadow: 0 22px 40px -16px rgba(10, 10, 10, 0.6);
    }

    .app-frame img {
        border-radius: 11px;
    }

    .app-shot--hero .app-frame img {
        border-radius: 13px;
    }

    .app-shot figcaption {
        font-size: 0.7rem;
        line-height: 1.45;
    }

    .app-frame .t-lupa,
    .app-shot--hero .app-frame .t-lupa {
        width: 19px;
        height: 19px;
        background-size: 11px;
        top: 8px;
        right: 8px;
    }

    /* A regua empilha: 3 colunas em 354px espremeriam os rotulos. */
    .app-steps {
        grid-template-columns: 1fr;
        margin-top: 36px;
        border-bottom: 0;
    }

    .app-step {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--rule);
    }

    .app-step-title {
        font-size: 1.6rem;
        margin: 8px 0;
    }

    .app-step p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .app-audio {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 28px;
    }

    .app-audio p {
        font-size: 0.93rem;
    }

    .app-wave {
        height: 32px;
    }

    .app-wave span:nth-child(1) { height: 10px; }
    .app-wave span:nth-child(2) { height: 19px; }
    .app-wave span:nth-child(3) { height: 27px; }
    .app-wave span:nth-child(4) { height: 32px; }
    .app-wave span:nth-child(5) { height: 22px; }
    .app-wave span:nth-child(6) { height: 29px; }
    .app-wave span:nth-child(7) { height: 14px; }
    .app-wave span:nth-child(8) { height: 23px; }
    .app-wave span:nth-child(9) { height: 9px; }
    .app-wave span:nth-child(10) { height: 17px; }

    .app-mais {
        font-size: 0.88rem;
        margin-top: 20px;
    }

    .app-fecho {
        margin-top: 30px;
        font-size: 1.2rem;
        line-height: 1.42;
    }

    .app-cta {
        align-items: center;
        margin-top: 30px;
    }

    .app-cta .btn-method-cta {
        width: 100%;
        text-align: center;
    }
}

/* ── Ampliação de print e de tela do app ── */
#ampliar {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
    overflow: visible;
}

#ampliar::backdrop {
    background: rgba(10, 10, 10, 0.93);
}

#ampliar img {
    display: block;
    max-width: min(460px, 90vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    cursor: zoom-out;
}

/* ── Seção O que é o Método ── */
.what-is {
    background: var(--off-white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 88px 0;
}

.wi-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 780px) {
    .wi-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.wi-left h2 {
    line-height: 1.08;
}

.wi-left h2 em {
    color: var(--ink-soft);
}

.wi-desc {
    font-size: 1rem;
    color: var(--ink-mid);
    line-height: 1.72;
    margin-bottom: 24px;
    max-width: 480px;
}

.wi-list {
    list-style: none;
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 28px;
}

.wi-list li {
    padding: 12px 20px;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
    color: var(--ink-mid);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.wi-list li:last-child {
    border-bottom: none;
}

.wi-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 4px;
    flex-shrink: 0;
}

.wi-no {
    background: var(--off-white);
    color: var(--ink-soft);
    border: 1px solid var(--rule);
}

.wi-yes {
    background: var(--black);
    color: var(--white);
}

.wi-pillars {
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 20px;
}

.wi-pillars-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 12px 20px;
    border-bottom: 1px solid var(--rule);
    display: block;
    background: var(--off-white);
}

.wi-pillar {
    padding: 14px 20px;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
    color: var(--ink-mid);
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.wi-pillar:last-child {
    border-bottom: none;
}

.wi-pnum {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--rule);
    flex-shrink: 0;
    line-height: 1;
}

.wi-tagline {
    font-size: 1rem;
    color: var(--ink-mid);
    line-height: 1.65;
    font-style: italic;
}

.wi-tagline strong {
    color: var(--ink);
    font-style: normal;
}

.bonus-total {
    margin-top: 32px;
    text-align: center;
    font-size: 1rem;
    color: var(--ink-mid);
    border-top: 1px solid var(--rule);
    padding-top: 24px;
}

.bonus-total s {
    color: var(--ink-soft);
    text-decoration: line-through;
}

.bonus-total strong {
    color: var(--ink);
    font-weight: 700;
}

/* ── Reframe da decisão (acima do card) ── */
.offer-decision {
    max-width: 560px;
    margin: 0 auto 28px;
    text-align: center;
    padding: 0 4px;
}

.od-question {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 12px;
}

.od-divider {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
    margin: 24px 0 16px;
}

.od-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.od-opt {
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1.02rem;
    line-height: 1.5;
    text-align: left;
}

.od-opt-no {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 87, 51, 0.90);
    text-decoration-thickness: 2px;
}

.od-opt-yes {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.97);
    font-weight: 600;
}

/* ── Final punch — micro abaixo do CTA ── */
.fp-micro {
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.03em;
}

/* ── offer-title itálico ── */
.offer-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.88em;
    font-weight: 400;
    letter-spacing: 0;
}

/* ── Responsive novos estilos ── */
@media (max-width: 768px) {
    .identification {
        padding: 60px 0;
    }

    .what-is {
        padding: 60px 0;
    }

    .bonuses {
        padding: 60px 0;
    }

    .id-check {
        padding: 18px 20px;
        font-size: 1.02rem;
    }

    /* hero-poem removed — estilos migrados para .id-poem */
}

/* ══════════════════════════════════════
   NOVOS ESTILOS — INTEGRAÇÃO PDF v1.5
   ══════════════════════════════════════ */

/* ── Testimonial intro e media note ── */
.t-intro {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}

.t-media-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 14px 20px;
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-style: italic;
}

.t-media-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ── Seção Visualização ── */
.visualization {
    background: var(--black);
    padding: 88px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .visualization {
        padding: 60px 0;
    }
}

.visualization .eyebrow {
    color: rgba(255, 255, 255, 0.64);
}

.visualization h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.visualization h2 em {
    color: rgba(255, 255, 255, 0.72);
}

.viz-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 44px;
    font-style: italic;
}

.viz-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
    text-align: left;
}

@media (max-width: 720px) {
    .viz-layout {
        grid-template-columns: 1fr;
    }
}

/* Coluna esquerda — foto */
.viz-photo-col {
    position: relative;
    min-height: 400px;
}

.viz-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 720px) {
    .viz-photo-col {
        min-height: 280px;
    }
}

/* Coluna direita — cards empilhados */
.viz-cards-col {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 720px) {
    .viz-cards-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.viz-card {
    padding: 32px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.18s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.viz-card:last-child {
    border-bottom: none;
}

.viz-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.viz-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1;
    margin-bottom: 10px;
}

.viz-card h4 {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 14px;
}

.viz-card p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.viz-science {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
    font-style: italic;
    padding: 20px 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.viz-science strong {
    color: rgba(255, 255, 255, 0.90);
    font-style: normal;
}

.viz-cta {
    display: flex;
    justify-content: center;
}

/* ── Btn ghost dark (zona branca) ── */
.btn-ghost-dark {
    cursor: pointer;
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.97rem;
    text-decoration: none;
    transition: all 0.22s;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-ghost-dark:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-ghost-dark:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Na zona branca */
.faq-contact .btn-ghost-dark,
.takeaway .btn-ghost-dark {
    color: var(--ink);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.07);
}

.faq-contact .btn-ghost-dark:hover,
.takeaway .btn-ghost-dark:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18), 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* ── Proof — entrevistas na mídia ── */
.proof-media {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--rule);
}

.proof-media-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 20px;
}

.proof-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 640px) {
    .proof-media-grid {
        grid-template-columns: 1fr;
    }
}

.proof-media-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid var(--rule);
    border-radius: 12px;
    text-decoration: none;
    background: var(--off-white);
    transition: background 0.18s, border-color 0.18s;
    min-width: 0;
    cursor: default;
}

/* Flex: permite o bloco de texto encolher e quebrar URLs longas no mobile */
.proof-media-card > div {
    flex: 1;
    min-width: 0;
}

.proof-media-card:hover {
    background: var(--white);
    border-color: var(--ink-soft);
}

.pmc-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.proof-media-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.4;
}

.proof-media-card p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 0;
}

/* ── FAQ — contato ── */
.faq-contact {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.faq-contact p {
    font-size: 1rem;
    color: var(--ink-mid);
    font-style: italic;
}

@media (max-width: 768px) {
    .faq-contact {
        align-items: center;
        text-align: center;
    }
}

/* ── Seção O que você vai levar ── */
.takeaway {
    background: var(--off-white);
    border-top: 1px solid var(--rule);
    text-align: center;
}

.takeaway h2 {
    margin-bottom: 8px;
}

.takeaway h2 em {
    color: var(--ink-soft);
}

.takeaway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 44px 0 32px;
    text-align: left;
}

@media (max-width: 720px) {
    .takeaway-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .takeaway-grid {
        grid-template-columns: 1fr;
    }
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 18px 18px;
    transition: box-shadow 0.18s;
}

.takeaway-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tk-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.takeaway-item strong {
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.45;
    font-weight: 600;
}

.takeaway-tagline {
    font-size: 1rem;
    color: var(--ink-soft);
    font-style: italic;
    margin-bottom: 24px;
}

/* ── Fix 13 — Breakpoint extremo 380px (iPhone SE, iPhone mini) ── */
@media (max-width: 380px) {
    .container {
        padding: 0 18px;
    }

    h2 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .vsl-kicker {
        font-size: 0.64rem;
        padding: 4px 12px;
    }

    .vsl-sub {
        font-size: 0.97rem;
    }

    .vsl-checklist {
        padding: 10px 12px;
        flex-wrap: wrap;
        white-space: normal;
    }

    .vsl-checklist li {
        font-size: 0.9rem;
        padding: 4px 10px;
        white-space: normal;
    }

    .btn-ghost-white {
        padding: 14px 28px;
        font-size: 0.92rem;
    }

    .id-poem {
        padding: 24px 18px;
    }

    .id-check {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .id-conclusion {
        padding: 20px 18px;
    }

    .idc-main {
        font-size: clamp(1.15rem, 6vw, 1.5rem);
    }

    .problem-statement {
        padding: 22px 18px;
    }

    .ps-bold {
        font-size: clamp(1.1rem, 5.5vw, 1.4rem);
    }

    .outcomes-strip {
        padding: 24px 20px;
    }

    .offer-card-top {
        padding: 22px 16px 18px;
    }

    .offer-includes {
        padding: 18px 16px;
    }

    .btn-checkout {
        margin: 16px auto 12px;
        font-size: 0.95rem;
    }

    .offer-guarantee {
        padding: 14px 16px;
    }

    .fp-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .btn-final {
        font-size: 0.95rem;
    }

    .faq-q {
        font-size: 0.97rem;
    }

    .takeaway-grid {
        gap: 8px;
    }

    .takeaway-item {
        padding: 14px 14px;
    }
}

/* ══════════════════════════════════════
   NOVOS ELEMENTOS DE DESIGN
   ══════════════════════════════════════ */

/* ── 1. Progress bar de leitura ── */
.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    z-index: 201;
}

.read-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--coral);
    transition: width 0.1s linear;
}

/* ── 2. Scroll indicator ── */
.scroll-indicator {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    animation: scrollBounce 1.8s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.75;
    }

    50% {
        transform: translateY(7px);
        opacity: 1;
    }
}

/* ── 3. Countdown timer ── */
.offer-countdown {
    max-width: 500px;
    margin: 0 auto 36px;
    text-align: center;
}

.ocd-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.64);
    margin-bottom: 14px;
}

.ocd-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ocd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 20px;
    min-width: 80px;
}

.ocd-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.04em;
}

.ocd-sub {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 4px;
}

.ocd-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.44);
    line-height: 1;
    margin-bottom: 18px;
}

@media (max-width: 480px) {
    .ocd-unit {
        min-width: 64px;
        padding: 10px 14px;
    }

    .ocd-num {
        font-size: 1.9rem;
    }
}

/* ── 4. Selos visuais ── */
.offer-seals {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 16px 20px 20px;
    border-top: 1px solid var(--rule);
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border-right: 1px solid var(--rule);
    text-align: center;
    flex: 1;
}

.seal-item:last-child {
    border-right: none;
}

.seal-icon {
    width: 22px;
    height: 22px;
    color: var(--ink-soft);
    stroke: var(--ink-soft);
}

.seal-item span {
    font-size: 0.7rem;
    color: var(--ink-soft);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .seal-item {
        padding: 0 8px;
    }

    .seal-item span {
        font-size: 0.62rem;
    }
}

/* ── 5. Sticky CTA mobile ── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    /* 19/09/2026: camada própria, para o Safari do iPhone não redesenhar a barra a cada
       quadro da rolagem (piscava). Piloto validado no e-book no mesmo dia. */
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-cta-logo {
    height: 42px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 360px) {
    .sticky-cta-logo {
        height: 44px;
    }
}

.sticky-cta-btn {
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    background: var(--coral);
    color: white;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.22s;
    flex-shrink: 0;
    box-shadow: 0 3px 0 rgba(180, 50, 20, 0.5), 0 4px 12px rgba(255, 87, 51, 0.3);
}

.sticky-cta-btn:hover {
    background: var(--coral-h);
    transform: translateY(-2px);
    box-shadow: 0 5px 0 rgba(180, 50, 20, 0.45), 0 8px 20px rgba(255, 87, 51, 0.4);
}

.sticky-cta-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(180, 50, 20, 0.5), 0 2px 6px rgba(255, 87, 51, 0.25);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
}

/* ── 6. Hover nos módulos — revelação de detalhe ── */
.module-item {
    position: relative;
    cursor: default;
}

.mod-extra {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--rule);
    line-height: 1.55;
}

/* Detalhe dos módulos sempre visível: sem expansão ao passar o mouse (desktop, tablet e mobile). */

@media (max-width: 768px) {
    .vsl-hero {
        background-attachment: scroll;
    }

    .final-punch {
        background-attachment: scroll;
    }
}

/* ── Countdown expirado ── */
.ocd-expired {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.ocd-expired-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 6px;
}

.ocd-expired-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 14px;
}

.ocd-expired-link {
    font-size: 0.88rem;
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.ocd-expired-link:hover {
    opacity: 0.75;
}

/* ── Marquee de credenciais — seção about ── */
.creds-marquee {
    margin-top: 28px;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    max-width: 520px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 780px) {
    .creds-marquee {
        max-width: 100%;
    }
}

.creds-marquee .zd-track {
    color: var(--ink-mid);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    animation-duration: 50.8s;
}

.creds-marquee .zd-dot {
    color: var(--rule);
}

/* ── Focus states — acessibilidade por teclado ── */
:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
}

.btn-ghost-white:focus-visible,
.btn-ghost-dark:focus-visible {
    outline-color: var(--white);
}

.btn-method-cta:focus-visible {
    outline-color: var(--black);
}

.btn-checkout:focus-visible,
.btn-final:focus-visible,
.sticky-cta-btn:focus-visible {
    outline-color: var(--coral-dk);
}

/* ═══════════════════════════════════════
   AJUSTES DE CONVERSÃO — v2.0
   ═══════════════════════════════════════ */

/* ── Micro-autoridade hero (Super Cold) ── */
.vsl-authority-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0 auto 32px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    max-width: 680px;
    flex-wrap: wrap;
}

.vsl-auth-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}

.vsl-auth-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.04em;
}

.vsl-auth-label {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.vsl-auth-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.vsl-auth-cred {
    width: 100%;
    text-align: center;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.58);
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: 4px;
    line-height: 1.5;
}

@media (max-width: 540px) {
    .vsl-authority-bar {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        padding: 10px 14px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .vsl-auth-stat {
        flex: 1;
        gap: 2px;
        padding: 0 6px;
    }

    .vsl-auth-divider {
        width: 1px;
        height: 28px;
        display: block;
    }

    .vsl-auth-num {
        font-size: 1.35rem;
    }

    .vsl-auth-label {
        font-size: 0.62rem;
        letter-spacing: 0.03em;
        white-space: normal;
        line-height: 1.2;
    }

    .vsl-auth-cred {
        display: none;
    }
}

/* ── Diagnóstico — bloco destaque (soco visual) ── */
.poem-diagnosis-punch {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 3px solid var(--white);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 0;
}

.poem-diagnosis-punch p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.55;
    margin: 0;
    font-style: italic;
}

.poem-diagnosis-punch strong {
    color: var(--white);
    font-style: normal;
    font-weight: 700;
}

/* ── Depoimentos — avatares e credenciais visuais ── */
.t-avatar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.90);
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.t-avatar-dark {
    background: rgba(0, 0, 0, 0.08);
    color: var(--ink-mid);
    border-color: var(--rule);
}

.t-avatar-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.t-author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.t-author-name-dark {
    color: var(--ink);
}

.t-author-detail {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
}

.t-author-detail-dark {
    color: var(--ink-soft);
}

.t-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.t-badge-dark {
    background: var(--off-white);
    color: var(--ink-soft);
    border-color: var(--rule);
}

.t-result-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 87, 51, 0.15);
    color: var(--coral-h);
    border: 1px solid rgba(255, 87, 51, 0.25);
}

.t-result-tag-dark {
    background: rgba(0, 0, 0, 0.05);
    color: var(--ink-mid);
    border-color: var(--rule);
}

/* ── Prova científica — frase âncora ── */
.proof-anchor {
    margin-bottom: 36px;
    padding: 16px 24px;
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--ink);
    border-radius: 10px;
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: break-word;
}

/* ── Ancoragem de preço ── */
.price-anchor {
    max-width: 620px;
    margin: 0 auto 36px;
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-align: left;
}

.price-anchor p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.68;
    margin-bottom: 14px;
}

.price-anchor p:last-child {
    margin-bottom: 0;
}

.price-anchor strong {
    color: rgba(255, 255, 255, 0.96);
}

.price-anchor-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.6vw, 1.5rem) !important;
    font-style: italic;
    color: var(--white) !important;
    line-height: 1.4 !important;
    margin-bottom: 18px !important;
}

.price-anchor-close {
    color: rgba(255, 255, 255, 0.92) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    margin-top: 4px;
}

/* ── Bloco de preço destacado ── */
.offer-price-block {
    padding: 24px 32px 20px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
}

.offer-price-from {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.offer-price-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--ink);
    line-height: 1;
    letter-spacing: 0.02em;
}

.offer-price-currency {
    font-size: 2rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.offer-price-or {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin: 6px 0 2px;
}

.offer-price-installment {
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 700;
}

.offer-price-installment span {
    color: var(--ink-soft);
    font-weight: 400;
    font-size: 0.9rem;
}

.offer-price-savings {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(255, 87, 51, 0.1);
    color: var(--coral);
    border: 1px solid rgba(255, 87, 51, 0.2);
    text-transform: uppercase;
}

/* ── Vagas/escassez dinâmica ── */
.offer-scarcity {
    max-width: 500px;
    margin: 0 auto 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 87, 51, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-scarcity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
    animation: pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.offer-scarcity p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.4;
}

.offer-scarcity strong {
    color: var(--coral-h);
}

/* ── Sticky CTA — texto alternado ── */

/* ── Embasamento científico — URL visível sem link ── */
.proof-url {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--ink-soft);
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.45;
    font-style: normal;
    font-weight: 400;
    max-width: 100%;
}

.proof-media-card .proof-url {
    font-size: 0.72rem;
    color: var(--ink-soft);
    margin-top: 4px;
}

@media (max-width: 480px) {
    .proof-card {
        padding: 22px 16px;
    }

    .proof-media-card {
        padding: 16px 14px;
        gap: 12px;
    }

    .proof-anchor {
        padding: 14px 16px;
    }

    .proof h2 {
        overflow-wrap: break-word;
    }
}

/* =============================================
   MÓDULOS — Grade nova (3 colunas: card | conector | card)
   Substitui .modules-grid. Usa as mesmas CSS variables do Design System MNA.
   ============================================= */

.mna-modules {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    column-gap: 0;
    row-gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

/* Linha vertical contínua conectando todos os módulos.
   Centro da coluna de 60px = exatamente 50% do container (1fr + 30px = 50%). */
.mna-modules::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(10,10,10,0.14) 6%,
        rgba(10,10,10,0.14) 94%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Nó do conector */
.mna-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    align-self: center;
}

.mna-connector::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid rgba(10,10,10,0.32);
    box-shadow: 0 2px 8px rgba(10,10,10,0.1);
    flex-shrink: 0;
    transition: border-color 0.22s, transform 0.22s;
}

/* Conectores exclusivos do mobile */
.mna-connector--mobile-only {
    display: none;
}

/* Card individual */
.mna-card {
    position: relative;
    padding: 40px 36px 44px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10,10,10,0.055);
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    align-self: stretch;
}

.mna-card:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(10,10,10,0.1);
}

/* Wrapper com overflow:hidden próprio — protege o card de ser cortado */
.mna-ghost-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 12px;
}

/* Número fantasma decorativo */
.mna-ghost {
    position: absolute;
    top: -18px;
    right: -8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6.5rem, 11vw, 10rem);
    line-height: 1;
    color: rgba(10,10,10,0.045);
    letter-spacing: 0.02em;
    user-select: none;
    transition: color 0.28s ease;
}

.mna-card:hover .mna-ghost {
    color: rgba(10,10,10,0.075);
}

.mna-card-inner {
    position: relative;
    z-index: 1;
}

/* Badge do módulo */
.mna-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px 4px;
    border: 1.5px solid rgba(10,10,10,0.2);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 22px;
    transition: border-color 0.22s, background 0.22s;
}

.mna-card:hover .mna-badge {
    border-color: rgba(10,10,10,0.40);
    background: rgba(10,10,10,0.04);
}

/* Título do card */
.mna-card h3 {
    min-height: 78px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
    color: var(--black);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

/* Lista de benefícios */
.mna-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.mna-card li {
    position: relative;
    padding-left: 30px;
    color: var(--ink-mid);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.57;
}

.mna-card li::before {
    content: '✓';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

/* ---- Responsividade mobile ---- */
@media (max-width: 768px) {
    .mna-modules {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .mna-modules::before { display: none; }

    .mna-connector--mobile-only { display: flex; }

    .mna-connector {
        height: 44px;
        position: relative;
    }

    .mna-connector::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(10,10,10,0.14);
        transform: translateX(-50%);
        z-index: 0;
    }

    .mna-connector::after {
        position: relative;
        z-index: 1;
    }

    .mna-card h3 {
        min-height: auto;
        align-items: flex-start;
    }

    .mna-card:hover { transform: none; }
}

@media (max-width: 480px) {
    .mna-card { padding: 28px 20px 34px; }
    .mna-ghost { font-size: 5.8rem; }
}

/* ════════════════════════════════════════════════════════════
   APRIMORAMENTO DOS CTAS — relevo, seta e brilho (2026-06-19)
   ════════════════════════════════════════════════════════════ */

/* Seta animada nos CTAs */
.cta-ar {
    display: inline-block;
    will-change: transform;
    animation: mnaCtaArrow 1.5s ease-in-out infinite;
}
@keyframes mnaCtaArrow {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(4px); }
}

/* Relevo "tecla física" nos botões fantasma de fundo escuro (#2, #3, #5).
   No preto a sombra escura some, então a profundidade vem da luz:
   brilho no topo, base clara embaixo e sombra de separação. */
.cta-relevo {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.40),
        0 5px 0 rgba(255, 255, 255, 0.14),
        0 7px 3px rgba(0, 0, 0, 0.45),
        0 16px 24px rgba(0, 0, 0, 0.55);
}

/* Sombra 3D reforçada nos botões de fundo claro/coral (#1, #4, #7) */
.header-pill {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16), 0 8px 16px rgba(0, 0, 0, 0.12);
}
.btn-method-cta {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.30), 0 9px 16px rgba(0, 0, 0, 0.14);
}
.btn-final {
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.28), 0 11px 22px rgba(0, 0, 0, 0.30);
}
/* CTA "Destravar meu jogo agora" (zona clara), escopo só na seção takeaway */
.takeaway .btn-ghost-dark {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16), 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Linha de segurança sob os CTAs de zona escura (#3 e #5) */
.cta-safe-dark {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.60);
}
.viz-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Sticky mobile: preço-âncora + brilho que cruza */
.sticky-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex-shrink: 0;
}
.sticky-cta-price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1.3;
    letter-spacing: 0.02em;
}
.sticky-cta-btn {
    position: relative;
    overflow: hidden;
}
.sticky-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: translateX(-180%) skewX(-18deg);
    animation: mnaStickyShine 4.2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes mnaStickyShine {
    0%        { transform: translateX(-180%) skewX(-18deg); }
    55%, 100% { transform: translateX(320%) skewX(-18deg); }
}

/* Respeita a preferência de reduzir movimento */
@media (prefers-reduced-motion: reduce) {
    .cta-ar { animation: none !important; }
    .sticky-cta-btn::after { animation: none !important; opacity: 0; }
}
