/* =============================================
   PREMIUM SALES PAGE — BLACK & YELLOW EDITION
   Copa 2026 — Figurinhas Premium Pack
   ============================================= */

/* ─── CSS Custom Properties ─── */
:root {
    --black: #000000;
    --bg-base: #050505;
    --bg-dark: #080808;
    --bg-surface: #111111;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;

    --yellow: #fbbf24;
    --yellow-light: #fcd34d;
    --yellow-dark: #f59e0b;
    --yellow-glow: rgba(251, 191, 36, 0.4);
    --yellow-subtle: rgba(251, 191, 36, 0.05);

    --green: #22c55e;
    --green-light: rgba(34, 197, 94, 0.12);
    --green-glow: rgba(34, 197, 94, 0.3);

    --red: #ef4444;
    --red-light: rgba(239, 68, 68, 0.12);

    --white: #ffffff;
    --muted: #71717a;
    --muted-light: #a1a1aa;

    --border: rgba(255, 255, 255, 0.07);
    --border-yellow: rgba(255, 184, 0, 0.25);
    --border-yellow-strong: rgba(255, 184, 0, 0.5);

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-card: 0 15px 40px -10px rgba(0,0,0,0.8);
    --shadow-glow: 0 0 50px var(--yellow-glow);
    --shadow-btn: 0 10px 35px var(--yellow-glow);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-base);
    color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.site-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Canvas Background ─── */
#canvas-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.35;
}

/* ─── Container ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.center-text { text-align: center; }

/* ─── Typography ─── */
.highlight-yellow { color: var(--yellow); }
.highlight-green { color: var(--green); }
.text-yellow { color: var(--yellow); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.price-strike { text-decoration: line-through; color: var(--red); }
.strike-red { text-decoration: line-through; color: var(--red); font-weight: 700; }
.price-green { color: var(--green); }

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-10px) rotate(1.5deg); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 var(--yellow-glow), var(--shadow-btn); }
    50% { box-shadow: 0 0 0 14px rgba(255,184,0,0), var(--shadow-btn); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.animate-fade-up {
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

.floating-slow { 
    will-change: transform;
    transform: translateZ(0);
    animation: float-slow 8s ease-in-out infinite;
}

/* ─── Scroll-triggered animations ─── */
.benefit-card, .testi-card, .check-item, .faq-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.benefit-card.in-view, .testi-card.in-view, .check-item.in-view, .faq-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ─── URGENCY BAR ─── */
.urgency-bar {
    background: linear-gradient(90deg, #991b1b 0%, var(--red) 50%, #991b1b 100%);
    padding: 0.65rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
    padding: 0 0.5rem;
    white-space: nowrap;
}
.urgency-fire { font-size: clamp(0.7rem, 3vw, 1rem); }
.urgency-text {
    font-size: clamp(0.55rem, 2.5vw, 0.8rem);
    font-weight: 800;
    letter-spacing: 0px;
    text-transform: uppercase;
}
.urgency-badge {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 99px;
    padding: 0.2rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.urgency-timer {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-family: 'Oswald', sans-serif;
    margin-left: 0.5rem;
}
.timer-box {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    color: #fff;
}
.timer-box span {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}
.timer-box small {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
    margin-left: 1px;
}
.timer-sep {
    color: rgba(255,255,255,0.5);
    font-weight: 800;
    font-size: 0.9rem;
}
.timer-tension .timer-box span {
    color: var(--yellow);
    text-shadow: 0 0 10px rgba(251,191,36,0.6);
}

/* ============================================
   TEAM MARQUEE (ESTEIRA DE TIMES)
============================================ */
.team-marquee {
    width: 100%;
    overflow: hidden;
    background: var(--dark);
    padding: 2rem 0 1rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
    will-change: transform; /* GPU acceleration */
    backface-visibility: hidden; /* Previne flickering no mobile */
    -webkit-backface-visibility: hidden;
}

/* Duplicando o track para criar o loop contínuo */
.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.5rem;
    width: 200px; /* Reduzido de 280px para ficar mais organizado no desktop */
}

.marquee-img-wrap {
    width: 100%;
    border: 3px solid var(--yellow); /* Corrigido para --yellow */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px rgba(251, 191, 36, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
    /* Adicionando aspect-ratio para ajudar no crop */
    aspect-ratio: 3/4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-item:hover .marquee-img-wrap {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--yellow-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 25px rgba(251, 191, 36, 0.4);
}

.marquee-img-wrap img {
    width: 120%; /* Aumentado para 120% para cortar qualquer resquício de borda branca */
    height: 120%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.marquee-team-name {
    color: var(--yellow); /* Corrigido para --yellow */
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Um terço do tamanho total (3 conjuntos idênticos) */
        transform: translateX(-33.3333%);
    }
}

/* ============================================
   SEÇÃO: RESULTADO REAL (TANGIBILIZAÇÃO)
============================================ */
.real-result-section {
    padding: 5rem 0;
}

.real-result-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.real-result-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}
/* ─── Tutorial Video with Golden Frame ─── */
.tutorial-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.premium-gold-frame {
    border-radius: 16px !important;
    border: 3px solid rgba(255, 184, 0, 1) !important;
    box-shadow:
        0 0 30px rgba(255, 184, 0, 0.4),
        0 0 80px rgba(255, 184, 0, 0.15),
        inset 0 0 30px rgba(255, 184, 0, 0.2) !important;
    overflow: hidden !important;
    animation: goldFramePulse 4s ease-in-out infinite alternate !important;
}

.real-result-card,
.gallery-card {
    border: 2px solid rgba(255, 184, 0, 1) !important;
    overflow: hidden !important;
    animation: goldFramePulseSmall 4s ease-in-out infinite alternate !important;
    /* WebKit fix infalível para mascarar overflow no 3D sem corromper as quinas */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

@keyframes goldFramePulseSmall {
    0% {
        border-color: rgba(255, 184, 0, 0.7);
        box-shadow:
            0 0 5px rgba(255, 184, 0, 0.2);
    }
    100% {
        border-color: rgba(255, 184, 0, 1);
        box-shadow:
            0 0 15px rgba(255, 184, 0, 0.6),
            inset 0 0 10px rgba(255, 184, 0, 0.2);
    }
}

@media (max-width: 768px) {
    .premium-gold-frame {
        border-radius: 12px !important;
        border-width: 2px !important;
    }
}

.tutorial-video-frame {
    position: relative;
    width: 100%;
    max-width: 340px; /* Reduzido de 640px para proporção perfeita de celular */
    background: #000;
    aspect-ratio: 9/16; /* Força proporção vertical correta */
}

@keyframes goldFramePulse {
    0% {
        border-color: rgba(255, 184, 0, 0.7);
        box-shadow:
            0 0 20px rgba(255, 184, 0, 0.2),
            0 0 50px rgba(255, 184, 0, 0.08);
    }
    100% {
        border-color: rgba(255, 184, 0, 1);
        box-shadow:
            0 0 40px rgba(255, 184, 0, 0.6),
            0 0 100px rgba(255, 184, 0, 0.3);
    }
}

.tutorial-video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .tutorial-video-wrapper {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    .tutorial-video-frame {
        max-width: 320px; /* Tamanho polido para não ocupar a tela toda no mobile */
        border-radius: 12px;
        border-width: 2px;
    }
    .tutorial-video-frame video {
        border-radius: 10px;
    }
}

.real-result-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.real-result-track {
    display: flex;
    width: max-content;
    animation: scroll-real-result 40s linear infinite;
    gap: 1.5rem;
    padding: 2rem 0; /* Espaço maior para o hover e sombras não serem cortados */
}

/* Duplicando o track para criar o loop contínuo */
.real-result-track:hover {
    animation-play-state: paused;
}

.real-result-item {
    width: 180px; /* Tamanho reduzido conforme solicitado */
    flex-shrink: 0;
}

@keyframes scroll-real-result {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Rola exatamente metade do tamanho total (que é o conjunto 1 inteiro) */
    }
}

.real-result-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-card);
    aspect-ratio: 3/4; /* Formato original restaurado (retângulo gordinho/retrato clássico) */
}

.real-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.15); /* Sutil brilho dourado */
    border-color: rgba(251, 191, 36, 0.3);
}

.real-result-card img,
.real-result-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.real-result-card:hover img,
.real-result-card:hover video {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .urgency-bar { padding: 0.8rem 0; }
    .urgency-inner { flex-direction: column; gap: 0.4rem; }
    .urgency-text { font-size: 0.85rem; text-align: center; line-height: 1.3; display: inline-block; }
    .urgency-badge { font-size: 0.75rem; padding: 0.2rem 0.5rem; }
    .urgency-timer { margin-left: 0; margin-top: 0.1rem; }
    .timer-box span { font-size: 1.3rem; }
    .timer-box small { font-size: 0.65rem; }

    .marquee-item { width: 140px; padding: 0 0.5rem; gap: 0.5rem; }
    .marquee-team-name { font-size: 0.85rem; }

    .real-result-item {
        width: 110px; /* Tamanho consideravelmente menor e mais elegante no mobile */
    }
}

/* ─── HERO SECTION ─── */
.hero-section {
    position: relative;
    padding: 4rem 0 6rem;
    text-align: center;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: 0; left: 50%;
    width: 900px; height: 700px;
    background: radial-gradient(ellipse, rgba(255,184,0,0.12) 0%, transparent 65%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}
.hero-container { position: relative; z-index: 1; }

/* Badge Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow-subtle);
    border: 1px solid var(--border-yellow-strong);
    color: var(--yellow);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.badge-pill i { width: 16px; height: 16px; }

/* Hero H1 */
.hero-h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.14;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-wrap: balance;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 50px rgba(255, 184, 0, 0.25);
}

/* Hero Sub */
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--muted-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.hero-sub strong { 
    color: var(--white); 
    display: block;
    margin-top: 0.8rem;
}

/* ─── VSL Video ─── */
.vsl-wrapper {
    max-width: 400px;
    margin: 0 auto 1.5rem;
}
.vsl-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-yellow);
    box-shadow: var(--shadow-card), 0 0 60px rgba(255,184,0,0.1);
    overflow: hidden;
    cursor: pointer;
}
.vsl-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    transition: background var(--transition);
}
.vsl-container:hover .vsl-overlay { background: rgba(0,0,0,0.3); }
.play-btn-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.play-btn-pulse {
    position: absolute;
    width: 90px; height: 90px;
    background: var(--yellow-glow);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}
.play-btn {
    position: relative;
    width: 72px; height: 72px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
    z-index: 1;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn i { width: 28px; height: 28px; color: var(--black); fill: var(--black); margin-left: 3px; }
.vsl-cta-text { font-size: 0.9rem; color: var(--muted-light); font-style: italic; }
.vsl-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--red);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    animation: blink 2s ease infinite;
}
.vsl-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.75rem;
    font-style: italic;
}
.vsl-caption i { width: 14px; height: 14px; }
.vsl-caption strong { color: var(--white); }

/* ─── Social Bar ─── */
.social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.social-avatars { display: flex; }
.avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-base);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -6px;
}
.avatar:first-child { margin-left: 0; }
.stars-row {
    display: flex;
    gap: 2px;
}
.stars-row i { width: 16px; height: 16px; color: var(--yellow); fill: var(--yellow); }
.social-text { font-size: 0.85rem; color: var(--muted-light); }
.social-text strong { color: var(--white); }

/* ─── Pricing Block ─── */
.pricing-block {
    margin-bottom: 2.5rem;
    text-align: center;
}
.price-from { font-size: 1rem; color: var(--muted); margin-bottom: 0.35rem; }
.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.price-currency, .price-cents {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
    margin-top: 0.2em;
    padding-top: 0;
}
.price-value {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(5rem, 15vw, 8rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(34, 197, 94, 0.15);
    filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.25));
}
.price-note {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.3px;
}

/* ─── CTA Buttons ─── */
.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #fbbf24; /* Bright gold */
    color: #ffffff; /* White text as requested */
    text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Subtle text shadow for readability */
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2.5s infinite;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.6);
    background: #f59e0b;
    animation: none;
    z-index: 10;
}
.btn-cta:hover::before { left: 100%; }

/* Pulsing Ring Effect */
.btn-cta::after, .float-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    animation: pulseRing 2s infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.8); }
    100% { box-shadow: 0 0 0 25px rgba(251, 191, 36, 0); }
}

.btn-hero {
    width: 100%;
    max-width: 680px;
    padding: 1.4rem 2rem;
    border-radius: var(--radius-lg);
}

.btn-section {
    padding: 1.25rem 2rem;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}
.btn-sm i { width: 18px; height: 18px; }

.btn-checkout {
    width: 100%;
    max-width: 750px;
    padding: 1.75rem 2rem;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
}
.w-full { width: 100%; max-width: 100%; }

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.btn-icon i { width: 26px; height: 26px; }
.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}
.btn-main {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.btn-sub {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 0.3px;
}
.btn-arrow {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}
.btn-arrow i { width: 20px; height: 20px; }


/* Security Row */
.security-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--muted);
    flex-wrap: wrap;
    margin-top: 0.75rem; /* Evita colisão com o pulse ring do botão */
}
.security-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.security-row i {
    width: 14px;
    height: 14px;
    color: var(--green);
    flex-shrink: 0;
}

/* ─── Comparison Box ─── */
.comparison-box {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* 2-column grid: each row aligns across both sides */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
}

/* Vertical divider column */
.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 0.75rem;
}
.comparison-divider-line {
    flex: 1;
    width: 1px;
    background: var(--border);
}
.comparison-vs-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--muted);
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0.5rem 0;
}

/* Each side column */
.comp-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    gap: 0.6rem;
}
.comp-col.bad  { background: var(--red-light); }
.comp-col.good { background: var(--green-light); }

.comp-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.comp-icon i { width: 24px; height: 24px; }
.comp-col.bad .comp-icon { background: rgba(239, 68, 68, 0.15); color: var(--red); }
.comp-col.good .comp-icon { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.comp-label  { font-weight: 700; font-size: 0.85rem; line-height: 1.4; }
.comp-value  {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.comp-detail { font-size: 0.75rem; color: var(--muted-light); line-height: 1.5; }

.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--green);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: 99px;
    margin-top: 1.25rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}
.savings-badge i { width: 16px; height: 16px; }

/* ─── Trust Stamps ─── */
.trust-stamps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.stamp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-yellow);
    border-radius: var(--radius);
    padding: 0.75rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    min-width: 80px;
    line-height: 1.3;
    transition: border-color var(--transition);
}
.stamp:hover { border-color: var(--yellow); }
.stamp i { width: 22px; height: 22px; color: var(--yellow); }

/* ─── SECTION COMMONS ─── */
.section { padding: 5rem 0; }
.bg-dark, .bg-black { background-color: transparent; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.pretitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}
.section-h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1rem;
    color: var(--muted-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── O QUE VOCÊ VAI RECEBER ─── */
.receive-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 900px) {
    .receive-layout { grid-template-columns: 1.2fr 1fr; }
}

.receive-checklist { display: flex; flex-direction: column; gap: 1.25rem; }

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color var(--transition), background var(--transition);
}
.check-item:hover { border-color: var(--border-yellow); background: var(--bg-card-hover); }

.check-badge {
    width: 28px; height: 28px;
    min-width: 28px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    color: white;
    margin-top: 2px;
}
.check-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
}
.check-content p { font-size: 0.85rem; color: var(--muted-light); line-height: 1.5; }

/* Receive Visual */
.receive-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.visual-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-yellow);
    overflow: hidden;
    cursor: pointer;
}
.visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(0,0,0,0.4);
}
.visual-icon { width: 52px; height: 52px; color: var(--yellow); }
.visual-overlay p { font-size: 0.85rem; color: var(--muted-light); }
.visual-badge-corner {
    position: absolute;
    bottom: 0; right: 0;
    background: var(--green);
    color: white;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius) 0 0 0;
    letter-spacing: 0.5px;
}

/* Stats mini grid */
.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.stat-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}
.stat-label { font-size: 0.7rem; color: var(--muted); font-weight: 600; }

/* ─── BENEFITS GRID ─── */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    cursor: default;
}
.benefit-card:hover {
    border-color: var(--border-yellow);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), 0 0 20px rgba(255,184,0,0.05);
}
.benefit-icon-wrap { margin-bottom: 1.25rem; }
.benefit-icon-bg {
    width: 52px; height: 52px;
    background: var(--yellow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}
.benefit-card:hover .benefit-icon-bg { transform: scale(1.1) rotate(-5deg); }
.benefit-icon-bg i { width: 26px; height: 26px; color: var(--black); }
.benefit-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.benefit-desc { font-size: 0.88rem; color: var(--muted-light); line-height: 1.6; }

/* Showcase */
.showcase-block {
    background: var(--bg-surface);
    border: 1px solid var(--border-yellow);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 0 40px rgba(255,184,0,0.05);
}
.showcase-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 2rem;
}
@media (min-width: 768px) {
    .showcase-inner { grid-template-columns: 1fr 1fr; padding: 3rem; }
}
.showcase-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}
.showcase-text { display: flex; flex-direction: column; gap: 1rem; }
.showcase-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
.showcase-text p { font-size: 0.95rem; color: var(--muted-light); line-height: 1.7; }

/* ─── OFFER SECTION (substitui countdown) ─── */
.offer-section {
    background: transparent;
    position: relative;
}
.offer-section::before {
    display: none;
}
.offer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) { .offer-inner { grid-template-columns: 1fr 1fr; } }

.offer-text { }
.offer-desc {
    font-size: 0.95rem;
    color: var(--muted-light);
    line-height: 1.8;
    margin: 1rem 0 1.5rem;
}
.offer-desc strong { color: var(--white); }
.offer-stats { display: flex; flex-direction: column; gap: 0.75rem; }
.offer-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--muted-light);
}
.offer-stat i { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; }
.offer-stat strong { color: var(--white); }

/* Offer Card */
.offer-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-yellow);
    box-shadow: 0 0 100px rgba(255, 184, 0, 0.07);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.offer-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--yellow);
    text-transform: uppercase;
}
.offer-price { display: flex; flex-direction: column; gap: 0.15rem; }
.offer-from { font-size: 0.85rem; color: var(--muted); }
.offer-from s { color: var(--red); }
.offer-by { font-size: 0.8rem; color: var(--muted-light); }
.offer-val {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 0 30px var(--green-glow);
}
.offer-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted-light);
}
.offer-proof i { width: 14px; height: 14px; color: var(--green); }
.offer-proof strong { color: var(--white); }

/* ─── TESTIMONIALS ─── */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.rating-stars { display: flex; gap: 2px; }
.rating-stars i { width: 22px; height: 22px; color: var(--yellow); fill: var(--yellow); }
.rating-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--yellow);
}
.rating-total { font-size: 0.85rem; color: var(--muted); }

/* Trust Tags Row */
.trust-tags-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--yellow-subtle);
    border: 1px solid var(--border-yellow);
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    text-transform: uppercase;
}
.trust-tag i { width: 14px; height: 14px; }

/* Testi Grid */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    position: relative;
}
.testi-card:hover { border-color: var(--border-yellow); background: var(--bg-card-hover); }
.testi-card.featured {
    border-color: var(--border-yellow-strong);
    background: linear-gradient(135deg, rgba(255,184,0,0.05) 0%, var(--bg-card) 60%);
}
.testi-featured-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.testi-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.testi-avatar {
    width: 44px; height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
}
.testi-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.testi-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.72rem;
    color: var(--muted);
}
.testi-stars i { width: 12px; height: 12px; color: var(--yellow); fill: var(--yellow); }
.testi-stars span { margin-left: 0.4rem; }
.testi-verified {
    margin-left: auto;
    color: var(--green);
    flex-shrink: 0;
}
.testi-verified i { width: 20px; height: 20px; }
.testi-body {
    font-size: 0.9rem;
    color: var(--muted-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}
.testi-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
}
.testi-check i { width: 14px; height: 14px; }

.testi-cta { display: flex; justify-content: center; }

/* ─── GARANTIA ─── */
.guarantee-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-surface);
    border: 2px solid var(--border-yellow);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
}
@media (min-width: 768px) {
    .guarantee-block {
        grid-template-columns: auto 1fr;
        padding: 3rem;
    }
}
.guarantee-icon-wrap { display: flex; justify-content: center; }
.guarantee-circle {
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 4px solid var(--yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: var(--yellow-subtle);
    box-shadow: 0 0 40px rgba(255,184,0,0.2);
    flex-shrink: 0;
}
.guarantee-circle i { width: 36px; height: 36px; color: var(--yellow); }
.guarantee-circle span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1.2;
    text-align: center;
}
.guarantee-desc {
    font-size: 0.95rem;
    color: var(--muted-light);
    line-height: 1.8;
    margin: 1rem 0;
}
.guarantee-desc strong { color: var(--white); }
.guarantee-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.g-point {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--green-light);
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
}
.g-point i { width: 14px; height: 14px; }

/* ─── FAQ ─── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-yellow); }
.faq-item.open { border-color: var(--border-yellow-strong); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: color var(--transition);
}
.faq-q i {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--yellow);
    transition: transform var(--transition);
}
.faq-item.open .faq-q { color: var(--yellow); }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--muted-light);
    line-height: 1.7;
}

/* ─── CHECKOUT SECTION ─── */
.checkout-section {
    position: relative;
    background: transparent;
}
.checkout-glow {
    display: none;
}
.checkout-box {
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-yellow);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 100px rgba(255, 184, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkout-h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 1rem 0 2rem;
}
.checkout-pricing {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.checkout-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.checkout-from { font-size: 0.9rem; color: var(--muted); }
.checkout-from s { color: var(--red); }
.checkout-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 0 30px var(--green-glow);
}
.checkout-price span:first-child,
.checkout-price span:last-child {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.25em;
    padding-top: 0;
}
.checkout-num { font-family: 'Oswald', sans-serif; font-size: clamp(5rem, 12vw, 7rem); font-weight: 700; }
.checkout-once { font-size: 0.8rem; color: var(--muted); }
.checkout-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2.25rem; /* Evita colisão com o pulse ring (aumentado de 1.5rem para 2.25rem = 36px) */
}
.checkout-trust span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.checkout-trust i {
    width: 14px;
    height: 14px;
    color: var(--green);
    flex-shrink: 0;
}
.checkout-urgency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--red-light);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--muted-light);
    margin-top: 1.5rem;
}
.checkout-urgency i { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
i {
    display: inline-flex;
    flex-shrink: 0;
}
[data-lucide="star"] {
    fill: #fbbf24;
    color: #fbbf24;
}

/* ─── SCROLLBAR ─── */
.footer {
    background: transparent;
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}
.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--yellow); }
.footer-tagline { font-size: 0.8rem; color: var(--muted); }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.5rem;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--yellow); }
.footer-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.footer-legal { text-align: center; }
.footer-legal p { font-size: 0.75rem; color: var(--muted); line-height: 1.7; }

/* ─── FLOATING CTA ─── */
.float-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.float-cta.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.float-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fbbf24;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 99px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    white-space: nowrap;
    animation: pulseGlow 2.5s infinite;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.float-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.6);
    background: #f59e0b;
    animation: none;
}
.float-btn i { width: 18px; height: 18px; }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
    right: 1.5rem;
    background-color: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px 8px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--green-glow);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.whatsapp-float:hover {
    background-color: #16a34a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
    color: white;
}
.whatsapp-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
@keyframes whatsappWiggle {
    0% { transform: rotate(0deg) scale(1); }
    5% { transform: rotate(-8deg) scale(1.1); }
    10% { transform: rotate(8deg) scale(1.1); }
    15% { transform: rotate(-8deg) scale(1.1); }
    20% { transform: rotate(8deg) scale(1.1); }
    25% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(0deg) scale(1); }
}

/* ─── Sales Popup ─── */
.sales-popup {
    display: flex;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    max-width: 260px;
}
.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}
.sales-popup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    position: relative;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
}
@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.sales-popup-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sales-popup-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}
.sales-popup-desc {
    font-size: 0.7rem;
    color: #4b5563;
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.sales-popup-time {
    font-size: 0.65rem;
    color: #9ca3af;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ─── Utility ─── */
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }

/* ─── RESPONSIVE TWEAKS ─── */
@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    /* Typography & Spacing */
    .container { padding: 0 1.2rem; }
    .section { padding: 1.5rem 0; }
    .hero-section { padding: 1.5rem 0 2.5rem; }
    .badge-pill { font-size: 0.65rem; padding: 0.4rem 1rem; margin-bottom: 1rem; }
    .badge-pill i { width: 14px; height: 14px; }
    .section-header { margin-bottom: 2rem; }
    .real-result-header { margin-bottom: 1.25rem; }
    .section-h2 { font-size: clamp(2rem, 8vw, 2.4rem); line-height: 1.15; margin-top: 0.5rem; margin-bottom: 0.5rem; }
    .hero-h1 { font-size: clamp(2.2rem, 10.5vw, 3.2rem); line-height: 1.15; letter-spacing: -0.5px; margin: 0 -0.5rem 1rem -0.5rem; padding: 0; white-space: nowrap; }
    .hero-sub { font-size: 0.95rem; line-height: 1.4; margin-bottom: 1.5rem; padding: 0 0.5rem; }
    .hero-sub strong { margin-top: 0.5rem; font-size: 1rem; }
    
    /* Layouts */
    .benefits-grid { gap: 1rem; margin-bottom: 2rem; }
    .receive-layout { gap: 2rem; }
    
    /* CTA Buttons */
    .btn-cta { padding: 1.25rem 1rem; flex-direction: column; text-align: center; gap: 0.5rem; }
    .btn-hero, .btn-checkout { max-width: 100%; }
    .btn-content { align-items: center; text-align: center; width: 100%; }
    .btn-main { font-size: 0.95rem; }
    .btn-sub { font-size: 0.7rem; }
    .btn-arrow { display: none; }
    .btn-icon i { width: 22px; height: 22px; }
    
    /* Security & Trust */
    .security-row { gap: 0.6rem; font-size: 0.7rem; justify-content: center; }
    .trust-stamps { gap: 0.5rem; }
    .stamp { min-width: 70px; padding: 0.6rem 0.5rem; font-size: 0.65rem; }
    
    /* Comparison Box */
    .comparison-box { padding: 1.25rem 1rem; margin-bottom: 2rem; }
    .comparison-grid { 
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .comparison-divider { padding: 0.5rem 0; flex-direction: row; }
    .comparison-divider-line { height: 1px; width: 100%; }
    .comparison-vs-badge { margin: 0 0.5rem; }
    .comp-col { padding: 1.25rem 1rem; }
    .comp-value { font-size: 1.4rem; }
    
    /* Offer Section */
    .offer-val { font-size: 2.5rem; }
    .offer-card { padding: 1.5rem 1rem; }
    
    /* Testimonials */
    .testi-grid { gap: 1rem; margin-bottom: 1.5rem; }
    .testi-card { padding: 1.25rem 1rem; }
    .trust-tags-row { gap: 0.5rem; }
    .trust-tag { font-size: 0.65rem; padding: 0.4rem 0.75rem; }
    
    /* Guarantee */
    .guarantee-block { padding: 1.5rem 1.25rem; gap: 1.5rem; }
    .guarantee-circle { width: 90px; height: 90px; }
    .guarantee-circle span { font-size: 1.1rem; }
    .guarantee-points { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    
    /* Checkout */
    .checkout-box { padding: 2rem 1rem; }
    .checkout-h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
    .checkout-num { font-size: 3.5rem; }
    .checkout-trust { gap: 0.6rem; font-size: 0.7rem; }
    .checkout-urgency { font-size: 0.75rem; padding: 0.75rem; }
    
    /* Floating CTA */
    .float-cta {
        display: none !important; /* Escondido no mobile a pedido do usuário */
    }
    
    .whatsapp-float {
        bottom: 1.5rem !important; /* Força ficar embaixo já que o CTA amarelo sumiu */
        right: 1.2rem;
        padding: 8px 16px 8px 14px;
        font-size: 0.9rem;
        width: auto;
        height: auto;
    }
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    /* Sales Popup Mobile Tuning (prevents collision with WhatsApp) */
    .sales-popup {
        bottom: 1.2rem;
        left: 1.2rem;
        padding: 6px 10px;
        gap: 8px;
        max-width: calc(100vw - 165px); /* Encurtado: Garante que não cruze com o botão do WhatsApp na direita */
    }
    .sales-popup-dot {
        width: 8px;
        height: 8px;
    }
    .sales-popup-title {
        font-size: 0.7rem;
    }
    .sales-popup-desc {
        font-size: 0.6rem;
    }
    .sales-popup-time {
        font-size: 0.55rem;
    }
    
    /* Stats Grid */
    .stats-mini-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================
     GALERIA DE FOTOS 3D (COVER FLOW)
============================================ */
/* ─── GALLERY SECTION ─── */

.gallery-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.gallery-stars-inline {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.gallery-score {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Slider wrapper: relative, contains perspective viewport + arrows */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem;
    overflow-x: clip;
    overflow-y: visible;
    box-sizing: border-box;
}

/* Perspective viewport */
.gallery-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1200px;
    -webkit-perspective: 1200px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* 3D card wrapper */
.gallery-card {
    position: absolute;
    width: 220px;
    height: 470px;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    cursor: pointer;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Golden border matching the site's vsl cards */
    border: 2px solid var(--border-yellow-strong);
    box-shadow:
        0 0 0 1px rgba(255, 184, 0, 0.1),
        0 20px 50px -10px rgba(0, 0, 0, 0.9),
        0 0 30px -5px var(--yellow-glow);
    background: var(--bg-card);
}

/* Inner wrapper holds image + badge */
.gallery-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image fills entire card */
.gallery-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    object-position: center;
    display: block;
    pointer-events: none;
    flex: 1;
}

/* COMPRA VERIFICADA golden badge at bottom */
.gallery-verified-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1200 0%, #2d1f00 50%, #1a1200 100%);
    border-top: 1px solid var(--border-yellow-strong);
    color: var(--yellow);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-align: center;
    padding: 7px 8px 6px;
    text-transform: uppercase;
    z-index: 2;
}

/* Arrow buttons — hidden by default, shown after interaction */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.12);
    border: 1.5px solid var(--border-yellow-strong);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: var(--transition);
    flex-shrink: 0;
    touch-action: manipulation;
}

.gallery-arrow::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.gallery-arrow:hover {
    background: rgba(251, 191, 36, 0.25);
    border-color: var(--yellow);
    box-shadow: 0 0 16px var(--yellow-glow);
    scale: 1.08;
}

.gallery-arrow-prev {
    left: 0;
}

.gallery-arrow-next {
    right: 0;
}

/* Dots navigation */
.gallery-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    z-index: 30;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-dot::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
}

.gallery-dot.active {
    background: var(--yellow);
    transform: scale(1.4);
    box-shadow: 0 0 8px var(--yellow-glow);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .gallery-arrow-prev { left: 0; }
    .gallery-arrow-next { right: 0; }
}

@media (max-width: 768px) {
    .gallery-carousel {
        height: 480px;
    }

    .gallery-card {
        width: 175px;
        height: 375px;
        border-radius: 18px;
    }

    .gallery-verified-badge {
        font-size: 0.58rem;
        letter-spacing: 1px;
        padding: 6px 6px 5px;
    }

    .gallery-arrow {
        width: 38px;
        height: 38px;
    }

    .gallery-arrow-prev { left: 0; }
    .gallery-arrow-next { right: 0; }
}

@media (max-width: 480px) {
    .gallery-carousel {
        height: 420px;
    }

    .gallery-card {
        width: 155px;
        height: 330px;
        border-radius: 16px;
    }

    .gallery-verified-badge {
        font-size: 0.52rem;
        letter-spacing: 0.8px;
        padding: 5px 4px;
    }

    .gallery-arrow {
        width: 34px;
        height: 34px;
    }

    .gallery-dots {
        gap: 0.4rem;
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .gallery-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 360px) {
    .gallery-carousel {
        height: 360px;
    }

    .gallery-card {
        width: 135px;
        height: 290px;
        border-radius: 12px;
    }

    .gallery-verified-badge {
        font-size: 0.48rem;
        letter-spacing: 0.5px;
        padding: 4px 3px;
    }
}



/* =============================================
   ============================================= */
.thankyou-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 10;
}

.thankyou-card {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-badge-container {
    width: 88px;
    height: 88px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--green);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
    position: relative;
}

.success-icon {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.thankyou-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--muted-light);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.thankyou-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.details-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted-light);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.details-row:last-child {
    margin-bottom: 0;
}

.details-label {
    color: var(--muted-light);
}

.details-value {
    font-weight: 600;
    color: var(--white);
    word-break: break-all;
}

.thankyou-delivery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.delivery-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted-light);
    line-height: 1.5;
}

.delivery-icon {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}

.thankyou-btn-primary {
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow-dark) 100%);
    color: var(--black);
    box-shadow: var(--shadow-btn);
}

.thankyou-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(251, 191, 36, 0.6);
}

.thankyou-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.thankyou-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-svg {
    flex-shrink: 0;
}

.support-text {
    font-size: 0.8rem;
    color: var(--muted);
}



@media (max-width: 480px) {
    .checkout-box { padding: 1.75rem 0.9rem; }
    .hero-section { padding: 1rem 0 2rem; }
    .thankyou-wrapper {
        padding: 1.5rem 1rem;
    }
    .thankyou-card {
        padding: 2.2rem 1.25rem;
    }
    .button-group {
        gap: 0.75rem;
    }
    .thankyou-btn {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    .success-badge-container {
        width: 76px;
        height: 76px;
        margin-bottom: 1.5rem;
    }
    .success-badge-container svg {
        width: 38px;
        height: 38px;
    }
    .thankyou-subtitle {
        margin-bottom: 1.8rem;
    }
    .thankyou-details {
        padding: 1.2rem 1.25rem;
        margin-bottom: 1.8rem;
    }
    .thankyou-delivery {
        margin-bottom: 1.8rem;
    }
}




