/* =====================================================
   CARTA DE DEUS — QUIZ EMOCIONAL
   Design Divino | Alta Conversão
   ===================================================== */

/* Variables */
:root {
    --bg-dark: #0a0a0f;
    --bg-card: #13131a;
    --bg-elevated: #1a1a24;
    
    --gold: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #B8962E;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --divine-purple: #4a3a6e;
    --divine-blue: #2a3a5e;
    
    --cream: #FDF8E8;
    --cream-dark: #E8DFC8;
    
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dark: #2a2a2a;
    
    --font-display: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* =====================================================
   LOADER
   ===================================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-cross {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--gold);
    animation: crossGlow 2s ease-in-out infinite;
}

.loader-cross svg {
    width: 100%;
    height: 100%;
}

.loader-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

.loader-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.2); }
}

/* =====================================================
   APP CONTAINER
   ===================================================== */
.app {
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.app.visible {
    opacity: 1;
}

/* Particles Background */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 8s ease-in-out infinite;
}

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

/* =====================================================
   SCREENS
   ===================================================== */
.screen {
    display: none;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.screen.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.screen-content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

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

/* =====================================================
   INTRO SCREEN
   ===================================================== */
.intro-screen {
    text-align: center;
    padding: 60px 0 40px;
}

.divine-light {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(212, 175, 55, 0.05) 40%,
        transparent 70%);
    pointer-events: none;
}

.intro-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    color: var(--gold);
    animation: starGlow 3s ease-in-out infinite;
}

.intro-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes starGlow {
    0%, 100% { opacity: 0.7; filter: drop-shadow(0 0 10px var(--gold-glow)); }
    50% { opacity: 1; filter: drop-shadow(0 0 25px var(--gold-glow)); }
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease 0.2s both;
}

.intro-title span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    display: inline-block;
}

.intro-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-style: italic;
    animation: fadeIn 0.6s ease 0.3s both;
}

.intro-promise {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    text-align: left;
    margin-bottom: 32px;
    animation: fadeIn 0.6s ease 0.4s both;
}

.promise-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.promise-icon svg {
    width: 100%;
    height: 100%;
}

.intro-promise p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.intro-footer {
    margin-top: 24px;
    animation: fadeIn 0.6s ease 0.6s both;
}

.intro-footer span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* =====================================================
   PAIN BULLETS (NOVO - Agitação)
   ===================================================== */
.pain-bullets {
    text-align: left;
    margin-bottom: 24px;
    animation: fadeIn 0.6s ease 0.35s both;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08), rgba(231, 76, 60, 0.03));
    border-left: 3px solid rgba(231, 76, 60, 0.6);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 10px;
}

.pain-item:last-child {
    margin-bottom: 0;
}

.pain-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-item p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   PROGRESS BAR HORIZONTAL (NOVO)
   ===================================================== */
.progress-bar-container {
    width: 100%;
    max-width: 280px;
    height: 8px;
    background: var(--bg-elevated);
    border-radius: 10px;
    margin: 12px auto 8px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.progress-text {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: 4px;
}

/* =====================================================
   DIVINE BUTTON
   ===================================================== */
.btn-divine {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--bg-dark);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease 0.5s both, shimmer 3s ease-in-out infinite;
}

.btn-divine:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-divine:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.btn-divine:active:not(:disabled) {
    transform: scale(0.98);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-divine svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-divine:hover svg {
    transform: translateX(4px);
}

/* =====================================================
   QUESTION SCREENS
   ===================================================== */
.question-screen {
    padding-top: 20px;
}

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

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

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.progress-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-elevated);
    transition: all 0.3s ease;
}

.progress-dots .dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.progress-dots .dot.completed {
    background: var(--gold);
    opacity: 0.5;
}

/* Divine Text / Quote */
.question-divine-text {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    border-radius: var(--radius-md);
}

.divine-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.divine-source {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Divine Voice */
.question-divine-voice {
    text-align: center;
    margin-bottom: 32px;
}

.question-divine-voice p {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
}

.user-name-display {
    color: var(--gold);
}

/* Question Title */
.question-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 32px;
}

/* Name Input */
.name-input-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.name-input {
    width: 100%;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s ease;
}

.name-input::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.name-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
}

.input-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.name-input:focus + .input-glow {
    opacity: 0.3;
}

/* =====================================================
   OPTION CARDS
   ===================================================== */
.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    background: var(--bg-elevated);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.option-card:active {
    transform: scale(0.98);
}

.option-card.selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border-color: var(--gold);
    box-shadow: 0 0 25px var(--gold-glow);
}

.option-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

/* =====================================================
   PREPARING SCREEN
   ===================================================== */
.preparing-screen {
    text-align: center;
    padding: 60px 0;
}

.preparing-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    animation: preparingPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes preparingPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.preparing-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.quill {
    width: 100%;
    height: 100%;
    color: var(--gold);
    animation: quillWrite 1.5s ease-in-out infinite;
}

.quill svg {
    width: 100%;
    height: 100%;
}

@keyframes quillWrite {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.preparing-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

.preparing-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.preparing-title span {
    color: var(--gold);
}

.preparing-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.prep-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.prep-step.active {
    opacity: 1;
}

.prep-step.completed {
    opacity: 0.7;
}

.step-check {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.prep-step.active .step-check,
.prep-step.completed .step-check {
    color: var(--gold);
}

.step-check svg {
    width: 100%;
    height: 100%;
}

.prep-step span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
}

.preparing-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* =====================================================
   LETTER SCREEN
   ===================================================== */
.letter-screen {
    padding: 20px 0 40px;
}

/* Envelope */
.envelope-container {
    text-align: center;
    padding: 60px 0;
    cursor: pointer;
}

.envelope-container.opened {
    display: none;
}

.envelope {
    position: relative;
    width: 200px;
    height: 140px;
    margin: 0 auto 24px;
    perspective: 1000px;
}

.envelope-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8B7355, #A08060);
    border-radius: 4px;
}

.envelope-front {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(135deg, #C4A77D, #D4B896);
    border-radius: 0 0 4px 4px;
    z-index: 2;
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, #B8986A, #C4A77D);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    transform-origin: top center;
    z-index: 3;
    transition: transform 0.6s ease;
}

.envelope-container:hover .envelope-flap {
    transform: rotateX(30deg);
}

.envelope-seal {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    z-index: 4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.envelope-seal svg {
    width: 20px;
    height: 20px;
}

.envelope-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    animation: fadeInOut 2s ease-in-out infinite;
}

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

/* Letter Container */
.letter-container {
    display: none;
    animation: letterReveal 0.8s ease;
}

.letter-container.visible {
    display: block;
}

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

/* Letter Paper */
.letter-paper {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    margin-bottom: 32px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.letter-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.letter-header {
    text-align: center;
    margin-bottom: 24px;
}

.letter-cross {
    font-size: 2.5rem;
    color: var(--gold-dark);
    opacity: 0.6;
}

.letter-content {
    color: var(--text-dark);
}

.letter-greeting {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.letter-greeting span {
    color: var(--gold-dark);
}

.letter-paragraph {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.letter-paragraph strong {
    color: var(--gold-dark);
}

.letter-highlight {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-align: center;
    margin: 32px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border-radius: var(--radius-md);
}

.letter-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: #2a2a2a;
    margin: 32px 0 24px;
}

.letter-signature {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: #4a4a4a;
    margin-top: 32px;
}

.letter-signed {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-top: 8px;
}

/* =====================================================
   CTA DENTRO DA CARTA (NOVO)
   ===================================================== */
.letter-cta-inside {
    margin: 32px 0;
    text-align: center;
}

.btn-cta-letter {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-dark);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 150, 46, 0.4);
}

.btn-cta-letter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 150, 46, 0.5);
}

.letter-cta-guarantee {
    margin-top: 12px;
}

.letter-cta-guarantee span {
    font-size: 0.8125rem;
    color: #27AE60;
    font-weight: 500;
}

/* =====================================================
   CTA COM GARANTIA INTEGRADA (NOVO)
   ===================================================== */
.btn-cta-with-guarantee {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--bg-dark);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.btn-cta-with-guarantee:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.btn-cta-with-guarantee.final {
    background: linear-gradient(135deg, #27AE60, #2ECC71, #58D68D);
    background-size: 200% 200%;
}

.btn-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.btn-text-main {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
}

.btn-text-sub {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

/* =====================================================
   ANCORAGEM DE PREÇO (NOVO)
   ===================================================== */
.price-anchor {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    text-align: left;
}

.price-anchor p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
}

.price-anchor p:last-child {
    margin-bottom: 0;
    color: var(--gold);
    font-weight: 600;
}

/* =====================================================
   MODAL DE MICRO-COMMITMENT (COM SCROLL)
   ===================================================== */
.micro-commitment-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.micro-commitment-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    max-height: 90vh;
    max-height: 90dvh;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
    overflow: hidden;
}

.modal-content-scroll {
    padding: 28px 20px;
    text-align: center;
    overflow-y: auto;
    max-height: 90vh;
    max-height: 90dvh;
    -webkit-overflow-scrolling: touch;
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* Legacy support */
.modal-content {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
}

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

.modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: modalIconPulse 2s ease-in-out infinite;
}

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

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.modal-title span {
    color: var(--gold);
}

.modal-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

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

.modal-btn-yes {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--bg-dark);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s ease-in-out infinite;
}

.modal-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--gold-glow);
}

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

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

.modal-guarantee {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-guarantee span {
    font-size: 0.8125rem;
    color: #27AE60;
    font-weight: 500;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.letter-cta-section {
    padding: 0 0 32px;
}

.app-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.app-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.app-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.app-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--gold);
    font-size: 0.875rem;
}

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

/* Offer Box */
.offer-box {
    background: linear-gradient(135deg, var(--bg-card), rgba(212, 175, 55, 0.08));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 24px;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.offer-includes {
    text-align: left;
    margin-bottom: 24px;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.include-item:last-child {
    border-bottom: none;
}

.include-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.include-item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.include-item span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Price */
.offer-price {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.price-value {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

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

/* CTA Button */
.btn-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--bg-dark);
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.btn-cta.final {
    background: linear-gradient(135deg, #2d5a3d, #3d7a4d, #4d9a5d);
    background-size: 200% 200%;
}

/* =====================================================
   URGENCY BANNER
   ===================================================== */
.urgency-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
    border: 2px solid rgba(231, 76, 60, 0.5);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { border-color: rgba(231, 76, 60, 0.5); }
    50% { border-color: rgba(231, 76, 60, 0.9); }
}

.urgency-icon {
    width: 32px;
    height: 32px;
    color: #E74C3C;
    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: 100%;
    height: 100%;
}

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

.urgency-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.urgency-timer {
    font-size: 1.75rem;
    font-weight: 800;
    color: #E74C3C;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.urgency-pulse {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    animation: urgencySweep 2s ease-in-out infinite;
}

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

/* =====================================================
   GUARANTEE BOX (Visual Forte)
   ===================================================== */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.12), rgba(39, 174, 96, 0.05));
    border: 2px solid rgba(39, 174, 96, 0.4);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.guarantee-shield {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.guarantee-shield svg {
    width: 28px;
    height: 28px;
}

.guarantee-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 8px;
}

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

.guarantee-content strong {
    color: #27AE60;
}

.guarantee-highlight {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(39, 174, 96, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2ECC71;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.faq-question:hover {
    background: var(--bg-elevated);
}

.faq-question span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
    padding-right: 12px;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Legacy guarantee badge (keep for compatibility) */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-md);
    text-align: left;
}

.guarantee-badge svg {
    width: 32px;
    height: 32px;
    color: #27AE60;
    flex-shrink: 0;
}

.guarantee-badge strong {
    display: block;
    font-size: 0.9375rem;
    color: #27AE60;
}

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

/* =====================================================
   APP VIDEO SECTION
   ===================================================== */
.app-video-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.app-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.app-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

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

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

.play-button {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--bg-dark);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px var(--gold-glow);
}

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

.play-button svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.video-play-overlay span {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

/* =====================================================
   VIDEO TESTIMONIALS CAROUSEL
   ===================================================== */
.video-testimonials-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.video-testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.video-testimonial-slide {
    flex: 0 0 200px;
    scroll-snap-align: start;
}

.video-testimonial-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}

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

.video-testimonial-wrapper .video-play-overlay {
    gap: 8px;
}

.video-testimonial-wrapper .play-button {
    width: 48px;
    height: 48px;
}

.video-testimonial-wrapper .play-button svg {
    width: 22px;
    height: 22px;
}

.video-testimonial-name {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gold);
    margin-top: 10px;
    font-weight: 500;
}

.carousel-indicator {
    text-align: center;
    margin-top: 8px;
}

.carousel-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Intermediate CTA */
.intermediate-cta {
    margin: 32px 0;
    text-align: center;
}

.more-testimonials {
    margin-top: 24px;
    padding-top: 24px;
}

/* =====================================================
   TESTIMONIALS (TEXT)
   ===================================================== */
.testimonials-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--gold);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--divine-purple), var(--divine-blue));
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gold-light);
}

.testimonial-header strong {
    display: block;
    font-size: 0.9375rem;
}

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

.testimonial-card p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.875rem;
}

/* =====================================================
   FINAL SECTION
   ===================================================== */
.final-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.final-message {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.final-message span {
    color: var(--gold);
}

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

.urgency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: #E74C3C;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-logo {
    height: 28px;
    opacity: 0.6;
    margin-bottom: 12px;
}

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

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

.footer-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* =====================================================
   FIXED CTA (MOBILE)
   ===================================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 16px 24px;
    background: linear-gradient(to top, var(--bg-dark) 85%, transparent);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fixed-cta.visible {
    display: flex;
}

.fixed-timer {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #E74C3C;
}

.fixed-timer span {
    font-weight: 800;
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-dark);
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px var(--gold-glow);
    animation: fixedPulse 2s ease-in-out infinite;
}

@keyframes fixedPulse {
    0%, 100% { box-shadow: 0 4px 20px var(--gold-glow); }
    50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5); }
}

.fixed-btn span:first-child {
    font-size: 0.875rem;
}

.fixed-price {
    font-size: 1rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .fixed-cta {
        display: none !important;
    }
}

/* =====================================================
   SOCIAL NOTIFICATION
   ===================================================== */
.social-notification {
    position: fixed;
    bottom: 100px;
    left: 16px;
    right: 16px;
    max-width: 340px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
}

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

.notification-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--divine-purple), var(--gold));
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.notification-avatar svg {
    width: 20px;
    height: 20px;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.notification-action {
    font-size: 0.75rem;
    color: var(--gold);
}

.notification-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .social-notification {
        left: auto;
        right: 20px;
        bottom: 20px;
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 768px) {
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-title span {
        font-size: 3rem;
    }
    
    .letter-paper {
        padding: 50px 40px;
    }
    
    .letter-greeting {
        font-size: 2.5rem;
    }
}

@media (max-width: 359px) {
    .intro-title {
        font-size: 1.75rem;
    }
    
    .intro-title span {
        font-size: 2rem;
    }
    
    .question-divine-voice p {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
}

/* Safe area for notch devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .letter-screen {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
    
    .fixed-cta {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }
    
    .letter-container.visible + .fixed-cta.visible ~ .letter-screen {
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
}

/* =====================================================
   NOVOS ELEMENTOS - OTIMIZAÇÕES DE CONVERSÃO
   ===================================================== */

/* Letter CTA Hint */
.letter-cta-hint {
    font-size: 0.875rem;
    color: var(--gold);
    margin-top: 12px;
    font-style: italic;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Ancoragem de Preço Visceral */
.price-anchor {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.anchor-question {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
    font-style: italic;
}

.anchor-comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.anchor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(231, 76, 60, 0.08);
    border-radius: var(--radius-sm);
}

.anchor-item.crossed span,
.anchor-item.crossed strong {
    text-decoration: line-through;
    color: var(--text-muted);
}

.anchor-item strong {
    color: #E74C3C;
}

.anchor-result {
    font-size: 1rem;
    color: var(--gold);
    text-align: center;
    font-weight: 600;
}

.anchor-result strong {
    color: var(--gold-light);
}

/* Final Urgency Box */
.final-urgency-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.final-urgency-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.final-urgency-highlight {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.final-urgency-highlight strong {
    color: var(--gold);
}

.final-urgency-question {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold);
}

/* Modal Subtext */
.modal-subtext {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    font-style: italic;
}

/* Unique Mechanism Section */
.unique-mechanism {
    background: linear-gradient(135deg, var(--bg-card), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.mechanism-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mechanism-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mechanism-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.mechanism-content {
    flex: 1;
}

.mechanism-content strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

/* =====================================================
   NOVOS ESTILOS - VERSÃO 10/10
   ===================================================== */

/* LIVE COUNTER */
.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.4);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeIn 0.5s ease;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #27AE60;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-counter span {
    font-size: 0.8125rem;
    color: #27AE60;
}

.live-counter strong {
    color: #2ECC71;
}

/* INTRO SUBTITLE HOOK */
.intro-subtitle-hook {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    animation: fadeIn 0.6s ease 0.3s both;
}

.intro-subtitle-hook strong {
    color: var(--gold);
}

/* INTRO QUESTION */
.intro-question {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-md);
    animation: fadeIn 0.6s ease 0.4s both;
}

.question-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.question-revelation {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.highlight-word {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
}

/* INTRO SCARCITY */
.intro-scarcity {
    margin-top: 16px;
    animation: fadeIn 0.6s ease 0.7s both;
}

.intro-scarcity span {
    font-size: 0.8125rem;
    color: #E74C3C;
    font-style: italic;
}

/* STORY SECTION */
.story-section {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 32px;
    position: relative;
}

.story-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.story-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.story-highlight {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gold-light);
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
    line-height: 1.6;
}

.story-cta {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    color: var(--gold);
    margin-top: 20px;
}

/* BONUS STACK */
.bonus-stack {
    margin-bottom: 24px;
}

.stack-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stack-item.main-item {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.stack-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stack-info {
    flex: 1;
}

.stack-info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stack-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.stack-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.value-original {
    font-size: 0.8125rem;
    color: #E74C3C;
    text-decoration: line-through;
}

.value-included {
    font-size: 0.75rem;
    font-weight: 700;
    color: #27AE60;
    background: rgba(39, 174, 96, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

.stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.stack-total span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.total-crossed {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E74C3C;
    text-decoration: line-through;
}

/* GUARANTEE BOX OFFER */
.guarantee-box-offer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(39, 174, 96, 0.08));
    border: 2px solid #27AE60;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.guarantee-icon-big {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-text-offer h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 8px;
}

.guarantee-text-offer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.guarantee-text-offer strong {
    color: #27AE60;
}

.guarantee-risk {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2ECC71;
    background: rgba(39, 174, 96, 0.2);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

/* PRICE SAVINGS */
.price-savings {
    margin-top: 12px;
}

.price-savings span {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #27AE60;
}

/* EMOTIONAL ANCHOR */
.emotional-anchor {
    text-align: center;
    padding: 16px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-md);
}

.emotional-anchor p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.emotional-anchor p:last-child {
    margin-bottom: 0;
}

.anchor-strong {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-primary);
}

.anchor-strong strong {
    color: var(--gold);
}

/* LIVE SCARCITY BANNER */
.live-scarcity-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.4);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.scarcity-live-dot {
    width: 10px;
    height: 10px;
    background: #27AE60;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

.live-scarcity-banner span {
    font-size: 0.875rem;
    color: #27AE60;
}

.live-scarcity-banner strong {
    color: #2ECC71;
}

/* CONSEQUENCE HOOK */
.consequence-hook {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(231, 76, 60, 0.06));
    border: 2px solid rgba(231, 76, 60, 0.4);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.consequence-text {
    font-size: 1rem;
    color: #E74C3C;
    margin-bottom: 12px;
}

.consequence-result {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.consequence-result strong {
    color: var(--text-primary);
}

.consequence-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold);
}

/* MAIN CTA BUTTON */
.btn-cta-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--bg-dark);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s ease-in-out infinite, ctaPulse 2s ease-in-out infinite;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px var(--gold-glow);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 30px var(--gold-glow); }
    50% { box-shadow: 0 12px 50px rgba(212, 175, 55, 0.5); }
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px var(--gold-glow);
}

/* SPOTS REMAINING */
.spots-remaining {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: var(--radius-md);
    animation: spotsPulse 3s ease-in-out infinite;
}

@keyframes spotsPulse {
    0%, 100% { border-color: rgba(231, 76, 60, 0.3); }
    50% { border-color: rgba(231, 76, 60, 0.7); }
}

.spots-icon {
    font-size: 1.25rem;
}

.spots-remaining span {
    font-size: 0.875rem;
    color: #E74C3C;
}

.spots-remaining strong {
    font-size: 1rem;
}

/* INTERMEDIATE REMINDER */
.intermediate-reminder {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* FINAL URGENCY FEELING */
.final-urgency-feeling {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.final-urgency-feeling strong {
    color: var(--gold);
}

/* LAST CHANCE BOX */
.last-chance-box {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
    border: 2px solid #E74C3C;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    animation: lastChancePulse 2s ease-in-out infinite;
}

@keyframes lastChancePulse {
    0%, 100% { border-color: #E74C3C; }
    50% { border-color: #ff6b6b; }
}

.last-chance-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.last-chance-icon {
    font-size: 1.25rem;
}

.last-chance-title {
    font-size: 1rem;
    font-weight: 800;
    color: #E74C3C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-chance-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA FINAL */
.btn-cta-final {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 22px 24px;
    background: linear-gradient(135deg, #27AE60, #2ECC71, #58D68D);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s ease-in-out infinite, ctaPulse 2s ease-in-out infinite;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.5);
}

/* FINAL REASSURANCE */
.final-reassurance {
    text-align: center;
}

.final-reassurance p {
    font-size: 0.875rem;
    color: #27AE60;
    margin-bottom: 8px;
}

.final-reassurance p:last-child {
    margin-bottom: 0;
}

/* MODAL IMPROVEMENTS */
.modal-guarantee-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.4);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: left;
}

.guarantee-shield-mini {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.modal-guarantee-top p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.modal-guarantee-top strong {
    color: #27AE60;
}

.modal-footer-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* PREÇO NO MODAL */
.modal-price-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    margin-bottom: 20px;
    text-align: center;
}

.modal-price-from {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.modal-price-from s {
    color: #E74C3C;
}

.modal-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.modal-price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
}

.modal-price-value {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.modal-price-cents {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
}

.modal-price-info {
    font-size: 0.8125rem;
    color: #27AE60;
    font-weight: 500;
}

/* Timer no modal */
.modal-urgency strong {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* EXIT INTENT MODAL */
.exit-intent-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-intent-modal.active {
    display: flex;
}

.exit-modal-content {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 2px solid #E74C3C;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.exit-modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.exit-modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.exit-modal-title span {
    color: var(--gold);
}

.exit-modal-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.exit-modal-text strong {
    color: #27AE60;
}

.exit-modal-subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.exit-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s ease;
}

.exit-input::placeholder {
    color: var(--text-muted);
}

.exit-input:focus {
    outline: none;
    border-color: var(--gold);
}

.exit-btn-submit {
    padding: 16px 24px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.exit-modal-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* FIXED CTA IMPROVEMENTS */
.fixed-dot {
    width: 8px;
    height: 8px;
    background: #27AE60;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    display: inline-block;
    margin-right: 4px;
}

.fixed-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================================================
   NOVAS SEÇÕES - VERSÃO 10/10 FINAL
   ===================================================== */

/* EMOTIONAL TRANSITION */
.emotional-transition {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.transition-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.transition-question {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.transition-question strong {
    color: var(--gold);
}

/* FEATURED TESTIMONIAL - Em destaque grande */
.featured-testimonial {
    margin-bottom: 32px;
}

.featured-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.featured-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--gold-glow);
    border: 2px solid var(--gold);
}

.featured-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.featured-video-wrapper .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.featured-name {
    text-align: center;
    font-size: 1rem;
    color: var(--gold);
    margin-top: 16px;
    font-weight: 600;
}

/* AGITATION SECTION - Looping emocional */
.agitation-section {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 32px;
}

.agitation-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.agitation-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(231, 76, 60, 0.08);
    border-left: 3px solid #E74C3C;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.agitation-x {
    color: #E74C3C;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

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

.agitation-revelation {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.6;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
}

.agitation-revelation strong {
    color: var(--gold);
}

/* MODAL URGENCY */
.modal-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.5);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    animation: urgencyBlink 2s ease-in-out infinite;
}

@keyframes urgencyBlink {
    0%, 100% { background: rgba(231, 76, 60, 0.15); }
    50% { background: rgba(231, 76, 60, 0.25); }
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #E74C3C;
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

.modal-urgency span {
    font-size: 0.875rem;
    color: #E74C3C;
}

.modal-urgency strong {
    font-size: 1rem;
    font-weight: 800;
}

/* CONSEQUENCE DETAIL */
.consequence-detail {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.consequence-detail strong {
    color: var(--text-primary);
}

/* APP VIDEO IMPROVEMENTS */
.app-video-subtitle {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.app-video-caption {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* INTERMEDIATE CTA LEAD */
.intermediate-lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.intermediate-reminder {
    text-align: center;
    font-size: 0.875rem;
    color: #27AE60;
    margin-top: 12px;
    font-weight: 500;
}

/* =====================================================
   NOVOS ESTILOS - OTIMIZAÇÃO 10/10 FINAL
   ===================================================== */

/* EMOTIONAL PAUSE - Pausa antes da transição */
.emotional-pause {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    margin: 32px 0;
}

.pause-instruction {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.pause-question {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

.pause-question strong {
    color: var(--gold);
}

/* TRANSITION SUBTEXT */
.transition-subtext {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* FUTURE PROJECTION - Projeção de Futuro */
.future-projection {
    margin: 20px 0;
    text-align: left;
}

.future-item {
    padding: 16px;
    background: rgba(231, 76, 60, 0.06);
    border-left: 3px solid rgba(231, 76, 60, 0.5);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 12px;
}

.future-item.last {
    background: rgba(231, 76, 60, 0.12);
    border-left-color: #E74C3C;
}

.future-time {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #E74C3C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

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

.future-item.last p strong {
    color: #E74C3C;
}

/* CONSEQUENCE FINAL */
.consequence-final {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 16px;
    font-style: italic;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   NOVOS ELEMENTOS 10/10 — OTIMIZAÇÕES SANGUINÁRIAS
   ===================================================== */

/* VÍDEO DE PROVA GRANDE NA INTRO */
.intro-video-proof-big {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 24px;
    text-align: center;
    animation: fadeIn 0.6s ease 0.4s both;
}

.video-proof-wrapper-big {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px var(--gold-glow), 0 0 30px rgba(39, 174, 96, 0.3);
    background: var(--bg-card);
}

.video-proof-wrapper-big video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-proof-wrapper-big .video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10;
}

.video-proof-wrapper-big .play-text {
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
}

.video-proof-name-big {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--gold);
    font-weight: 600;
}

.verified-text {
    color: #27AE60;
}

/* PAIN LEAD */
.pain-lead {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

/* SOCIAL PROOF NA INTRO */
.intro-social-proof {
    text-align: center;
    margin-top: 20px;
}

.intro-social-proof span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.intro-social-proof strong {
    color: var(--gold);
}

/* ESCASSEZ REAL COM VAGAS */
.intro-scarcity-real {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
    border: 2px solid #E74C3C;
    border-radius: var(--radius-md);
    margin-top: 16px;
    animation: scarcityPulse 2s ease-in-out infinite;
}

@keyframes scarcityPulse {
    0%, 100% { 
        border-color: #E74C3C;
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
    }
    50% { 
        border-color: #ff6b6b;
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
    }
}

.scarcity-icon {
    font-size: 1.5rem;
}

.scarcity-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.scarcity-number {
    font-size: 2rem;
    font-weight: 800;
    color: #E74C3C;
    font-family: var(--font-sans);
    animation: numberPulse 1s ease-in-out infinite;
}

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

/* DEPOIMENTO PRINCIPAL ANTES DA OFERTA */
.featured-testimonial-top {
    margin: 32px 0;
    text-align: center;
}

.featured-testimonial-top .featured-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
    border: 2px solid var(--gold);
}

.featured-testimonial-top .featured-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.featured-testimonial-top .video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10;
}

.featured-testimonial-top .play-label {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.featured-testimonial-top .featured-name {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
}

.verified-green {
    color: #27AE60;
}

.featured-testimonial-top .featured-quote {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    margin-top: 8px;
}

/* ANCORAGEM EMOCIONAL BRUTAL */
.emotional-anchor-brutal {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.anchor-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.anchor-comparison {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.anchor-comparison strong {
    color: #E74C3C;
    text-decoration: line-through;
}

.anchor-revelation {
    font-size: 1.0625rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.anchor-revelation strong {
    color: var(--gold);
}

.anchor-daily {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(39, 174, 96, 0.15);
    border-radius: var(--radius-md);
}

.daily-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #27AE60;
}

.daily-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ESCASSEZ COM VAGAS NA OFERTA */
.scarcity-spots-banner {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
    border: 2px solid #E74C3C;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    animation: scarcityPulse 2s ease-in-out infinite;
}

.spots-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.spots-icon-urgent {
    font-size: 2rem;
    animation: iconShake 1s ease-in-out infinite;
}

.spots-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.spots-info .spots-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E74C3C;
    font-family: var(--font-sans);
    animation: numberPulse 1s ease-in-out infinite;
}

.spots-buyers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(231, 76, 60, 0.3);
}

.spots-buyers span {
    font-size: 0.8125rem;
    color: #27AE60;
}

.spots-buyers strong {
    color: #2ECC71;
}

/* HEADLINE COM SPAN DOURADO */
.intro-title span {
    font-family: var(--font-display);
    font-size: 1.5em;
    color: var(--gold);
    display: inline;
}

/* STORYTELLING CURTO */
.story-section-short {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.story-avatar-small {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.story-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story-info strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.story-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.story-highlight-short {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 16px;
}

.story-highlight-short strong {
    color: var(--gold);
}

.story-result {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.story-result strong {
    color: #27AE60;
}

/* POST STORY CTA */
.post-story-cta {
    text-align: center;
    margin: 24px 0 32px;
}

.post-story-cta .post-cta-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.post-story-cta .post-cta-text span {
    color: var(--gold);
}

/* MELHORIAS NOS BOTÕES DE VÍDEO */
.video-play-overlay .play-button {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--gold-glow);
    transition: transform 0.3s ease;
}

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

.video-play-overlay .play-button svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    color: var(--bg-dark);
}

/* =====================================================
   NOVOS ESTILOS - VERSÃO 10/10 SANGUINÁRIA
   ===================================================== */

/* MICRO-DEPOIMENTO NA INTRO */
.intro-micro-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.12), rgba(39, 174, 96, 0.05));
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: left;
    animation: fadeIn 0.6s ease 0.55s both;
}

.micro-testimonial-avatar {
    position: relative;
    flex-shrink: 0;
}

.micro-testimonial-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #27AE60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: 700;
    border: 2px solid var(--bg-dark);
}

.micro-testimonial-content p {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.micro-testimonial-name {
    font-size: 0.8125rem;
    color: var(--gold);
    font-weight: 600;
}

/* CTA IMEDIATO APÓS CARTA (PICO EMOCIONAL) */
.immediate-cta-section {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    margin: 32px 0;
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
    50% { box-shadow: 0 0 40px var(--gold-glow); }
}

.immediate-question {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.immediate-subtext {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.btn-cta-immediate {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--bg-dark);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s ease-in-out infinite, immediateGlow 1.5s ease-in-out infinite;
    box-shadow: 0 8px 30px var(--gold-glow);
}

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

.btn-cta-immediate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px var(--gold-glow);
}

.immediate-guarantee {
    font-size: 0.8125rem;
    color: #27AE60;
    margin-top: 16px;
    font-weight: 500;
}

/* PROJEÇÃO DE FUTURO POSITIVO */
.future-positive-section {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.12), rgba(39, 174, 96, 0.05));
    border: 2px solid rgba(39, 174, 96, 0.4);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.future-positive-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: #27AE60;
    margin-bottom: 20px;
}

.future-positive-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.future-positive-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: var(--radius-sm);
}

.future-check {
    color: #27AE60;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.future-positive-item p {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.future-positive-item strong {
    color: #2ECC71;
}

/* DEADLINE COUNTDOWN REAL */
.deadline-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
    border: 2px solid #E74C3C;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    animation: deadlinePulse 2s ease-in-out infinite;
}

@keyframes deadlinePulse {
    0%, 100% { border-color: #E74C3C; }
    50% { border-color: #ff6b6b; }
}

.deadline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: iconShake 1s ease-in-out infinite;
}

@keyframes iconShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

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

.deadline-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.deadline-timer {
    font-size: 2rem;
    font-weight: 800;
    color: #E74C3C;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    font-family: var(--font-sans);
}

.deadline-timer span {
    display: inline-block;
}

.deadline-warning {
    display: block;
    font-size: 0.75rem;
    color: #E74C3C;
    margin-top: 6px;
    font-weight: 500;
}

/* MODAL CHOICE VISUAL - CONTRASTE DEVASTADOR */
.modal-choice-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.choice-option {
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
}

.choice-bad {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
    border: 1px solid rgba(231, 76, 60, 0.4);
}

.choice-good {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(39, 174, 96, 0.08));
    border: 2px solid rgba(39, 174, 96, 0.6);
}

.choice-emoji {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.choice-option p {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.choice-bad p strong {
    color: #E74C3C;
}

.choice-good p strong {
    color: #27AE60;
}

.choice-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.choice-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.choice-vs span {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-question-final {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
}

/* QUESTION REASSURANCE - Para pergunta sensível */
.question-reassurance {
    text-align: center;
    padding: 12px 16px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.question-reassurance span {
    font-size: 0.875rem;
    color: #27AE60;
    font-style: italic;
}

/* FIXED CTA COUNTDOWN IMPROVEMENT */
#fixedCountdown {
    font-weight: 800;
    color: #E74C3C;
}

/* POST TESTIMONIAL CTA */
.post-testimonial-cta {
    text-align: center;
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: var(--radius-lg);
}

.post-cta-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.post-cta-text .user-name-display {
    color: var(--gold);
}

/* ANIMAÇÃO DE ATENÇÃO NO CTA IMEDIATO */
.immediate-cta-section .btn-cta-immediate {
    animation: shimmer 3s ease-in-out infinite, immediateAttention 1s ease-in-out infinite, immediateGlow 1.5s ease-in-out infinite;
}

@keyframes immediateAttention {
    0%, 100% { box-shadow: 0 8px 30px var(--gold-glow); }
    50% { box-shadow: 0 12px 50px rgba(212, 175, 55, 0.6); }
}

/* MELHORIA NO VISUAL DAS OPÇÕES DO QUIZ */
.option-card:hover {
    background: var(--bg-elevated);
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: 0 4px 20px var(--gold-glow);
}

/* DESTAQUE PARA PERGUNTAS SENSÍVEIS */
#screen-q5 .question-divine-voice p,
#screen-q6 .question-divine-voice p {
    color: var(--gold-light);
}

#screen-q6 .options .option-card[data-value="agora"] {
    border-color: rgba(231, 76, 60, 0.5);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), transparent);
}

#screen-q6 .options .option-card[data-value="agora"]:hover {
    border-color: #E74C3C;
}

/* =====================================================
   OTIMIZAÇÕES 10/10 — PÚBLICO FRIO SANGUINÁRIO
   ===================================================== */

/* VIDEO PROOF NA INTRO (CRÍTICO) */
.intro-video-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(39, 174, 96, 0.05));
    border: 2px solid rgba(39, 174, 96, 0.4);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    animation: fadeIn 0.6s ease 0.5s both, proofGlow 3s ease-in-out infinite;
}

@keyframes proofGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(39, 174, 96, 0.2); }
    50% { box-shadow: 0 0 30px rgba(39, 174, 96, 0.4); }
}

.video-proof-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px var(--gold-glow);
}

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

.video-proof-wrapper .video-play-overlay.small {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.video-proof-wrapper .play-button.small {
    width: 36px;
    height: 36px;
}

.video-proof-wrapper .play-button.small svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.video-proof-info {
    flex: 1;
    text-align: left;
}

.video-proof-quote {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.video-proof-name {
    font-size: 0.8125rem;
    color: #27AE60;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

/* LIVE COUNTER ANIMADO AGRESSIVO */
.live-counter.animated {
    animation: fadeIn 0.5s ease, liveCounterPulse 2s ease-in-out infinite;
    border: 2px solid rgba(39, 174, 96, 0.6);
}

@keyframes liveCounterPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 10px rgba(39, 174, 96, 0.3);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 0 25px rgba(39, 174, 96, 0.5);
    }
}

.live-dot.pulse-aggressive {
    animation: pulseAggressive 0.8s ease-in-out infinite;
}

@keyframes pulseAggressive {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.5);
        box-shadow: 0 0 0 8px rgba(39, 174, 96, 0);
    }
}

/* EXIT INTENT MODAL MELHORADO (DESCONTO) */
.exit-modal-icon-urgent {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: iconShake 0.5s ease-in-out infinite;
}

.exit-modal-title-urgent {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #E74C3C;
    margin-bottom: 12px;
}

.exit-modal-title-urgent span {
    color: var(--gold);
}

.exit-modal-text-urgent {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.exit-modal-text-urgent strong {
    color: #27AE60;
}

.exit-special-offer {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.2), rgba(39, 174, 96, 0.1));
    border: 2px solid #27AE60;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.exit-offer-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    animation: badgePulse 1.5s ease-in-out infinite;
}

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

.exit-offer-price {
    text-align: center;
}

.exit-price-from {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.exit-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.exit-price-main span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #27AE60;
}

.exit-price-value {
    font-family: var(--font-serif);
    font-size: 4rem !important;
    font-weight: 700 !important;
    line-height: 1;
}

.exit-price-save {
    font-size: 0.875rem;
    color: #27AE60;
    font-weight: 600;
}

.exit-warning-text {
    font-size: 0.9375rem;
    color: #E74C3C;
    font-weight: 600;
    margin-bottom: 20px;
    animation: warningFlash 2s ease-in-out infinite;
}

@keyframes warningFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.exit-btn-accept {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, #27AE60, #2ECC71, #58D68D);
    background-size: 200% 200%;
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s ease-in-out infinite, exitBtnPulse 1s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

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

.exit-btn-accept:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.5);
}

.exit-btn-refuse {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.exit-btn-refuse:hover {
    color: #E74C3C;
}

.exit-modal-guarantee {
    font-size: 0.75rem;
    color: #27AE60;
    margin-top: 16px;
}

/* TIMER PISCANDO EM VERMELHO (ABAIXO DE 1H) */
.deadline-timer.urgent {
    animation: timerUrgent 0.5s ease-in-out infinite;
}

@keyframes timerUrgent {
    0%, 100% { 
        color: #E74C3C;
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }
    50% { 
        color: #ff6b6b;
        text-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
    }
}

/* CTA IMEDIATO APÓS CARTA - MAIS AGRESSIVO */
.immediate-cta-section {
    animation: ctaGlow 2s ease-in-out infinite, immediateShake 4s ease-in-out infinite;
}

@keyframes immediateShake {
    0%, 92%, 100% { transform: translateX(0); }
    94% { transform: translateX(-3px); }
    96% { transform: translateX(3px); }
    98% { transform: translateX(-2px); }
}

.btn-cta-immediate {
    animation: shimmer 3s ease-in-out infinite, immediateGlow 1.5s ease-in-out infinite, immediatePulse 1s ease-in-out infinite !important;
}

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

/* CONTADOR DE COMPRADORES PRÓXIMO AO CTA */
.buyers-near-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.4);
    border-radius: var(--radius-md);
    margin-top: 12px;
    animation: buyersPulse 3s ease-in-out infinite;
}

@keyframes buyersPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.buyers-near-cta span {
    font-size: 0.8125rem;
    color: #27AE60;
}

.buyers-near-cta strong {
    color: #2ECC71;
    font-weight: 700;
}

/* EFEITO TYPING NA CARTA (REVELAÇÃO PROGRESSIVA) */
.letter-paragraph.typing {
    opacity: 0;
    animation: typeReveal 0.8s ease forwards;
}

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

/* MELHORIAS NA URGÊNCIA DO MODAL */
.modal-urgency {
    animation: urgencyBlink 1s ease-in-out infinite;
}

.modal-content {
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), modalAttention 4s ease-in-out infinite;
}

@keyframes modalAttention {
    0%, 92%, 100% { transform: scale(1); }
    94%, 98% { transform: scale(1.01); }
    96% { transform: scale(0.99); }
}

