/* ═══════════════════════════════════════════════════════════════
   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;
}

/* ─── 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);
    backdrop-filter: blur(16px);
    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;
    background-attachment: fixed;
}

.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.38);
    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.5);
    line-height: 1.25;
}

.line-bold {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 8vw, 6.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    color: var(--white);
}

.vsl-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    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.35);
}

/* 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.28);
    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.5);
    animation-duration: 20.4s;
}

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

.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: 14px 0;
}

.trust-rail-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 18px;
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
}

.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);
}

.t-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.t-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--rule);
    position: relative;
}

.t-large {
    background: var(--black);
    border-color: transparent;
}

.t-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 0;
    color: rgba(0, 0, 0, 0.06);
    position: absolute;
    top: 28px;
    left: 24px;
}

.t-large::before {
    color: rgba(255, 255, 255, 0.06);
}

.t-card blockquote {
    font-size: 1.02rem;
    color: var(--ink-mid);
    line-height: 1.72;
    font-style: italic;
    padding-top: 14px;
    margin-bottom: 16px;
}

.t-large blockquote {
    color: rgba(255, 255, 255, 0.78);
}

.t-stars {
    color: #C8A84B;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

cite {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-soft);
    font-style: normal;
}

.t-large cite {
    color: rgba(255, 255, 255, 0.4);
}

/* ══════════════════════════════════════
   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;
}

.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.45);
    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);
}

/* 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.55);
    line-height: 1.6;
}

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

/* About */
.about {
    background: var(--off-white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 88px 0;
}

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

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 220px 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;
}

.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;
}

/* 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;
    }
}

.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-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(--rule);
    font-weight: 800;
    flex-shrink: 0;
}

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

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

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

.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: 680px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

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

.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;
}

.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.55);
}

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

/* 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.35);
}

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

.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.75);
    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.35);
}

@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: 0 auto;
    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.78);
    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.88);
    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;
    margin: 24px 28px 16px;
    padding: 18px;
    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: nowrap;
}

.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;
    background-attachment: fixed;
}

.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.6);
    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.28);
    line-height: 1.7;
}

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

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

.footer-contact {
    color: rgba(255, 255, 255, 0.22) !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 20px 14px;
    }

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

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vsl-hero .container>* {
    animation: fadeUp 0.55s both;
}

.vsl-hero .container>*:nth-child(1) {
    animation-delay: 0.06s;
}

.vsl-hero .container>*:nth-child(2) {
    animation-delay: 0.14s;
}

.vsl-hero .container>*:nth-child(3) {
    animation-delay: 0.22s;
}

.vsl-hero .container>*:nth-child(4) {
    animation-delay: 0.30s;
}

.vsl-hero .container>*:nth-child(5) {
    animation-delay: 0.38s;
}

/* ══════════════════════════════════════════════════════════
   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.55);
    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.2);
    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.28);
    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.75);
    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.72);
    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.52);
    line-height: 1.65;
    margin: 0;
}

.poem-diagnosis strong {
    color: rgba(255, 255, 255, 0.82);
    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.38);
    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;
    }
}

/* ── 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;
}

/* ── 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.55);
    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.25);
    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.35);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.15);
}

.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.88);
    font-weight: 600;
}

/* ── Final punch — micro abaixo do CTA ── */
.fp-micro {
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    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.35);
}

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

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

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

.viz-grid {
    display: grid;
    grid-template-columns: repeat(3, 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: 680px) {
    .viz-grid {
        grid-template-columns: 1fr;
    }
}

.viz-card {
    padding: 32px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.18s;
}

.viz-card:last-child {
    border-right: 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.1);
    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.5);
    margin-bottom: 14px;
}

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

.viz-science {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    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.72);
    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;
}

.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;
}

/* ── 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 16px 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: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
    animation: scrollBounce 1.8s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(6px);
        opacity: 0.7;
    }
}

/* ── 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.35);
    margin-bottom: 14px;
}

.ocd-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    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.3);
    margin-top: 4px;
}

.ocd-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    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;
}

.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: none;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--rule);
    line-height: 1.55;
    animation: fadeUp 0.22s both;
}

.module-item:hover .mod-extra {
    display: block;
}

@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.7);
    margin-bottom: 6px;
}

.ocd-expired-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.38);
    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.42);
    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.3);
    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.9);
    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.7);
    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.4);
    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.6);
    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;
}

/* ── Ancoragem de preço ── */
.price-anchor {
    max-width: 500px;
    margin: 0 auto 20px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
}

.price-anchor p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

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

/* ── 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.6);
    line-height: 1.4;
}

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

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