/* ============================================================
   MEU MARIDO PROVEDOR EM 30 DIAS
   Design system: editorial de luxo em vinho profundo
   Tipografia: Bodoni Moda (display) + Lato (texto)
   ============================================================ */

:root {
    /* Paleta vinho (referências) */
    --wine-950: #1C0509;
    --wine-900: #2A080F;
    --wine-800: #401117;
    --wine-700: #570E19;
    --crimson: #841524;
    --pink: #CB2E4F;
    --pink-soft: #E2545E;

    /* Claros */
    --champagne: #FCE8E1;
    --nude: #F6E7DC;
    --nude-deep: #EFD9C9;
    --taupe: #9C7E6E;
    --gold: #D8A26B;

    /* Texto */
    --text-light: #FCE8E1;
    --text-light-muted: rgba(252, 232, 225, 0.82);
    --text-dark: #401117;
    --text-dark-muted: #7A4A3A;

    /* Tipografia */
    --font-display: 'Playfair Display', 'Didot', serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;

    /* Espaços */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: clamp(5rem, 10vw, 8rem);

    /* Bordas e sombras */
    --radius-md: 16px;
    --radius-lg: 28px;
    --hairline-light: 1px solid rgba(252, 232, 225, 0.12);
    --hairline-pink: 1px solid rgba(203, 46, 79, 0.35);
    --shadow-deep: 0 30px 60px rgba(0, 0, 0, 0.45);
    --glow-pink: 0 0 60px rgba(203, 46, 79, 0.25);
    --glow-cta: 0 0 45px rgba(252, 232, 225, 0.30);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-light);
    background-color: var(--wine-950);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: var(--pink); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--wine-950); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

h1, h2, h3, .hl {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: var(--sp-md);
    letter-spacing: 0.005em;
}

h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }

h2 em {
    font-style: italic;
    color: var(--pink-soft);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
    position: relative;
    z-index: 2;
}

/* ---------- Destaques monocromáticos (hierarquia de leitura) ---------- */
/* Em seções escuras: frase-chave em champagne com leve brilho */
.mark-dark {
    color: var(--champagne);
    font-weight: 700;
    text-shadow: 0 0 22px rgba(252, 232, 225, 0.28);
}

/* Em seções escuras: ênfase rosé */
.mark-pink {
    color: var(--pink-soft);
    font-weight: 700;
}

/* Em seções claras: efeito marca-texto rosé + carmim */
.mark-light {
    color: var(--crimson);
    font-weight: 700;
    background: linear-gradient(180deg, transparent 60%, rgba(203, 46, 79, 0.18) 60%);
    padding: 0 3px;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

section, header.hero { position: relative; overflow: hidden; }

/* ---------- Barra de progresso de leitura ---------- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(252, 232, 225, 0.08);
    z-index: 1000;
}
.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--crimson), var(--pink), var(--pink-soft));
    box-shadow: 0 0 12px rgba(203, 46, 79, 0.8);
    transition: width 0.1s linear;
}

/* ---------- Reveal no scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

/* ---------- CTA champagne com glow ---------- */
.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFF8F2 0%, var(--champagne) 55%, #F3D5C8 100%);
    color: var(--wine-700);
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(0.92rem, 2.6vw, 1.05rem);
    letter-spacing: 0.05em;
    text-wrap: balance;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.3rem 2.2rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 430px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(252, 232, 225, 0.25),
        0 14px 35px rgba(0, 0, 0, 0.45),
        var(--glow-cta);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(252, 232, 225, 0.4),
        0 20px 45px rgba(0, 0, 0, 0.5),
        0 0 70px rgba(252, 232, 225, 0.45);
}

.pulse { animation: pulse 2.6s infinite; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.025); box-shadow: 0 0 0 1px rgba(252,232,225,0.35), 0 16px 40px rgba(0,0,0,0.5), 0 0 80px rgba(252,232,225,0.4); }
}

/* ---------- Imagens base ---------- */
.hero-logo-simples {
    max-width: 190px;
    height: auto;
    margin: 0 auto 1.1rem auto;
    display: block;
    filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.4));
}

.content-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    object-fit: cover;
}

/* Moldura editorial: bloco carmim deslocado atrás da foto */
.framed-img {
    position: relative;
    isolation: isolate;
    display: inline-block;
    max-width: 100%;
}
.framed-img::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: -20px; bottom: -20px;
    background: var(--crimson);
    border-radius: var(--radius-md);
    z-index: -1;
}
.framed-img img {
    border: 1px solid rgba(252, 232, 225, 0.25);
    box-shadow: var(--shadow-deep);
}

/* ---------- Divisores (linha + coração guiando o olho) ---------- */
.section-divider {
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 10;
}
.divider-line {
    width: clamp(40px, 12vw, 130px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 46, 79, 0.6));
    transform: translateY(-50%);
}
.divider-line:last-child {
    background: linear-gradient(90deg, rgba(203, 46, 79, 0.6), transparent);
}
.floating-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: radial-gradient(circle at 30% 30%, var(--crimson), var(--wine-800));
    border: 1px solid rgba(203, 46, 79, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-soft);
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow-pink);
    animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(203, 46, 79, 0.5); }
    70% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 22px rgba(203, 46, 79, 0); }
    100% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(203, 46, 79, 0); }
}

/* ============================================================
   BLOCO 01: HERO
   ============================================================ */
.hero {
    background:
        radial-gradient(ellipse at 50% -20%, rgba(132, 21, 36, 0.55), transparent 60%),
        linear-gradient(165deg, var(--wine-900) 0%, var(--wine-950) 70%);
    color: var(--text-light);
    padding: var(--sp-lg) 0 5.6rem 0;
    text-align: center;
    min-height: 78vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: -10% 0;
    background: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1800&q=70') center 30% / cover no-repeat;
    filter: grayscale(1) contrast(1.1) brightness(0.85);
    opacity: 0.14;
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
    mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
    will-change: transform;
    z-index: 0;
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(28, 5, 9, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero h1 {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin: 0 auto var(--sp-md) auto;
    max-width: 900px;
}

.hero .highlight {
    font-style: italic;
    color: var(--pink-soft);
    position: relative;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    text-decoration-color: rgba(232, 84, 94, 0.55);
}

.hero .sub-headline {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--text-light-muted);
    margin: 0 auto var(--sp-lg) auto;
    max-width: 720px;
}

.antes-depois-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.antes, .depois { flex: 1; max-width: 600px; }

@media (min-width: 768px) {
    .antes-depois-container { gap: var(--sp-lg); }
}

@media (max-width: 600px) {
    .antes-depois-container { gap: 0.7rem; }
    .antes, .depois { padding-top: 10px; }
}

.antes, .depois { position: relative; padding-top: 16px; }

.antes .content-img, .depois .content-img {
    border: 1px solid rgba(252, 232, 225, 0.15);
    box-shadow: var(--shadow-deep);
}
.antes .content-img { filter: saturate(0.55) brightness(0.92); }
.depois .content-img { box-shadow: var(--shadow-deep), 0 0 50px rgba(252, 232, 225, 0.12); }

.antes .label, .depois .label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(0.5rem, 1.05vw, 0.72rem);
    letter-spacing: clamp(0.1em, 0.3vw, 0.22em);
    padding: clamp(0.35rem, 0.9vw, 0.6rem) clamp(0.65rem, 1.8vw, 1.3rem);
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
}

.antes .label {
    color: #FFEDE9;
    background: linear-gradient(180deg, #C8102E, var(--crimson));
    border: 1px solid rgba(255, 120, 120, 0.45);
    box-shadow: 0 0 25px rgba(200, 16, 46, 0.45);
}

.depois .label {
    color: #EAFFF2;
    background: linear-gradient(180deg, #2FA36B, #1E7A4C);
    border: 1px solid rgba(120, 230, 170, 0.45);
    box-shadow: 0 0 25px rgba(47, 163, 107, 0.45);
}

/* Pista de rolagem */
.scroll-cue {
    position: absolute;
    bottom: -3.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(216, 162, 107, 0.45);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 25%, rgba(216, 162, 107, 0.14), transparent 70%);
    box-shadow: 0 0 26px rgba(216, 162, 107, 0.18), inset 0 0 14px rgba(216, 162, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    animation: cueBounce 2.2s infinite;
}
@keyframes cueBounce {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
    50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================================
   BLOCO 02: DOR / RUMINAÇÃO
   ============================================================ */
.dor {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(132, 21, 36, 0.35), transparent 55%),
        var(--wine-900);
    padding: var(--sp-xl) 0;
}

.dor-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1529634597503-139d3726fed5?auto=format&fit=crop&w=1600&q=60') center / cover no-repeat;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.07;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
    pointer-events: none;
}

.dor h2 {
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: var(--champagne);
}

.dor .subline {
    text-align: center;
    color: var(--text-light-muted);
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.rumination-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--sp-md) 0 var(--sp-lg) 0;
}

.rumination-img {
    max-width: 520px;
    width: 100%;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(252, 232, 225, 0.18);
    box-shadow: var(--shadow-deep), 0 0 80px rgba(132, 21, 36, 0.45);
}

.qbox {
    background: linear-gradient(165deg, rgba(64, 17, 23, 0.92), rgba(28, 5, 9, 0.94));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 232, 225, 0.18);
    border-left: 3px solid var(--pink);
    padding: 1.25rem 1.55rem;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.5;
    color: var(--champagne);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 310px;
    z-index: 2;
}

.box-tl, .box-bl, .box-tr, .box-br {
    position: absolute;
    margin: 0;
}

@media (min-width: 768px) {
    .box-tl { top: 8%;    right: calc(50% + 230px); }
    .box-bl { bottom: 14%; right: calc(50% + 218px); }
    .box-tr { top: 14%;   left: calc(50% + 234px); }
    .box-br { bottom: 8%;  left: calc(50% + 218px); }
}

@media (min-width: 768px) and (max-width: 1080px) {
    .rumination-img { max-width: 360px; }
    .qbox { max-width: 225px; font-size: 0.96rem; padding: 0.85rem 1.05rem; }
    .box-tl { top: 10%;    right: calc(50% + 190px); }
    .box-bl { bottom: 16%; right: calc(50% + 182px); }
    .box-tr { top: 16%;   left: calc(50% + 194px); }
    .box-br { bottom: 10%; left: calc(50% + 182px); }
}

/* Mobile/tablet estreito: balões largos e rasos, foto maior, proporcional */
@media (max-width: 767px) {
    .dor { padding-bottom: 2rem; }
    .rumination-container { padding-bottom: 0.75rem; }
    .rumination-img { max-width: 80%; }
    .qbox {
        max-width: 49%;
        font-family: var(--font-body);
        font-style: normal;
        font-weight: 600;
        font-size: clamp(0.86rem, 2.4vw, 1.14rem);
        line-height: 1.4;
        padding: 0.72rem 0.95rem;
        border-left-width: 2px;
    }
    .box-tl {
        top: 11%; left: 0.4rem; right: auto;
        max-width: 40%;
        font-size: clamp(0.74rem, 2vw, 0.94rem);
        padding: 0.55rem 0.75rem;
    }
    .box-tr {
        top: 13%; right: 0.4rem; left: auto;
        max-width: 40%;
        font-size: clamp(0.76rem, 2vw, 0.96rem);
        padding: 0.56rem 0.76rem;
    }
    .box-bl { bottom: 16%; right: calc(50% + 12%); left: auto; }
    .box-br { bottom: 11%; left: calc(50% + 11%);  right: auto; }
}

/* ============================================================
   BLOCO 03: TRANSIÇÃO  (interrupção de padrão: seção clara)
   ============================================================ */
.transicao {
    background:
        radial-gradient(rgba(87, 14, 25, 0.05) 1.5px, transparent 1.5px) 0 0 / 28px 28px,
        linear-gradient(180deg, var(--nude) 0%, var(--nude-deep) 100%);
    color: var(--text-dark);
    padding: var(--sp-xl) 0;
}

/* Barra dinâmica no topo (marquee) */
.ticker {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--wine-700), var(--crimson) 50%, var(--wine-700));
    border-bottom: 1px solid rgba(203, 46, 79, 0.5);
    box-shadow: 0 10px 30px rgba(87, 14, 25, 0.3);
    padding: 0.85rem 0;
    z-index: 3;
}

.ticker-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: tickerScroll 22s linear infinite;
}

.ticker-track span {
    color: var(--champagne);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.alert-badge {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    background: radial-gradient(circle at 30% 30%, var(--pink), var(--crimson));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(132, 21, 36, 0.45);
    animation: glowPulse 2.4s infinite alternate;
}
.alert-badge::before, .alert-badge::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(203, 46, 79, 0.35);
}
.alert-badge::before { inset: -12px; }
.alert-badge::after { inset: -24px; border-color: rgba(203, 46, 79, 0.18); }
.alert-badge svg { width: 34px; height: 34px; }

@keyframes glowPulse {
    0% { filter: drop-shadow(0 0 4px rgba(203, 46, 79, 0.25)); transform: scale(0.97); }
    100% { filter: drop-shadow(0 0 22px rgba(203, 46, 79, 0.6)); transform: scale(1.03); }
}

.transicao .intro {
    font-family: var(--font-body);
    font-size: clamp(1.12rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--wine-800);
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.transicao .intro strong {
    font-style: italic;
    font-weight: 600;
    color: var(--pink);
}

/* Frase de impacto: contraste por TAMANHO */
.intro-punch {
    display: block;
    margin-top: 1.8rem;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.25;
    font-weight: 500;
    color: var(--wine-700);
}
.intro-punch em {
    font-style: italic;
    color: var(--pink);
    position: relative;
    white-space: nowrap;
}
.intro-punch em::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -5px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

@media (max-width: 640px) {
    .intro-punch em { white-space: normal; }
}

/* Conector vertical: guia o olho até a pergunta */
.ask-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2.2rem 0;
}
.conn-top {
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, transparent, rgba(203, 46, 79, 0.65));
    margin-bottom: 1.6rem;
}
.conn-bottom {
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, rgba(203, 46, 79, 0.65), transparent);
    margin-top: 1.6rem;
}

/* Card escuro sobre fundo nude: contraste por COR */
.ask-box {
    background:
        radial-gradient(ellipse at 85% 0%, rgba(203, 46, 79, 0.25), transparent 55%),
        linear-gradient(165deg, var(--wine-800), var(--wine-950) 85%);
    border: 1px solid rgba(203, 46, 79, 0.45);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4.5vw, 3.2rem);
    position: relative;
    text-align: left;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(64, 17, 23, 0.35), 0 0 80px rgba(203, 46, 79, 0.18);
}

.ask-box h2 {
    color: var(--champagne);
    font-size: clamp(1.7rem, 3.2vw, 2.2rem);
    text-align: center;
    margin-bottom: 1.8rem;
}

.ask-row {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: rgba(252, 232, 225, 0.05);
    border: 1px solid rgba(252, 232, 225, 0.13);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 0.9rem;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.ask-row:hover {
    border-color: rgba(203, 46, 79, 0.5);
    background: rgba(252, 232, 225, 0.08);
    transform: translateX(5px);
}

.ask-ico {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--crimson));
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 16px rgba(203, 46, 79, 0.45);
}

.ask-row p {
    font-size: 1.08rem;
    color: rgba(252, 232, 225, 0.9);
    line-height: 1.6;
    text-wrap: pretty;
}

/* Destaques dentro do card escuro */
.ask-box .mark-light {
    color: var(--pink-soft);
    background: rgba(203, 46, 79, 0.16);
    padding: 0 1px;
}

/* Mobile: texto encaixado na caixa, linhas cheias */
@media (max-width: 767px) {
    .ask-box { padding: 1.6rem 1rem; }
    .ask-box h2 { font-size: 1.5rem; margin-bottom: 1.2rem; }
    .ask-row { padding: 0.9rem 0.95rem; gap: 0.65rem; }
    .ask-ico { width: 26px; height: 26px; font-size: 0.85rem; margin-top: 1px; }
    .ask-row p { font-size: 0.95rem; line-height: 1.55; }
    .ask-final { font-size: 0.95rem; padding: 1rem 1.1rem; }
}

/* Fechamento "SIM": barra champagne — antecipa o CTA */
.ask-final {
    margin-top: 1.6rem;
    background: linear-gradient(180deg, #FFF8F2, var(--champagne));
    color: var(--wine-700);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: 1.3rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(252, 232, 225, 0.25);
}
.ask-final strong { color: var(--pink); }

/* ============================================================
   BLOCO 05: BENEFÍCIOS
   ============================================================ */
.beneficios {
    background:
        radial-gradient(ellipse at 50% 110%, rgba(132, 21, 36, 0.5), transparent 60%),
        linear-gradient(180deg, var(--wine-800), var(--wine-900));
    color: var(--text-light);
    padding: var(--sp-xl) 0;
    text-align: center;
}

.beneficios-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1474552226712-ac0f0961a954?auto=format&fit=crop&w=1600&q=60') center / cover no-repeat;
    filter: grayscale(1) brightness(0.75);
    opacity: 0.08;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none;
}

.beneficios h2 {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: var(--champagne);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    margin-top: var(--sp-lg);
}

@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
    background: rgba(28, 5, 9, 0.45);
    border: var(--hairline-light);
    border-top: 1px solid rgba(203, 46, 79, 0.45);
    padding: 2.4rem 1.6rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(203, 46, 79, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), var(--glow-pink);
}

.benefit-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.2rem auto;
    background: radial-gradient(circle at 32% 28%, rgba(203, 46, 79, 0.35), rgba(28, 5, 9, 0.6) 70%);
    border: 1px solid rgba(203, 46, 79, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 22px rgba(203, 46, 79, 0.2), 0 0 35px rgba(203, 46, 79, 0.22);
}
.benefit-icon svg {
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}
.benefit-card:hover .benefit-icon {
    box-shadow: inset 0 0 22px rgba(203, 46, 79, 0.3), 0 0 50px rgba(203, 46, 79, 0.4);
}

.benefit-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--champagne);
    margin-bottom: 0.6rem;
}

.benefit-desc {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(252, 232, 225, 0.68);
}

/* ============================================================
   BLOCO 06: ENTREGÁVEIS
   ============================================================ */
.entregaveis {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(132, 21, 36, 0.35), transparent 55%),
        var(--wine-900);
    color: var(--text-light);
    padding: var(--sp-xl) 0 1px 0;
    overflow: visible;
    z-index: 5;
}

.entregaveis h2 {
    text-align: center;
    color: var(--champagne);
}

.ent-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: fit-content;
    margin: 0 auto 1.2rem auto;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}
.ent-eyebrow::before,
.ent-eyebrow::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 162, 107, 0.9));
}
.ent-eyebrow::after {
    background: linear-gradient(90deg, rgba(216, 162, 107, 0.9), transparent);
}

.entregaveis .ent-head {
    font-size: clamp(2rem, 4.3vw, 3.1rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
    max-width: 860px;
    margin: 0 auto var(--sp-lg) auto;
}

.entregaveis .ent-head .ent-hl {
    font-style: italic;
    color: var(--gold);
    background: linear-gradient(180deg, #F0C98B, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.entregaveis .lead {
    text-align: center;
    margin: 0 auto var(--sp-lg) auto;
    color: var(--text-light-muted);
    font-weight: 400;
    font-size: 1.1rem;
    max-width: 760px;
}

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    max-width: 800px;
    margin: 0 auto;
}

.deliverable-item {
    background: rgba(252, 232, 225, 0.035);
    border: var(--hairline-light);
    border-radius: var(--radius-md);
    padding: var(--sp-md);
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.item-mockup {
    flex: 0 0 220px;
    margin: -0.8rem 0;
}
.item-mockup img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.deliverable-item:hover .item-mockup img { transform: translateY(-5px) scale(1.03); }

.item-mockup-phone { flex-basis: 175px; }

.item-body { flex: 1; min-width: 0; }

.highlight-item { align-items: center; }
.highlight-item .item-mockup { flex-basis: 330px; }

/* Mobile: mockup grande no topo, texto fluindo na largura toda do card */
@media (max-width: 680px) {
    .deliverable-item {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        padding: 1.2rem;
    }
    .item-mockup { flex: none; width: 72%; max-width: 260px; margin: 0; }
    .item-mockup-phone { flex: none; width: 46%; max-width: 175px; }
    .highlight-item .item-mockup { flex: none; width: 94%; max-width: 360px; margin-top: -0.3rem; }
    .item-body { width: 100%; text-align: center; }
    .deliverable-item h3 { font-size: 1.02rem; }
    .d-num { font-size: 1.3rem; }
    .item-body > p:last-child { font-size: 0.88rem; text-wrap: pretty; }
    .item-tag { font-size: 0.6rem; padding: 4px 9px; }
}

/* ---------- Super Bônus: O Primeiro Passo ---------- */
/* O card atravessa a fronteira entre a seção escura e a clara (ponte visual) */
.super-bonus {
    max-width: 980px;
    margin: 4.5rem auto -7rem auto;
    position: relative;
    z-index: 6;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(203, 46, 79, 0.22), transparent 55%),
        linear-gradient(160deg, var(--wine-900), var(--wine-950));
    border: 1px solid rgba(203, 46, 79, 0.5);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.4rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
    position: relative;
    box-shadow: var(--shadow-deep), 0 0 90px rgba(203, 46, 79, 0.22);
}

.sb-pill {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--crimson), var(--pink));
    color: #fff;
    padding: 9px 26px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(203, 46, 79, 0.5);
    animation: pulseGlow 3s infinite;
}

.sb-grid {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.sb-mockup { flex: 1.1; min-width: 0; }
.sb-mockup img { width: 100%; height: auto; display: block; }

.sb-content { flex: 1; min-width: 0; text-align: left; }

.sb-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.26em;
    color: var(--pink-soft);
    border: 1px solid rgba(203, 46, 79, 0.5);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.sb-content h3 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--champagne);
    margin-bottom: 1rem;
}

.sb-desc {
    color: var(--text-light-muted);
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
}

.sb-lessons { display: flex; flex-direction: column; gap: 0.7rem; }

.sb-lesson {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(252, 232, 225, 0.05);
    border: 1px solid rgba(252, 232, 225, 0.12);
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.sb-lesson:hover {
    border-color: rgba(203, 46, 79, 0.5);
    background: rgba(252, 232, 225, 0.08);
    transform: translateX(5px);
}

.sb-num {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--crimson));
    color: #fff;
    font-weight: 900;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 14px rgba(203, 46, 79, 0.4);
}

.sb-lesson p { color: var(--champagne); font-weight: 700; font-size: 1rem; }

@media (max-width: 820px) {
    .sb-grid { flex-direction: column; }
    .sb-content { text-align: center; }
    .sb-lesson { text-align: left; }
    .sb-mockup { max-width: 480px; }
}

.deliverable-item:hover {
    border-color: rgba(203, 46, 79, 0.45);
    background: rgba(252, 232, 225, 0.055);
    transform: translateX(6px);
}

.highlight-item {
    background: linear-gradient(135deg, rgba(203, 46, 79, 0.16), rgba(132, 21, 36, 0.12));
    border: 1px solid rgba(203, 46, 79, 0.55);
    box-shadow: var(--glow-pink);
}

.item-tag {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pink-soft);
    background: rgba(203, 46, 79, 0.12);
    border: 1px solid rgba(203, 46, 79, 0.35);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: var(--sp-sm);
    font-family: var(--font-body);
    font-weight: 900;
}

.highlight-item .item-tag {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.deliverable-item h3 {
    margin-bottom: 6px;
    font-size: 1.35rem;
    color: var(--champagne);
}

.d-num {
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gold);
    margin-right: 0.35rem;
}

.item-value {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: var(--sp-xs);
    font-weight: 700;
}

.strike { text-decoration: line-through; opacity: 0.75; }

.deliverable-item > p:last-child {
    color: var(--text-light-muted);
    font-weight: 400;
}

/* ============================================================
   BLOCO 07: PARA QUEM  (seção clara)
   ============================================================ */
.para-quem {
    background:
        radial-gradient(rgba(87, 14, 25, 0.05) 1.5px, transparent 1.5px) 0 0 / 28px 28px,
        var(--nude);
    color: var(--text-dark);
    padding: calc(var(--sp-xl) + 8.5rem) 0 var(--sp-xl) 0;
}

.pq-title {
    text-align: center;
    color: var(--wine-700);
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: clamp(2rem, 4.4vw, 3rem);
    margin-bottom: 3rem;
}

.pq-grid {
    display: flex;
    align-items: center;
    max-width: 1020px;
    margin: 0 auto;
}

.pq-image {
    flex: 0 0 42%;
    position: relative;
    z-index: 1;
}

.pq-image .content-img {
    max-height: 540px;
    width: 100%;
}

/* As frases avançam sobre a foto: profundidade + linha única de leitura */
.check-list {
    list-style: none;
    flex: 1;
    margin-left: -64px;
    position: relative;
    z-index: 2;
}

.check-list li {
    position: relative;
    background: #FFFDFB;
    border: 1px solid rgba(132, 21, 36, 0.12);
    border-radius: 14px;
    padding: 1.1rem 1.4rem 1.1rem 3.6rem;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    line-height: 1.55;
    box-shadow: 0 14px 35px rgba(87, 14, 25, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.check-list li:hover {
    transform: translateX(6px);
    border-color: rgba(203, 46, 79, 0.4);
    box-shadow: 0 18px 45px rgba(87, 14, 25, 0.18);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--pink), var(--crimson));
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 14px rgba(132, 21, 36, 0.35);
}

/* Mobile: card único com foto no topo e checklist dentro (estrutura da referência) */
@media (max-width: 800px) {
    .pq-grid {
        flex-direction: column;
        gap: 1.2rem;
        background: #FFFDFB;
        border: 1px solid rgba(132, 21, 36, 0.12);
        border-radius: var(--radius-lg);
        padding: 1rem 1.1rem 1.5rem 1.1rem;
        box-shadow: 0 22px 50px rgba(87, 14, 25, 0.14);
    }
    .pq-image { flex: none; width: 100%; max-width: none; }
    .pq-grid .framed-img { display: block; width: 100%; }
    .pq-grid .framed-img::before { display: none; }
    .pq-grid .framed-img img {
        width: 100%;
        max-height: 420px;
        border: none;
        box-shadow: none;
    }
    .check-list { margin-left: 0; width: 100%; margin-bottom: 0; }
    .check-list li {
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0.15rem 0 0.15rem 2.6rem;
        margin-bottom: 1rem;
        font-size: 0.96rem;
        line-height: 1.5;
        text-wrap: pretty;
    }
    .check-list li::before {
        left: 0;
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
    .check-list li:last-child { margin-bottom: 0; }
    .check-list li:hover { transform: none; box-shadow: none; }
    .confirm { font-size: 0.95rem; padding: 1.1rem 1.2rem; margin-top: 1.6rem; }
}

/* Confirmação: barra escura sobre fundo claro — o "sou eu" em destaque */
.confirm {
    max-width: 850px;
    margin: 2.5rem auto 0 auto;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(203, 46, 79, 0.25), transparent 55%),
        linear-gradient(165deg, var(--wine-800), var(--wine-950));
    border: 1px solid rgba(203, 46, 79, 0.45);
    color: rgba(252, 232, 225, 0.9);
    text-align: center;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(64, 17, 23, 0.3), 0 0 60px rgba(203, 46, 79, 0.15);
}
.confirm strong { color: var(--champagne); }

/* ============================================================
   BLOCO 08/09: OFERTA PRINCIPAL
   ============================================================ */
.oferta {
    background:
        radial-gradient(ellipse at 50% 35%, rgba(132, 21, 36, 0.5), transparent 65%),
        var(--wine-950);
    color: var(--text-light);
    padding: var(--sp-xl) 0;
}

.oferta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1518199266791-5375a83190b7?auto=format&fit=crop&w=1600&q=60') center / cover no-repeat;
    filter: grayscale(1) brightness(0.65);
    opacity: 0.07;
    -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
    mask-image: linear-gradient(180deg, #000, transparent 70%);
    pointer-events: none;
}

.oferta-box {
    background: linear-gradient(180deg, var(--wine-900), var(--wine-950));
    border: 1px solid rgba(203, 46, 79, 0.4);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.4rem, 4vw, 3rem);
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-deep), 0 0 100px rgba(203, 46, 79, 0.18);
}

.oferta-box h2 { color: var(--champagne); }

.recap-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    color: var(--pink-soft);
    margin-bottom: var(--sp-md);
}

.price-table {
    background: rgba(0, 0, 0, 0.35);
    border: var(--hairline-light);
    border-radius: var(--radius-md);
    padding: var(--sp-md);
    margin-bottom: 0;
    text-align: left;
}

.table-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(252, 232, 225, 0.07);
    font-size: 0.95rem;
    font-weight: 300;
}

.table-row:last-child { border-bottom: none; }
.table-row.bonus { color: var(--gold); font-weight: 400; }
/* Total da ancoragem em destaque, centralizado */
.total-row {
    margin-top: 1.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(203, 46, 79, 0.5);
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-weight: 700;
    color: var(--champagne);
}

.total-row span:first-child {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

.strike-total {
    text-decoration: line-through;
    color: var(--pink-soft);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    text-shadow: 0 0 35px rgba(226, 84, 94, 0.35);
}

.teaser {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    text-align: center;
}

/* Mobile: Recapitulando compacto e responsivo */
@media (max-width: 680px) {
    .oferta-box { padding: 1.6rem 1rem; }
    .oferta-box h2 { font-size: 1.45rem; }
    .recap-title { font-size: 0.62rem; letter-spacing: 0.16em; margin-bottom: 1.2rem; }
    .price-table { padding: 1rem 0.9rem; }
    .table-row { font-size: 0.82rem; gap: 0.6rem; padding: 0.5rem 0; align-items: baseline; }
    .table-row span:first-child { flex: 1; text-align: left; text-wrap: pretty; }
    .table-row .strike { white-space: nowrap; }
    .total-row { margin-top: 1rem; padding-top: 1.2rem; align-items: center; text-align: center; }
    .total-row span:first-child { font-size: 1.35rem; flex: none; text-align: center; }
    .strike-total { font-size: 2.1rem; }
    .oferta-bar { padding: 1.2rem 1.4rem; }
    .oferta-bar p { font-size: 1rem; }
}

/* CTA verde (botão de compra) */
.cta-green {
    background: linear-gradient(180deg, #2BBF6B 0%, #16A34A 55%, #128A3E 100%);
    color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(43, 191, 107, 0.4),
        0 14px 35px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(22, 163, 74, 0.45);
}
.cta-green:hover {
    box-shadow:
        0 0 0 1px rgba(43, 191, 107, 0.55),
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 0 70px rgba(22, 163, 74, 0.6);
}

/* Separador full-width entre ancoragem e oferta */
.oferta-bar {
    width: 100vw;
    margin: 3.5rem calc(50% - 50vw);
    background: linear-gradient(90deg, var(--wine-700), var(--crimson) 50%, var(--wine-700));
    border-top: 1px solid rgba(203, 46, 79, 0.5);
    border-bottom: 1px solid rgba(203, 46, 79, 0.5);
    padding: 1.6rem 2rem;
    position: relative;
    z-index: 2;
}
.oferta-bar p {
    text-align: center;
    color: var(--champagne);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
}
.oferta-bar strong { color: var(--pink-soft); }

.bar-arrow {
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--pink), var(--crimson));
    border: 1px solid rgba(252, 232, 225, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 30px rgba(203, 46, 79, 0.4);
    animation: cueBounce 2.2s infinite;
    z-index: 3;
}

/* Selo faixa "Aprovado" no canto superior esquerdo */
.ribbon-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 0;
    z-index: 8;
    pointer-events: none;
}
.ribbon-corner span {
    position: absolute;
    display: block;
    width: 260px;
    left: -70px;
    top: 50px;
    transform: rotate(-45deg);
    background: linear-gradient(90deg, var(--crimson), var(--pink));
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    padding: 10px 0;
    border-top: 1px solid rgba(252, 232, 225, 0.35);
    border-bottom: 1px solid rgba(252, 232, 225, 0.35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 28px rgba(203, 46, 79, 0.4);
}

/* Caixa que envolve bundle + card de preço */
.oferta-wrap {
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(203, 46, 79, 0.14), transparent 55%),
        linear-gradient(165deg, rgba(64, 17, 23, 0.65), rgba(28, 5, 9, 0.85));
    border: 1px solid rgba(203, 46, 79, 0.35);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 3.5vw, 3rem);
    box-shadow: var(--shadow-deep), 0 0 80px rgba(203, 46, 79, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Oferta final: bundle + card de preço */
.oferta-final {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3.5vw, 3rem);
}

.of-bundle {
    flex: 1.25;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

/* Márcio recortado atrás do notebook */
.of-marcio {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
}

/* Fundo creme: disfarça as bordas claras do recorte dos mockups */
.of-creme {
    position: absolute;
    left: -5%;
    right: -5%;
    top: 105px;
    bottom: 70px;
    z-index: 2;
    background: radial-gradient(ellipse at 50% 45%,
        rgba(252, 232, 225, 0.38) 0%,
        rgba(246, 231, 220, 0.18) 45%,
        transparent 72%);
    filter: blur(10px);
    pointer-events: none;
}

.of-art {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
    display: block;
}

/* Logo abaixo, da largura total dos mockups */
.of-logo-full {
    position: relative;
    z-index: 4;
    width: 84%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto -1.5rem auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.65));
}

/* CSS Mockup Cluster */
.custom-bundle {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.bundle-logo {
    position: absolute;
    top: 5%;
    width: 45%;
    max-width: 280px;
    z-index: 10;
}

.bundle-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 15px rgba(0,0,0,0.6));
}

.bundle-items {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bundle-items img {
    position: absolute;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.6));
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Layer 1: Notebook no fundo */
.item-laptop {
    width: 78%;
    bottom: 8%;
    z-index: 1;
}

/* Layer 2: Livros sobrepondo notebook */
.item-book-left {
    width: 28%;
    left: 2%;
    bottom: 25%;
    z-index: 2;
    transform: rotate(-4deg);
}

.item-book-right {
    width: 28%;
    right: 2%;
    bottom: 25%;
    z-index: 2;
    transform: rotate(4deg);
}

/* Layer 3: Dispositivos na frente alinhados na base do notebook */
.item-phone {
    width: 16%;
    left: 18%;
    bottom: 2%; 
    z-index: 3;
}

.item-tablet {
    width: 40%;
    right: 10%;
    bottom: 2%; 
    z-index: 3;
}

@media (max-width: 768px) {
    .custom-bundle { aspect-ratio: 1 / 1.1; }
    .bundle-logo { width: 60%; top: 0; }
    .item-laptop { width: 95%; bottom: 12%; }
    .item-book-left { width: 35%; left: -2%; bottom: 30%; }
    .item-book-right { width: 35%; right: -2%; bottom: 30%; }
    .item-phone { width: 22%; left: 8%; bottom: 2%; }
    .item-tablet { width: 50%; right: 2%; bottom: 2%; }
}

.of-card {
    flex: 1;
    min-width: 0;
    background: linear-gradient(180deg, #FFFBF7, var(--champagne));
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 2.8rem) clamp(1.5rem, 3vw, 2.2rem);
    text-align: center;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45), 0 0 60px rgba(252, 232, 225, 0.15);
}

.of-logo-chip {
    display: inline-block;
    background: linear-gradient(165deg, var(--wine-800), var(--wine-950));
    border: 1px solid rgba(203, 46, 79, 0.4);
    border-radius: 100px;
    padding: 0.7rem 1.6rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 10px 25px rgba(64, 17, 23, 0.35);
}
.of-logo {
    max-width: 170px;
    display: block;
}

.of-mini-selos {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark-muted);
    letter-spacing: 0.02em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 1rem;
}
.of-mini-selos span { white-space: nowrap; }

.of-card .de-por { color: var(--wine-800); font-size: 1.15rem; }
.of-card .strike-big { color: var(--crimson); opacity: 1; }
.of-card .price .installments { color: var(--text-dark-muted); }
.of-card .price .big {
    color: var(--wine-700);
    text-shadow: none;
}
.of-card .cash-price { color: var(--text-dark-muted); margin-bottom: 1.6rem; }

@media (max-width: 860px) {
    .oferta-final { flex-direction: column; }
    .of-card { width: 100%; max-width: 480px; }
    .of-bundle { padding-top: 0; }
}

/* Mini seção: título + 3 passos + garantia */
.pos-oferta {
    max-width: 1000px;
    margin: 5rem auto 0 auto;
    text-align: center;
}

.pos-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--champagne);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Mobile: mantém os 3 passos lado a lado, compactos */
@media (max-width: 719px) {
    .steps-grid { gap: 0.7rem; }
    .step-card { padding: 1.1rem 0.6rem; }
    .step-icon { width: 44px; height: 44px; margin-bottom: 0.7rem; }
    .step-icon svg { width: 18px; height: 18px; }
    .step-card h4 { font-size: 0.7rem; letter-spacing: 0.04em; }
    .step-card p { font-size: 0.7rem; line-height: 1.45; }
}

.step-card {
    background: rgba(252, 232, 225, 0.04);
    border: 1px solid rgba(252, 232, 225, 0.12);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(203, 46, 79, 0.45);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    border: 1px solid rgba(203, 46, 79, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-soft);
    box-shadow: inset 0 0 16px rgba(203, 46, 79, 0.15), 0 0 25px rgba(203, 46, 79, 0.15);
}
.step-icon svg { width: 24px; height: 24px; }

.step-card h4 {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.92rem;
    color: rgba(252, 232, 225, 0.7);
    line-height: 1.55;
}

.de-por { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.5rem; }
.strike-big { text-decoration: line-through; opacity: 0.55; }

.price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
}
.price .installments {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    color: var(--text-light-muted);
}
.price .big {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.7rem, 8vw, 4.8rem);
    color: var(--champagne);
    line-height: 1;
    text-shadow: 0 0 50px rgba(252, 232, 225, 0.35);
}

.cash-price {
    font-size: 1.05rem;
    color: var(--text-light-muted);
    margin-bottom: var(--sp-md);
}

.risco-reverso {
    margin: var(--sp-md) auto;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light-muted);
    max-width: 580px;
}
.risco-reverso strong { color: var(--champagne); font-weight: 700; }

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: var(--sp-md);
    font-size: 0.82rem;
    font-weight: 700;
}

.trust-badges span {
    background: rgba(252, 232, 225, 0.05);
    border: var(--hairline-light);
    padding: 7px 14px;
    border-radius: 100px;
}

.pos-compra {
    border-top: 1px solid rgba(252, 232, 225, 0.1);
    padding-top: var(--sp-sm);
    font-size: 0.95rem;
    color: var(--text-light-muted);
}
.pos-compra strong { color: var(--champagne); }

/* ============================================================
   BLOCO 10: CONVERSA SÉRIA  (seção clara)
   ============================================================ */
.conversa-seria {
    background: linear-gradient(180deg, var(--nude-deep), var(--nude));
    color: var(--text-dark);
    padding: var(--sp-xl) 0;
    text-align: center;
}

.conversa-seria h2 { color: var(--wine-700); }

/* Título maior + elemento de atenção (encruzilhada ✕/✓) */
.choice-title {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: clamp(2rem, 4.4vw, 3rem);
}

.choice-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}
.cue-x, .cue-v {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}
.cue-x {
    background: linear-gradient(135deg, #B81E33, var(--crimson));
    box-shadow: 0 10px 25px rgba(132, 21, 36, 0.4);
    opacity: 0.85;
}
.cue-v {
    background: linear-gradient(135deg, #2BBF6B, #16A34A);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.45), 0 0 35px rgba(43, 191, 107, 0.4);
    animation: glowPulse 2.4s infinite alternate;
}
.cue-line {
    width: clamp(50px, 8vw, 110px);
    height: 1px;
    background: linear-gradient(90deg, var(--crimson), #16A34A);
}

/* Destaque verde: liga a frase à Opção 2 */
.mark-green {
    color: #15803D;
    font-weight: 700;
    background: linear-gradient(180deg, transparent 60%, rgba(34, 163, 93, 0.2) 60%);
    padding: 0 3px;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.options-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: var(--sp-md);
    max-width: 920px;
    margin: var(--sp-lg) auto var(--sp-md) auto;
}

.option-card { flex: 1; }

@media (min-width: 768px) {
    .good-option { transform: scale(1.03); }
}

/* Mobile: opções lado a lado, como no desktop */
@media (max-width: 767px) {
    .options-grid { gap: 0.8rem; }
    .option-card { padding: 1.1rem 0.9rem; }
    .option-card p { font-size: 0.78rem; line-height: 1.55; }
    .option-header { gap: 0.5rem; margin-bottom: 0.7rem; }
    .option-header h3 { font-size: 1.05rem; }
    .cross, .check { width: 28px; height: 28px; font-size: 0.85rem; }
}

.option-card {
    padding: 2.2rem;
    border-radius: var(--radius-md);
    text-align: left;
}

/* Opção 1: vermelho dominante (o caminho errado) */
.bad-option {
    background:
        radial-gradient(ellipse at 85% 0%, rgba(184, 30, 51, 0.35), transparent 55%),
        linear-gradient(165deg, #8A1426, #4A0B14 85%);
    border: 1px solid rgba(226, 84, 94, 0.4);
    color: rgba(255, 235, 232, 0.88);
    box-shadow: 0 25px 55px rgba(74, 11, 20, 0.45);
}
.bad-option p { color: rgba(255, 235, 232, 0.85); }
.bad-option h3 { color: #FFEDE9; }

/* Opção 2: verde dominante (a escolha certa) */
.good-option {
    background:
        radial-gradient(ellipse at 85% 0%, rgba(43, 191, 107, 0.3), transparent 55%),
        linear-gradient(165deg, #16713F, #0B3B22 85%);
    border: 1px solid rgba(43, 191, 107, 0.5);
    color: #EBFFF3;
    box-shadow: 0 30px 60px rgba(11, 59, 34, 0.5), 0 0 70px rgba(43, 191, 107, 0.25);
}
.good-option p { color: rgba(235, 255, 243, 0.92); }
.good-option h3 { color: #F2FFF7; }

/* Destaques internos adaptados às cores dos cards */
.bad-option .mark-dark, .bad-option .mark-pink { color: #FFD9D4; text-shadow: none; }
.good-option .mark-dark { color: #C9F7DC; text-shadow: 0 0 18px rgba(43, 191, 107, 0.4); }
.good-option .mark-pink { color: #8FE6B4; }

.option-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.option-header h3 { margin: 0; font-size: 1.4rem; }

.cross, .check {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cross {
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 235, 232, 0.4);
}
.check {
    color: #0B3B22;
    background: linear-gradient(180deg, #EBFFF3, #A8F0C6);
    box-shadow: 0 0 22px rgba(43, 191, 107, 0.55);
}


.close-text {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--wine-800);
    max-width: 700px;
    margin: var(--sp-md) auto 0 auto;
    line-height: 1.5;
}

/* ============================================================
   BLOCO 11: AUTORIDADE
   ============================================================ */
.autoridade {
    background:
        radial-gradient(ellipse at 85% 20%, rgba(132, 21, 36, 0.4), transparent 55%),
        var(--wine-900);
    color: var(--text-light);
    padding: var(--sp-xl) 0;
}

.autoridade-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(203, 46, 79, 0.12), transparent 50%);
    pointer-events: none;
}

/* Foto do Márcio integrada ao fundo da seção (sem caixa) */
.autoridade-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    background: url("Asset's/Fotos do Márcio/marcio-07-turtleneck-preto-fundo-vermelho-sorriso-largo.webp") center 12% / cover no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
    z-index: 1;
    pointer-events: none;
}
.autoridade-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--wine-900) 0%, rgba(42, 8, 15, 0.35) 45%, transparent 70%),
        linear-gradient(0deg, var(--wine-900) 0%, transparent 28%),
        linear-gradient(180deg, rgba(42, 8, 15, 0.55) 0%, transparent 25%);
}

.autoridade-split {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
    align-items: center;
    min-height: 560px;
}

@media (min-width: 768px) {
    .autoridade-split { flex-direction: row; gap: var(--sp-xl); }
    .autoridade-content { flex: 0 0 54%; max-width: 54%; }
}

@media (max-width: 767px) {
    .autoridade { padding-top: 0; }
    .autoridade-photo {
        position: relative;
        width: 100%;
        height: 360px;
        -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
        background-position: center 15%;
    }
    .autoridade-photo::after {
        background: linear-gradient(0deg, var(--wine-900) 0%, transparent 35%);
    }
    .autoridade-split { min-height: 0; margin-top: -60px; }
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 900;
    color: var(--pink-soft);
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.8rem;
}

.autoridade-content h2 { color: var(--champagne); }

.autoridade-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-light-muted);
}

.creds { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: var(--sp-md); }
.creds span {
    background: rgba(203, 46, 79, 0.1);
    border: 1px solid rgba(203, 46, 79, 0.35);
    color: var(--champagne);
    padding: 9px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
}

/* ============================================================
   BLOCO 12: OFERTA #2
   ============================================================ */
.segunda-oferta {
    background:
        radial-gradient(ellipse at 50% 60%, rgba(132, 21, 36, 0.45), transparent 60%),
        var(--wine-950);
    color: var(--text-light);
    padding: var(--sp-xl) 0;
    text-align: center;
}

.segunda-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1522098635833-216c03d81fbe?auto=format&fit=crop&w=1600&q=60') center / cover no-repeat;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.08;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
    pointer-events: none;
}

.fecho {
    font-family: var(--font-body);
    font-style: normal;
    font-size: clamp(1.15rem, 2.3vw, 1.45rem);
    font-weight: 600;
    color: var(--champagne);
    max-width: 640px;
    margin: 0 auto var(--sp-lg) auto;
    line-height: 1.45;
}

.card-simples {
    background: linear-gradient(180deg, var(--wine-900), var(--wine-950));
    padding: 3.2rem var(--sp-md) var(--sp-md) var(--sp-md);
    border: 1px solid rgba(203, 46, 79, 0.45);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-deep), 0 0 90px rgba(203, 46, 79, 0.2);
}

.ribbon {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--crimson), var(--pink));
    color: #fff;
    padding: 8px 22px;
    border-radius: 100px;
    font-weight: 900;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(203, 46, 79, 0.45);
}

.price-content { margin-bottom: var(--sp-md); }

.de-por-small { color: var(--text-light-muted); font-size: 0.95rem; }

.big-small {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 2.9rem);
    font-weight: 700;
    color: var(--champagne);
    line-height: 1.1;
    margin: 0.5rem 0;
    text-shadow: 0 0 40px rgba(252, 232, 225, 0.3);
}

.cash-price-small { color: var(--text-light-muted); font-size: 0.95rem; }

.small-badges { margin-top: 1.5rem; margin-bottom: 0; }

/* ============================================================
   BLOCO 13: FAQ  (seção clara)
   ============================================================ */
.faq {
    background:
        radial-gradient(rgba(87, 14, 25, 0.05) 1.5px, transparent 1.5px) 0 0 / 28px 28px,
        var(--nude);
    color: var(--text-dark);
    padding: var(--sp-xl) 0;
}

.faq h2 { text-align: center; margin-bottom: var(--sp-lg); color: var(--wine-700); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: #FFFDFB;
    border: 1px solid rgba(132, 21, 36, 0.14);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(87, 14, 25, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 14px 32px rgba(87, 14, 25, 0.12);
    border-color: rgba(203, 46, 79, 0.35);
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 1.5rem 3.5rem 1.5rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--wine-800);
    cursor: pointer;
    position: relative;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(203, 46, 79, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--pink);
    transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: rgba(203, 46, 79, 0.08);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-dark-muted);
}

/* ============================================================
   BLOCO 14: RODAPÉ
   ============================================================ */
.rodape {
    background: #140307;
    color: rgba(252, 232, 225, 0.55);
    padding: var(--sp-lg) 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 300;
}

.rodape a { color: var(--pink-soft); text-decoration: none; }
.rodape a:hover { text-decoration: underline; }
.rodape .disclaimer { max-width: 800px; margin: 1.5rem auto; opacity: 0.65; }
.rodape .copyright { font-weight: 700; }

/* ---------- Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
    .pulse, .floating-icon, .scroll-cue, .ask-icon-container { animation: none; }
}

/* ============================================================
   COMPACTAÇÃO GLOBAL MOBILE — seções e elementos responsivos
   ============================================================ */
@media (max-width: 680px) {
    :root {
        --sp-xl: 3.2rem;
        --sp-lg: 2.2rem;
        --sp-md: 1.4rem;
    }

    h2 { font-size: 1.6rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero .sub-headline { font-size: 0.98rem; }
    .pq-title, .choice-title { font-size: 1.8rem; }
    .intro-punch { font-size: 1.5rem; }
    .transicao .intro { font-size: 1.05rem; }
    .ticker { padding: 0.6rem 0; }
    .ticker-track span { font-size: 0.7rem; letter-spacing: 0.16em; }
    .alert-badge { width: 60px; height: 60px; }
    .alert-badge svg { width: 26px; height: 26px; }
    .conn-top, .conn-bottom { height: 30px; }

    /* Benefícios */
    .benefit-card { padding: 1.5rem 1rem; }
    .benefit-icon { width: 64px; height: 64px; margin-bottom: 0.8rem; }
    .benefit-icon svg { width: 34px; height: 34px; }
    .benefit-card h3 { font-size: 0.95rem; }
    .benefit-desc { font-size: 0.84rem; }

    /* Super Bônus */
    .super-bonus { padding: 1.8rem 1rem 1.6rem; margin-bottom: -5rem; }
    .para-quem { padding-top: calc(var(--sp-xl) + 6.5rem); }
    .sb-pill { font-size: 0.66rem; padding: 7px 16px; top: -15px; }
    .sb-eyebrow { font-size: 0.6rem; padding: 5px 12px; margin-bottom: 0.8rem; }
    .sb-content h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
    .sb-desc { font-size: 0.92rem; margin-bottom: 1.1rem; }
    .sb-lesson { padding: 0.7rem 0.9rem; gap: 0.7rem; }
    .sb-lesson p { font-size: 0.88rem; }
    .sb-num { width: 24px; height: 24px; font-size: 0.75rem; }

    /* Oferta final */
    .ribbon-corner { width: 120px; height: 120px; }
    .ribbon-corner span { width: 190px; left: -52px; top: 32px; font-size: 0.62rem; padding: 7px 0; }
    .oferta-wrap { padding: 1.4rem 0.9rem; }
    .of-bundle { padding-top: 0; }
    .of-card { padding: 1.5rem 1.1rem; }
    .of-card .de-por { font-size: 1rem; }
    .of-mini-selos { font-size: 0.7rem; gap: 0.25rem 0.7rem; margin-top: 0.9rem; }
    .pos-title { font-size: 1.35rem; margin-bottom: 1.4rem; }
    .pos-oferta { margin-top: 3rem; }
    .risco-reverso { font-size: 0.85rem; }
    .trust-badges { font-size: 0.72rem; gap: 0.5rem; }
    .trust-badges span { padding: 5px 10px; }

    /* Conversa séria */
    .close-text { font-size: 1.05rem; }
    .cue-x, .cue-v { width: 40px; height: 40px; font-size: 1rem; }

    /* Autoridade */
    .autoridade-photo { height: 300px; }
    .autoridade-content p { font-size: 0.95rem; }
    .creds span { font-size: 0.78rem; padding: 7px 13px; }
    .eyebrow { font-size: 0.66rem; }

    /* Segunda oferta */
    .fecho { font-size: 1.15rem; }
    .card-simples { padding: 2.4rem 1rem 1.4rem; }
    .ribbon { font-size: 0.66rem; padding: 7px 16px; top: -14px; }
    .de-por-small, .cash-price-small { font-size: 0.85rem; }

    /* FAQ */
    .faq-item summary { padding: 1.1rem 3rem 1.1rem 1.1rem; font-size: 0.95rem; }
    .faq-item summary::after { width: 26px; height: 26px; right: 1rem; font-size: 1rem; }
    .faq-content { padding: 0 1.1rem 1.1rem; font-size: 0.9rem; }

    /* Rodapé */
    .rodape { font-size: 0.76rem; }
}

/* Correção: passos compactos no mobile (precisa vir depois das regras base) */
@media (max-width: 719px) {
    .steps-grid { gap: 0.55rem; }
    .step-card { padding: 1rem 0.55rem; }
    .step-icon { width: 42px; height: 42px; margin-bottom: 0.6rem; }
    .step-icon svg { width: 17px; height: 17px; }
    .step-card h4 { font-size: 0.66rem; letter-spacing: 0.04em; }
    .step-card p { font-size: 0.68rem; line-height: 1.45; }
}

/* Autoridade mobile: enquadramento sem cortar a cabeça */
@media (max-width: 767px) {
    .autoridade-photo { height: 340px; background-position: center top; }
}

/* Opções lado a lado em telas bem pequenas: mais compactas */
@media (max-width: 480px) {
    .choice-cue { gap: 0.7rem; margin-bottom: 1.1rem; }
    .option-card { padding: 0.9rem 0.7rem; }
    .option-card p { font-size: 0.74rem; line-height: 1.5; }
    .option-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
    .option-header h3 { font-size: 0.95rem; }
    .cross, .check { width: 24px; height: 24px; font-size: 0.75rem; }
}
