/* ============================================
   DO CRISTO - VSL PAGE
   MOBILE FIRST - Conversão Máxima
   ============================================ */

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

:root {
    /* Cores Celestiais */
    --bg-primary: #0a0a12;
    --bg-secondary: #12121f;
    --bg-card: rgba(20, 20, 35, 0.9);
    
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #B8960C;
    
    --blue-celestial: #4A6FA5;
    --purple-divine: #7B68EE;
    --purple-soft: #B8A8D9;
    
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --danger: #E74C3C;
    --success: #2ECC71;
    
    /* Sombras */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    
    /* Fontes */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
}

/* CONTAINER - Mobile First */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   EFEITOS CELESTIAIS
   ============================================ */

.celestial-particles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

.divine-glow {
    position: fixed;
    top: -30%;
    left: 0;
    right: 0;
    width: 100%;
    height: 80vh;
    background: radial-gradient(ellipse at center, rgba(123, 104, 238, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.divine-rays {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   HEADER URGÊNCIA - Mobile First
   ============================================ */

.header-urgency {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
}

.header-logo {
    height: 28px;
    width: auto;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--danger);
    font-size: 12px;
    animation: pulse 2s infinite;
}

.urgency-timer svg {
    width: 14px;
    height: 14px;
    stroke: var(--danger);
}

.urgency-timer strong {
    font-weight: 700;
    font-family: var(--font-body);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   SEÇÃO HERO - Mobile First
   ============================================ */

.hero-vsl {
    padding: 90px 0 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(123, 104, 238, 0.05) 0%, transparent 100%);
}

.divine-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    animation: badgeGlow 3s ease-in-out infinite;
}

.divine-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-primary);
    fill: rgba(212, 175, 55, 0.2);
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding: 0 10px;
}

/* Video Container - Mobile */
.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto 24px;
}

.video-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    width: auto;
    height: auto;
    background: radial-gradient(ellipse at center, rgba(123, 104, 238, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(123, 104, 238, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: var(--transition-medium);
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-medium);
    animation: playPulse 2s infinite;
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
    color: var(--bg-primary);
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

.play-text {
    color: var(--text-primary);
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
}

.video-wrapper.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Barra de Progresso Fake */
.fake-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.fake-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: width 0.3s linear;
}

/* Fallback Overlay */
.video-fallback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    z-index: 15;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
}

.video-fallback-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.fallback-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.fallback-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    animation: fallbackPulse 2s infinite;
}

.fallback-icon svg {
    width: 36px;
    height: 36px;
    margin-left: 5px;
    color: var(--bg-primary);
}

@keyframes fallbackPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.7);
    }
}

.fallback-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-align: center;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    padding: 0 20px;
}

/* Caixa de Delay */
.delay-message-box {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    animation: delayBoxGlow 3s ease-in-out infinite;
}

.delay-message-box.show {
    display: flex;
}

@keyframes delayBoxGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    }
}

.delay-message-icon {
    color: var(--gold-primary);
    animation: iconSpin 4s linear infinite;
}

.delay-message-icon svg {
    stroke: var(--gold-primary);
    fill: rgba(212, 175, 55, 0.2);
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.delay-message-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gold-primary);
    text-align: center;
    line-height: 1.4;
}

/* Delay Hidden Class */
.delay-hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.delay-hidden.delay-visible {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

/* Override para elementos específicos */
.header-urgency.delay-hidden.delay-visible {
    display: flex !important;
}

.cta-box.delay-hidden.delay-visible {
    display: flex !important;
    flex-direction: column;
}

.delay-content.delay-hidden.delay-visible {
    display: block !important;
}

.sticky-cta.delay-hidden.delay-visible {
    display: block !important;
}

.social-notification.delay-hidden {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.social-notification.delay-hidden.delay-visible {
    opacity: 0;
    visibility: visible;
    pointer-events: auto;
}

.social-notification.delay-hidden.delay-visible.show {
    opacity: 1;
}

/* Video no estado bloqueado (sem controles) */
#vslVideo {
    pointer-events: none;
}

#vslVideo::-webkit-media-controls {
    display: none !important;
}

#vslVideo::-webkit-media-controls-enclosure {
    display: none !important;
}

#vslVideo::-webkit-media-controls-panel {
    display: none !important;
}

/* ============================================
   CTA BOX - Mobile First
   ============================================ */

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 0 4px;
}

/* Price Display - Mobile */
.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.price-installment {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.price-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.price-inline .separator {
    display: none;
}

.price-inline .price-current {
    font-size: 1.75rem;
}

.price-inline .price-installment {
    font-size: 0.8rem;
}

/* CTA Button - Mobile */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
    }
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    animation: ctaPulseSecondary 2s ease-in-out infinite;
}

@keyframes ctaPulseSecondary {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    }
}

.cta-button.large {
    padding: 18px 24px;
}

.cta-icon {
    display: flex;
    align-items: center;
}

.cta-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-text strong {
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.cta-text small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Trust Badges - Mobile */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    margin-top: 8px;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
}

.trust-badges svg {
    width: 14px;
    height: 14px;
    stroke: var(--success);
}

/* ============================================
   SEÇÕES GENÉRICAS - Mobile First
   ============================================ */

section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.section-title .highlight {
    color: var(--gold-primary);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ============================================
   SEÇÃO PROBLEMA - Mobile First
   ============================================ */

.section-problem {
    background: var(--bg-secondary);
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition-medium);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--danger);
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-highlight {
    text-align: center;
    padding: 16px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 10px;
}

.problem-highlight p {
    font-size: 1rem;
    color: var(--danger);
    font-weight: 600;
}

/* ============================================
   SEÇÃO SOLUÇÃO - Mobile First
   ============================================ */

.section-solution {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    transition: var(--transition-medium);
    width: 100%;
    box-sizing: border-box;
}

.solution-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(123, 104, 238, 0.04) 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.solution-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    margin-bottom: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   SEÇÃO BÔNUS - Mobile First
   ============================================ */

.section-bonus {
    background: var(--bg-secondary);
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid rgba(123, 104, 238, 0.2);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    color: var(--bg-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 0.8rem;
    color: var(--purple-soft);
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.bonus-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bonus-total {
    text-align: center;
}

.total-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px 32px;
}

.total-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: line-through;
    margin: 6px 0;
}

.total-free {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SEÇÃO GARANTIA - Mobile First
   ============================================ */

.section-guarantee {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.guarantee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    background: var(--bg-card);
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 16px;
    padding: 32px 20px;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.guarantee-badge svg {
    width: 60px;
    height: 60px;
    stroke: var(--success);
}

.guarantee-badge span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
}

.guarantee-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.guarantee-highlight {
    color: var(--gold-primary) !important;
    font-weight: 600;
}

.guarantee-bottom {
    background: rgba(46, 204, 113, 0.1);
    border-radius: 8px;
    padding: 14px;
    margin-top: 16px;
    color: var(--success);
    font-size: 1rem;
}

/* ============================================
   SEÇÃO DEPOIMENTOS - Mobile First
   ============================================ */

.section-testimonials {
    background: var(--bg-secondary);
}

/* Video Testimonials Grid - Mobile First */
.video-testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-testimonial-card {
    width: 100%;
}

.video-testimonial-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9 / 16;
    max-height: 400px;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition-medium);
}

.video-testimonial-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.video-testimonial-play {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    animation: testimonialPlayPulse 2s ease-in-out infinite;
}

.video-testimonial-play svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
    color: var(--bg-primary);
}

@keyframes testimonialPlayPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.video-testimonial-text {
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-testimonial-wrapper.playing .video-testimonial-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Tablet - 2 colunas */
@media (min-width: 480px) {
    .video-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .video-testimonial-wrapper {
        max-height: 350px;
    }
    
    /* Centraliza o 5º vídeo */
    .video-testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Desktop - 5 colunas */
@media (min-width: 900px) {
    .video-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    
    .video-testimonial-wrapper {
        max-height: 320px;
    }
    
    .video-testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .video-testimonial-play {
        width: 50px;
        height: 50px;
    }
    
    .video-testimonial-play svg {
        width: 20px;
        height: 20px;
    }
    
    .video-testimonial-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   SEÇÃO URGÊNCIA - Mobile First
   ============================================ */

.section-urgency {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #1a0a0a 100%);
}

.urgency-card {
    text-align: center;
}

.urgency-icon {
    margin-bottom: 20px;
}

.urgency-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--danger);
    animation: urgencyPulse 1.5s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.urgency-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.urgency-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.urgency-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: left;
}

.urgency-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--danger);
    flex-shrink: 0;
}

.urgency-final {
    font-size: 1.125rem;
    color: var(--text-primary);
}

.urgency-final strong {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   SEÇÃO CTA FINAL - Mobile First
   ============================================ */

.section-final-cta {
    background: linear-gradient(180deg, #1a0a0a 0%, var(--bg-primary) 100%);
    padding: 60px 0;
}

.final-cta-content {
    text-align: center;
    position: relative;
}

.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    line-height: 1.3;
}

.final-cta-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.final-offer {
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: var(--shadow-gold);
}

.offer-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.include-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
    margin-top: 1px;
}

.include-item.bonus-item {
    color: var(--purple-soft);
    font-weight: 600;
}

.include-item.guarantee-item {
    color: var(--success);
    font-weight: 600;
}

.offer-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 16px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
}

.price-from, .price-to {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-from span:first-child,
.price-to span:first-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-old-big {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    line-height: 1;
}

.price-installment-big {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.final-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.final-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.final-trust svg {
    width: 14px;
    height: 14px;
    stroke: var(--success);
}

/* ============================================
   FOOTER - Mobile First
   ============================================ */

.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0 100px;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   STICKY CTA - Mobile First
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 16px;
    z-index: 999;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.sticky-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sticky-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.sticky-price-installment {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sticky-button {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    color: var(--bg-primary);
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-fast);
    animation: stickyPulse 2s infinite;
}

@keyframes stickyPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.5); }
}

/* ============================================
   NOTIFICAÇÃO DE PROVA SOCIAL - Mobile First
   ============================================ */

.social-notification {
    position: fixed;
    bottom: 85px;
    left: 12px;
    right: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: var(--shadow-card);
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.social-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    width: 36px;
    height: 36px;
    background: rgba(46, 204, 113, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
}

.notification-text {
    display: flex;
    flex-direction: column;
}

.notification-text strong {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.notification-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.25s; }

/* ============================================
   TABLET (min-width: 480px)
   ============================================ */

@media (min-width: 480px) {
    .container {
        padding: 0 24px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .header-logo {
        height: 32px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button svg {
        width: 28px;
        height: 28px;
    }
    
    .price-display {
        flex-direction: row;
        gap: 12px;
        align-items: baseline;
    }
    
    .price-inline {
        flex-direction: row;
        gap: 8px;
        align-items: baseline;
    }
    
    .price-inline .separator {
        display: inline;
        color: var(--text-muted);
    }
    
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .trust-badges span {
        font-size: 12px;
    }
    
    .problem-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
    
    .sticky-content {
        flex-direction: row;
        justify-content: space-between;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sticky-button {
        width: auto;
        min-width: 200px;
    }
    
    .offer-price-box {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
    
    .final-trust {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

/* ============================================
   TABLET LARGE (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .hero-vsl {
        padding: 110px 0 70px;
    }
    
    .header-logo {
        height: 36px;
    }
    
    .urgency-timer {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .divine-badge {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-button svg {
        width: 32px;
        height: 32px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        max-width: 450px;
    }
    
    .cta-text strong {
        font-size: 1rem;
    }
    
    .cta-text small {
        font-size: 0.875rem;
    }
    
    .price-current {
        font-size: 2.25rem;
    }
    
    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solution-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solution-card.featured {
        grid-column: span 2;
    }
    
    .bonus-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .guarantee-card {
        flex-direction: row;
        text-align: left;
        padding: 40px;
        gap: 40px;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .urgency-card h2 {
        font-size: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-offer {
        padding: 40px;
        max-width: 650px;
        margin: 0 auto;
    }
    
    .price-current-big {
        font-size: 3rem;
    }
    
    .social-notification {
        left: 24px;
        right: auto;
        max-width: 300px;
    }
}

/* ============================================
   DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    .hero-vsl {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .video-container {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .problem-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
    }
    
    .cta-button.primary:hover {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }
    
    .problem-card:hover,
    .solution-card:hover,
    .bonus-card:hover,
    .testimonial-card:hover {
        transform: translateY(-5px);
    }
    
    .footer {
        padding-bottom: 120px;
    }
}

/* ============================================
   DESKTOP LARGE (min-width: 1200px)
   ============================================ */

@media (min-width: 1200px) {
    .container {
        max-width: 1100px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
}
