/* ============================================
   DO CRISTO - NOVA ESTRUTURA
   Quiz Funnel + VSL + Sales Page
   Otimizado para Conversão Máxima
   ============================================ */

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

:root {
    /* Cores Base */
    --bg-primary: #0a0a12;
    --bg-secondary: #12121f;
    --bg-card: rgba(20, 20, 35, 0.95);
    --bg-card-solid: #14142a;
    
    /* Dourado (Divino) */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #B8960C;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    /* Cores de Apoio */
    --purple-divine: #7B68EE;
    --purple-soft: #B8A8D9;
    --blue-celestial: #4A6FA5;
    
    /* Texto */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Status */
    --success: #2ECC71;
    --success-dark: #27ae60;
    --danger: #E74C3C;
    --warning: #F39C12;
    
    /* Sombras */
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.4);
    --shadow-button: 0 8px 30px rgba(212, 175, 55, 0.4);
    
    /* Fontes */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   EFEITOS DE FUNDO
   ============================================ */

.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.divine-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 80vh;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08) 0%, rgba(123, 104, 238, 0.04) 30%, transparent 60%);
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

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

/* ============================================
   CONTAINER
   ============================================ */

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 900px;
    }
}

/* ============================================
   HEADER MINIMALISTA
   ============================================ */

.header {
    padding: 16px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
}

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

/* ============================================
   QUIZ STYLES
   ============================================ */

.quiz-container {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.quiz-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px var(--gold-glow);
}

.progress-text {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.quiz-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px 24px;
    box-shadow: var(--shadow-card);
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.4;
}

.quiz-question .highlight {
    color: var(--gold-primary);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    -webkit-tap-highlight-color: transparent;
}

/* Hover apenas para dispositivos com mouse */
@media (hover: hover) and (pointer: fine) {
    .quiz-option:hover {
        border-color: var(--gold-primary);
        background: rgba(212, 175, 55, 0.05);
        transform: translateX(5px);
    }
}

.quiz-option.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Estado de toque ativo (feedback visual no mobile) */
.quiz-option:active {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

/* Reset para estados de focus no mobile */
.quiz-option:focus {
    outline: none;
}

/* Garantir que opções não selecionadas voltem ao estado padrão */
.quiz-option:not(.selected) {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    transform: none;
}

.option-indicator {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quiz-option.selected .option-indicator {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
}

.option-indicator svg {
    width: 14px;
    height: 14px;
    stroke: var(--bg-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.quiz-option.selected .option-indicator svg {
    opacity: 1;
}

.option-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.quiz-option.selected .option-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* Quiz Intro */
.quiz-intro {
    text-align: center;
    padding: 20px 0;
}

.quiz-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.quiz-intro-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.quiz-intro-title .highlight {
    color: var(--gold-primary);
    display: block;
}

.quiz-intro-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.quiz-intro-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

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

.btn-start-quiz {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    color: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
    animation: btnPulseStrong 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-start-quiz::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 2s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes btnPulseStrong {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.9);
    }
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.8);
    }
}

.btn-start-quiz:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

/* Quiz Loading */
.quiz-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.quiz-loading.active {
    display: flex;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.loading-subtext {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ============================================
   RESULTADO / PRESELL PAGE
   ============================================ */

.resultado-container {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.resultado-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    animation: fadeInUp 0.6s ease;
}

.resultado-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(123, 104, 238, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconGlow 3s ease-in-out infinite;
}

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

.resultado-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold-primary);
}

.resultado-greeting {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

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

.resultado-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.resultado-message strong {
    color: var(--text-primary);
}

.resultado-highlight {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold-primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 32px;
    text-align: left;
}

.resultado-highlight p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.resultado-highlight p strong {
    color: var(--gold-light);
}

.btn-ver-solucao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    color: var(--bg-primary);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
    animation: btnPulseStrong 1.5s ease-in-out infinite;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.btn-ver-solucao::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 2s infinite;
}

.btn-ver-solucao:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.resultado-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.resultado-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

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

/* ============================================
   VSL PAGE STYLES
   ============================================ */

.vsl-hero {
    padding: 30px 0 40px;
    text-align: center;
}

.vsl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.vsl-badge svg {
    width: 16px;
    height: 16px;
}

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

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

.vsl-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* Video Container */
.video-section {
    margin-bottom: 32px;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.video-glow {
    position: absolute;
    top: -15%;
    left: -15%;
    right: -15%;
    bottom: -15%;
    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: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(123, 104, 238, 0.2), 0 0 100px rgba(212, 175, 55, 0.1);
    border: 2px 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;
}

/* Play Overlay */
.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.7);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease;
}

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

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.6);
    animation: playPulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 80px rgba(212, 175, 55, 0.8);
    }
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 6px;
    fill: var(--bg-primary);
}

.play-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.7); }
}

/* Progress Bar */
.video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

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

/* Sound Notice */
.sound-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.sound-notice svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
    animation: soundPulse 1.5s ease-in-out infinite;
}

@keyframes soundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.sound-notice span {
    font-size: 0.95rem;
    color: var(--gold-primary);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 40px 0;
    text-align: center;
}

.cta-card {
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 40px 24px;
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.cta-header {
    margin-bottom: 28px;
}

.cta-eyebrow {
    font-size: 14px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

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

/* Price Display */
.price-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 24px;
}

.price-from {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-old {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    line-height: 1;
    margin-bottom: 8px;
}

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

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.1));
    border: 2px solid rgba(46, 204, 113, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 16px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(46, 204, 113, 0.2); }
    50% { box-shadow: 0 0 25px rgba(46, 204, 113, 0.4); }
}

.price-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    color: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
    position: relative;
    overflow: hidden;
    animation: btnPulseStrong 1.5s ease-in-out infinite;
}

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

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.cta-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

.cta-button-text strong {
    font-size: 1.1rem;
    line-height: 1.3;
}

.cta-button-text small {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

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

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

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    text-align: left;
}

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

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

.guarantee-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SALES PAGE SECTIONS
   ============================================ */

.sales-section {
    padding: 50px 0;
}

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

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

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

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

/* Problem Section */
.problem-section {
    background: var(--bg-secondary);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.problem-icon {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

/* Solution Section */
.solution-section {
    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.15);
    border-radius: 14px;
    padding: 24px 20px;
}

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

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

.solution-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-primary);
}

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

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

/* Bonus Section */
.bonus-section {
    background: var(--bg-secondary);
}

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

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

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--purple-divine));
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 14px;
    color: var(--purple-soft);
    margin-bottom: 10px;
}

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

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

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

.bonus-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: 14px;
    padding: 24px 40px;
}

.bonus-total-label {
    font-size: 14px;
    color: var(--text-muted);
}

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

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

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 14px;
    padding: 24px 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--purple-divine));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-primary);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-primary);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.guarantee-card {
    background: var(--bg-card);
    border: 2px solid rgba(46, 204, 113, 0.25);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.guarantee-days {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 16px;
}

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

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

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

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-right: 16px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Security Section */
.security-section {
    padding: 40px 0;
    text-align: center;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 18px;
}

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

.security-badge span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.security-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Final CTA Section */
.final-cta-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-primary), rgba(212, 175, 55, 0.03));
}

/* ============================================
   FOOTER
   ============================================ */

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

.footer-logo {
    height: 36px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.footer-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

.footer-cnpj {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.5;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 480px) {
    .quiz-question {
        font-size: 1.65rem;
    }
    
    .quiz-intro-title {
        font-size: 2.25rem;
    }
    
    .vsl-title {
        font-size: 2.1rem;
    }
    
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .quiz-intro-trust {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .resultado-trust {
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .quiz-card {
        padding: 50px 40px;
    }
    
    .quiz-question {
        font-size: 1.85rem;
    }
    
    .quiz-intro-title {
        font-size: 2.5rem;
    }
    
    .vsl-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 50px 40px;
    }
    
    .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;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .guarantee-card {
        padding: 50px;
    }
    
    .play-button {
        width: 120px;
        height: 120px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1024px) {
    .quiz-intro-title {
        font-size: 2.75rem;
    }
    
    .vsl-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .price-current {
        font-size: 3.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.hidden {
    display: none !important;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-24 {
    margin-top: 24px;
}

/* ============================================
   NOVOS ELEMENTOS DA SALES PAGE
   ============================================ */

/* Video Message (abaixo do vídeo) */
.video-message {
    text-align: center;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.video-message p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.video-message strong {
    color: var(--gold-primary);
}

/* Problem Conclusion */
.problem-conclusion {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
}

.problem-conclusion p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.problem-conclusion strong {
    color: var(--text-primary);
}

/* Solution Intro */
.solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.solution-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.solution-intro p:last-child {
    margin-bottom: 0;
}

.solution-intro strong {
    color: var(--gold-primary);
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Testimonials Count */
.testimonials-count {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
}

.testimonials-count p {
    font-size: 1.15rem;
    color: var(--gold-primary);
    margin: 0;
}

.testimonials-count strong {
    color: var(--gold-light);
}

/* Offer Summary (dentro do CTA) */
.offer-summary {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 14px;
    padding: 24px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.offer-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.offer-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

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

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

/* Video Controls Hidden */
#vslVideo {
    pointer-events: none;
}

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

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

/* Disable text selection on buttons */
.cta-button, .btn-start-quiz, .btn-ver-solucao, .quiz-option {
    user-select: none;
    -webkit-user-select: none;
}

/* ============================================
   VIDEO TESTIMONIALS
   ============================================ */

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

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

.video-testimonial-card {
    position: relative;
}

.video-testimonial-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9 / 16;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.video-testimonial-wrapper:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.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.5);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.video-testimonial-play {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: playPulse 2s ease-in-out infinite;
}

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

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

/* ============================================
   URGENCY BOX
   ============================================ */

.urgency-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(231, 76, 60, 0.4);
    }
}

.urgency-icon {
    width: 44px;
    height: 44px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.urgency-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

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

.urgency-text strong {
    color: var(--danger);
}

.urgency-text small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   STICKY CTA
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    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: 14px 16px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.sticky-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

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

.sticky-button {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--bg-primary);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    animation: btnPulseStrong 1.5s ease-in-out infinite;
}

/* ============================================
   SOCIAL NOTIFICATION
   ============================================ */

.social-notification {
    position: fixed;
    bottom: 90px;
    left: 16px;
    background: var(--bg-card-solid);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    z-index: 998;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 280px;
}

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

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

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

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

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

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

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

/* ============================================
   CONVERSION MODAL
   ============================================ */

.conversion-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.conversion-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.conversion-modal {
    position: relative;
    background: var(--bg-card-solid);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 40px 28px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.conversion-modal-overlay.active .conversion-modal {
    transform: scale(1);
}

.modal-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.modal-content {
    position: relative;
    z-index: 1;
}

.modal-logo {
    height: 40px;
    margin-bottom: 24px;
}

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

.modal-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.modal-subtitle strong {
    color: var(--gold-primary);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 28px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    animation: btnPulseStrong 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.modal-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 2s infinite;
}

.btn-sparkle {
    font-size: 1.2rem;
}

.modal-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-secondary);
}

/* Adjust footer padding when sticky is visible */
body.sticky-active .footer {
    padding-bottom: 100px;
}

/* ============================================
   SECTION CTA BUTTONS - Em todas as seções
   ============================================ */

.section-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    color: var(--bg-primary);
    padding: 18px 24px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    animation: btnPulseStrong 1.5s ease-in-out infinite;
}

.section-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 2s infinite;
}

.section-cta-price {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.section-cta-price small {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.section-cta-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero CTA - estilo especial */
.hero-cta {
    margin-top: 16px;
    max-width: 100%;
}

/* ============================================
   MOBILE FIRST - Correções de scroll horizontal
   ============================================ */

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Garantir que nenhum elemento vaze */
.container {
    overflow-x: hidden;
}

.video-container {
    overflow: hidden;
}

.video-glow {
    max-width: 100vw;
}

/* Fix para elementos que podem causar scroll horizontal */
.divine-glow {
    max-width: 100vw;
    overflow: hidden;
}

.bg-effects {
    max-width: 100vw;
}

/* Fix para grids em mobile */
.video-testimonials-grid {
    overflow-x: hidden;
}

.solution-grid,
.bonus-grid,
.problem-list {
    overflow-x: hidden;
}

/* Garantir que modais não causem scroll */
.conversion-modal-overlay {
    overflow: hidden;
}

/* Fix para SVGs que podem vazar */
svg {
    max-width: 100%;
    flex-shrink: 0;
}

/* Ajustes específicos para mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .video-testimonial-wrapper {
        border-radius: 10px;
    }
    
    .video-testimonial-play {
        width: 50px;
        height: 50px;
    }
    
    .video-testimonial-play svg {
        width: 20px;
        height: 20px;
    }
    
    .video-testimonial-text {
        font-size: 11px;
    }
    
    .section-cta-button {
        padding: 16px 20px;
    }
    
    .section-cta-price {
        font-size: 1.2rem;
    }
    
    .section-cta-text {
        font-size: 0.85rem;
    }
    
    .urgency-box {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
    }
    
    .urgency-text {
        text-align: center;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .sticky-content {
        gap: 10px;
    }
    
    .sticky-button {
        font-size: 0.8rem;
        padding: 12px 18px;
    }
    
    .sticky-price-current {
        font-size: 1.2rem;
    }
    
    .social-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 80px;
    }
    
    .notification-content {
        gap: 10px;
    }
    
    .notification-icon {
        width: 32px;
        height: 32px;
    }
    
    .notification-text strong {
        font-size: 0.85rem;
    }
    
    .notification-text span {
        font-size: 0.75rem;
    }
}

/* Fix específico para iPhones antigos */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}
