/* ==========================================================================
   DESIGN SYSTEM - CORES, FONTES E VARIÁVEIS
   ========================================================================== */
:root {
    /* Paleta Mariana Premium - Light Mode Azul Bebê */
    --bg-dark-start: #e9f2fc;
    --bg-dark-end: #f4f8fe;
    
    --card-bg-glass: rgba(255, 255, 255, 0.88);
    --card-bg-glass-light: rgba(255, 255, 255, 0.65);
    --card-bg-glass-dark: rgba(240, 246, 254, 0.95);
    --card-border: rgba(18, 32, 70, 0.08);
    
    /* Tons de Dourado Celestial - Aprofundados para perfeito contraste no tema claro */
    --gold-color: #9c730a;
    --gold-light-color: #7d5b03;
    --gold-dark-color: #5c4301;
    --gold-glow: rgba(156, 115, 10, 0.15);
    --gold-glass: rgba(156, 115, 10, 0.03);
    
    /* Cores de Ação e Feedback */
    --green-accent: #27ae60;
    --green-accent-glow: rgba(39, 174, 96, 0.15);
    --text-primary: #122046; /* Navy profunda super legível */
    --text-secondary: #3b4c6b; /* Slate escuro para textos de apoio (maior contraste) */
    --text-dark: #ffffff; /* Letras claras em botões escuros/coloridos */
    
    /* Configurações Globais */
    --font-serif: "Outfit", var(--font-sans);
    --font-sans: "Plus Jakarta Sans", "Inter", sans-serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-premium: 0 15px 35px rgba(18, 32, 70, 0.06);
    --shadow-gold-inset: inset 0 0 15px rgba(156, 115, 10, 0.03);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark-start);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Tema Espiritual - Gradiente de Fundo e Partículas */
.spiritual-theme {
    background: radial-gradient(circle at 50% 30%, var(--bg-dark-end) 0%, var(--bg-dark-start) 100%);
    background-attachment: fixed;
}

/* Efeito de Brilho de Fundo */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
    animation: auraBreathing 12s infinite alternate ease-in-out;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--gold-color) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    background: radial-gradient(circle, #3a68d8 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -6s;
}

@keyframes auraBreathing {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.12;
    }
    100% {
        transform: scale(1.15) translate(40px, 30px);
        opacity: 0.22;
    }
}

/* ==========================================================================
   APP CONTAINER & HEADERS
   ========================================================================== */
.app-container {
    width: 100%;
    max-width: 540px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    z-index: 10;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marian-monogram {
    filter: drop-shadow(0 0 6px var(--gold-glow));
    animation: monogramFloat 4s infinite alternate ease-in-out;
}

@keyframes monogramFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--gold-light-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botão Voltar Etapa */
.btn-icon-back {
    background: rgba(18, 32, 70, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-icon-back:hover {
    background: rgba(18, 32, 70, 0.07);
    color: var(--text-primary);
    transform: translateX(-2px);
    border-color: rgba(18, 32, 70, 0.12);
}

.btn-icon-back.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* Barra de Progresso Customizada */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(18, 32, 70, 0.06);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid rgba(18, 32, 70, 0.03);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    transition: opacity 0.3s ease;
}

.progress-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark-color) 0%, var(--gold-color) 70%, var(--gold-light-color) 100%);
    border-radius: 100px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.progress-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--gold-light-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-color), 0 0 20px var(--gold-color);
}

/* ==========================================================================
   GLASSMORPHISM CARD BASE
   ========================================================================== */
.glass {
    background: var(--card-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-premium), var(--shadow-gold-inset);
    border-radius: var(--radius-lg);
}

.glass-light {
    background: var(--card-bg-glass-light);
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 25px rgba(18, 32, 70, 0.04);
    transition: var(--transition-smooth);
}

.glass-dark {
    background: var(--card-bg-glass-dark);
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(18, 32, 70, 0.05);
}

.glass-gold {
    background: rgba(156, 115, 10, 0.03);
    border: 1px solid rgba(156, 115, 10, 0.15);
    box-shadow: var(--shadow-gold-inset);
}

.border-gold {
    border: 1px solid rgba(156, 115, 10, 0.25) !important;
}

.quiz-card {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .quiz-card {
        padding: 24px 20px;
    }
}

/* Transições de Etapas do Quiz */
.quiz-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.quiz-step.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: stepSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stepSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   TIPOGRAFIA & TÍTULOS
   ========================================================================== */
.step-title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

.highlight-gold {
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(156, 115, 10, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--gold-light-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   ETAPA 0: ACOLHIMENTO E BOAS VINDAS
   ========================================================================== */
.welcome-badge {
    align-self: center;
    background: rgba(156, 115, 10, 0.1);
    border: 1px solid rgba(156, 115, 10, 0.25);
    color: var(--gold-light-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.welcome-title {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
}

.image-showcase {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-spiritual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold-color);
    box-shadow: 0 0 30px rgba(156, 115, 10, 0.2);
    animation: imageFloat 6s infinite alternate ease-in-out;
}

@keyframes imageFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.02); }
}

.img-glow {
    position: relative;
    z-index: 2;
}

/* Partículas douradas flutuando sob a imagem */
.sacred-dust {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 115, 10, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: glowRotate 20s infinite linear;
}

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

.welcome-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.welcome-footer {
    margin-top: auto;
    background: rgba(18, 32, 70, 0.03);
    border: 1px solid rgba(18, 32, 70, 0.06);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
    align-items: flex-start;
}

.gold-icon {
    color: var(--gold-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   BOTÕES DE AÇÃO E EFEITO PULSAR
   ========================================================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark-color) 0%, var(--gold-color) 50%, var(--gold-light-color) 100%);
    border: none;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(156, 115, 10, 0.2), inset 0 -3px 0 rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-primary svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
    z-index: 1;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(156, 115, 10, 0.35), inset 0 -3px 0 rgba(0,0,0,0.15);
}

.btn-primary:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.btn-primary:hover:not(:disabled)::before {
    left: 100%;
}

.btn-primary:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(156, 115, 10, 0.15);
}

.btn-primary:disabled {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pulsação Dourada */
.btn-primary.pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(156, 115, 10, 0.3), 0 6px 20px rgba(156, 115, 10, 0.2);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(156, 115, 10, 0), 0 6px 20px rgba(156, 115, 10, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(156, 115, 10, 0), 0 6px 20px rgba(156, 115, 10, 0.2);
    }
}

/* ==========================================================================
   FORMULÁRIOS & COLETA DE NOME
   ========================================================================== */
.form-group {
    margin: 12px 0 32px;
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.floating-input {
    width: 100%;
    padding: 20px 20px 20px 52px;
    background: #ffffff;
    border: 1px solid rgba(18, 32, 70, 0.12);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    outline: none;
}

.floating-input:focus {
    border-color: var(--gold-color);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(176, 132, 16, 0.1), inset 0 0 5px rgba(176, 132, 16, 0.02);
}

.floating-label {
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    pointer-events: none;
    transform-origin: left top;
}

/* Estado ativo do input flutuante */
.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    transform: translateY(-88%) scale(0.78);
    color: var(--gold-color);
    left: 20px;
}

.floating-input:focus ~ .input-icon {
    color: var(--gold-color);
    transform: translateY(-50%) scale(0.9);
}

/* Validações */
.validation-message {
    display: none;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 8px;
    margin-left: 4px;
    animation: fadeInUp 0.3s ease forwards;
}

.validation-message.active {
    display: block;
}

.form-group.error .floating-input {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.03);
}

/* ==========================================================================
   ETAPA 2: ACOLHIDA PERSONALIZADA
   ========================================================================== */
.marian-crown-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 8px rgba(156, 115, 10, 0.25));
}

.card-message {
    background: rgba(18, 32, 70, 0.03);
    border: 1px solid rgba(18, 32, 70, 0.06);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    box-shadow: var(--shadow-gold-inset);
}

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

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

/* ==========================================================================
   ETAPAS DE SELEÇÃO: QUIZ CARDS
   ========================================================================== */
.quiz-grid {
    display: flex;
    gap: 14px;
    width: 100%;
    margin-bottom: 12px;
}

.grid-vertical {
    flex-direction: column;
}

.quiz-option-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 16px;
    user-select: none;
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(18, 32, 70, 0.08);
    transition: var(--transition-smooth);
}

.quiz-option-card:hover {
    background: rgba(18, 32, 70, 0.015);
    border-color: rgba(18, 32, 70, 0.16);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 32, 70, 0.05);
}

.card-icon {
    font-size: 1.5rem;
    background: rgba(18, 32, 70, 0.03);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(18, 32, 70, 0.06);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.card-text-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.option-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

/* Custom Radio Indicator */
.custom-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.custom-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold-color);
    transform: scale(0);
    transition: var(--transition-smooth);
}

/* Estado selecionado */
.quiz-option-card.selected {
    background: rgba(156, 115, 10, 0.04);
    border-color: var(--gold-color);
    box-shadow: 0 4px 20px rgba(156, 115, 10, 0.1), var(--shadow-gold-inset);
}

.quiz-option-card.selected .card-icon {
    background: rgba(156, 115, 10, 0.12);
    border-color: rgba(156, 115, 10, 0.25);
}

.quiz-option-card.selected .custom-radio {
    border-color: var(--gold-color);
}

.quiz-option-card.selected .custom-radio::after {
    transform: scale(1);
}

/* ==========================================================================
   ETAPA 6: REPRODUTOR DE ÁUDIO CUSTOMIZADO PREMIUM
   ========================================================================== */
.premium-audio-player {
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 8px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.audio-poster-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 18px;
}

.audio-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Animação de rotação desativada a pedido do usuário (imagem estática) */
.premium-audio-player.playing .audio-poster {
    border-color: var(--gold-color);
}

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

.audio-visualizer-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.premium-audio-player.playing .audio-visualizer-glow {
    opacity: 1;
    animation: pulseGlow 3s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.9; }
}

/* Equalizador animado em barras */
.visualizer-bars {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
    z-index: 3;
    background: var(--bg-dark-end);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--card-border);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-audio-player.playing .visualizer-bars {
    opacity: 1;
}

.visualizer-bars span {
    width: 3px;
    height: 3px;
    background-color: var(--gold-color);
    border-radius: 10px;
}

/* Barra animadas do equalizador */
.premium-audio-player.playing .visualizer-bars span:nth-child(1) { animation: equalise 0.8s infinite alternate 0.1s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(2) { animation: equalise 0.5s infinite alternate 0.3s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(3) { animation: equalise 0.9s infinite alternate 0.2s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(4) { animation: equalise 0.6s infinite alternate 0.5s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(5) { animation: equalise 0.7s infinite alternate 0.4s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(6) { animation: equalise 0.8s infinite alternate 0.2s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(7) { animation: equalise 0.4s infinite alternate 0.1s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(8) { animation: equalise 0.9s infinite alternate 0.3s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(9) { animation: equalise 0.6s infinite alternate 0.4s; }
.premium-audio-player.playing .visualizer-bars span:nth-child(10) { animation: equalise 0.7s infinite alternate 0.1s; }

@keyframes equalise {
    0% { height: 3px; }
    100% { height: 16px; }
}

.audio-details {
    text-align: center;
    margin-bottom: 20px;
}

.audio-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.audio-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.audio-controls-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Linha de Tempo Customizada */
.audio-timeline-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.time-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    min-width: 32px;
}

.timeline-slider-container {
    flex: 1;
    height: 16px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.timeline-rail {
    width: 100%;
    height: 4px;
    background: rgba(18, 32, 70, 0.1);
    border-radius: 10px;
}

.timeline-progress {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark-color), var(--gold-color));
    border-radius: 10px;
    left: 0;
}

.timeline-handle {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--text-primary);
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--gold-color);
    transition: transform 0.1s ease;
}

.timeline-slider-container:hover .timeline-handle {
    transform: translateX(-50%) scale(1.2);
}

/* Linha de controle */
.control-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark-color), var(--gold-color));
    border: none;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(156, 115, 10, 0.2);
    transition: var(--transition-smooth);
    position: relative;
}

.play-pause-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(156, 115, 10, 0.3);
}

.play-pause-btn:active {
    transform: scale(0.96);
}

.play-pause-btn svg {
    transition: transform 0.2s ease;
}

.play-pause-btn:hover svg {
    transform: scale(1.05);
}

.play-pause-btn .svg-play {
    margin-left: 3px; /* Centralização do triângulo */
}

.hidden {
    display: none !important;
}

.audio-instruction-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(156, 115, 10, 0.04);
    border: 1px dashed rgba(156, 115, 10, 0.25);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: var(--gold-light-color);
    line-height: 1.4;
}

.audio-instruction-banner svg {
    flex-shrink: 0;
}

/* Efeito Chuva de Pétalas Flutuantes ao Tocar Áudio */
.petal-particle {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 35% 35%, #ff7b90 0%, #d63031 100%);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg);
    opacity: 0.8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    animation: fallRosePetal 5s linear forwards;
}

@keyframes fallRosePetal {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(120px) rotate(450deg);
        opacity: 0;
    }
}

/* ==========================================================================
   ETAPA 7: PEDIDO DE PRECE (TEXTAREA COM FÉ)
   ========================================================================== */
.text-area-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.textarea-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.textarea-container {
    position: relative;
    width: 100%;
}

.textarea-container textarea {
    width: 100%;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(18, 32, 70, 0.12);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
    resize: none;
    transition: var(--transition-smooth);
}

.textarea-container textarea:focus {
    border-color: var(--gold-color);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(176, 132, 16, 0.1), var(--shadow-gold-inset);
}

.spiritual-quote {
    background: rgba(18, 32, 70, 0.03);
    border-left: 3px solid var(--gold-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 18px 20px;
    margin-bottom: 24px;
    text-align: left;
    box-shadow: none;
}

.spiritual-quote p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: none;
}

.quote-author {
    margin-top: 8px;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-color) !important;
    font-weight: 700;
}

/* ==========================================================================
   ETAPA 8: PROCESSAMENTO E LOADER
   ========================================================================== */
/* ==========================================================================
   ETAPA 8: PROCESSAMENTO E LOADER (ESTILO HORIZONTAL PREMIUM)
   ========================================================================== */
.sacred-declaration-top {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding: 0 8px;
}

.sacred-declaration-top .highlight-blue {
    color: #2563eb; /* Azul brilhante e nítido igual ao do screenshot */
    font-weight: 800;
}

.processing-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.processing-mockup {
    max-width: 190px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(18, 32, 70, 0.08);
}

.horizontal-progress-container {
    width: 100%;
    height: 32px;
    background-color: rgba(18, 32, 70, 0.05); /* Fundo cinza suave */
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin: 28px 0 16px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

.horizontal-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%); /* Degradê azul premium do screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.06s linear;
    border-radius: 16px;
}

.horizontal-progress-bar span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.processing-status-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 8px;
    text-align: center;
}

/* ==========================================================================
   ETAPA 9: PÁGINA DE VENDAS / OFERTA FINAL
   ========================================================================== */

/* Photo 2 Headlines Styling */
.sales-pitch-container {
    text-align: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.sales-headline {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e3a8a; /* Deep elegant blue */
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
}

.sales-subheadline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
}

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

/* Photo 2 Style Pricing */
.photo2-offer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0 10px;
    text-align: center;
}

.p2-price-de {
    font-size: 1rem;
    color: #e74c3c; /* Striking Red */
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 2px;
}

.p2-price-por {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.p2-price-value {
    font-size: 3.2rem;
    font-weight: 900;
    color: #27ae60; /* Elegant green */
    line-height: 1;
    font-family: var(--font-sans);
    text-shadow: 0 2px 10px rgba(39, 174, 96, 0.15);
}

.pricing-card-cta-only {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

/* Features Description Section styling */
.features-image-section {
    width: 100%;
    margin: 28px 0;
    display: flex;
    justify-content: center;
}

.features-image-container {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18, 32, 70, 0.06);
}

.img-features-description {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* Banner de Escassez */
.promo-urgency-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid rgba(18, 32, 70, 0.06);
}

.urgency-icon {
    font-size: 1.8rem;
    animation: hourglassWobble 2.5s infinite ease-in-out;
}

@keyframes hourglassWobble {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-8deg); }
    20%, 40% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
}

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

.banner-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-color);
}

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

.sales-main-title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 28px;
}

/* Mockup de Apresentação */
.product-presentation {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-product {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(18, 32, 70, 0.15));
    position: relative;
    z-index: 2;
}

.shine-effect {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    z-index: 3;
    pointer-events: none;
}

/* Bloco Customizado de Intenção do Usuário */
.personalized-block {
    text-align: left !important;
    border-left: 4px solid var(--gold-color);
    padding: 20px 24px;
}

.personalized-block h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.personalized-block p {
    font-size: 0.9rem !important;
    line-height: 1.5;
}

.sales-section-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 36px 0 20px;
    position: relative;
}

.sales-section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--gold-color);
    margin: 8px auto 0;
    border-radius: 5px;
}

/* Grid de inclusos */
.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.included-card {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    gap: 16px;
    border: 1px solid rgba(18, 32, 70, 0.06);
}

.inc-icon {
    font-size: 1.6rem;
    background: rgba(18, 32, 70, 0.03);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(18, 32, 70, 0.06);
    flex-shrink: 0;
}

.inc-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.inc-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.inc-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Card de Preço e Compra */
.pricing-card {
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-badge {
    background: linear-gradient(135deg, #104805, var(--green-accent));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(46, 204, 113, 0.4);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.25);
}

.original-price {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.discounted-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 6px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.95;
    font-family: var(--font-sans);
}

.price-installments {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.btn-checkout {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #82e0aa 100%);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35), inset 0 -3px 0 rgba(0,0,0,0.15);
    color: var(--text-dark) !important;
    text-decoration: none;
}

.btn-checkout.pulse {
    animation: checkoutPulse 2s infinite;
}

@keyframes checkoutPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5), 0 6px 20px rgba(46, 204, 113, 0.35);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(46, 204, 113, 0), 0 6px 20px rgba(46, 204, 113, 0.35);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0), 0 6px 20px rgba(46, 204, 113, 0.35);
    }
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5), inset 0 -3px 0 rgba(0,0,0,0.15);
}

.btn-checkout:active {
    transform: translateY(1px);
}

.secure-seals {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.seal-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Garantia */
.guarantee-section {
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

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

.guarantee-badge-gold {
    background: rgba(156, 115, 10, 0.08);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(156, 115, 10, 0.25);
    flex-shrink: 0;
}

.guarantee-meta h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.guarantee-meta h4 {
    font-size: 0.8rem;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.guarantee-text {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   CARROSSEL DE DEPOIMENTOS
   ========================================================================== */
.testimonials-area {
    margin-bottom: 36px;
    width: 100%;
}

.testimonial-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-testimonial {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(18, 32, 70, 0.08);
    object-fit: contain;
    transition: var(--transition-smooth);
}

.img-testimonial:hover {
    transform: scale(1.02);
}

/* Dots do slider */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(18, 32, 70, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--gold-color);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   ACORDION DE FAQ (DÚVIDAS)
   ========================================================================== */
.faq-area {
    margin-bottom: 24px;
    width: 100%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(18, 32, 70, 0.06);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.925rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(18, 32, 70, 0.02);
}

.faq-icon {
    font-size: 1.15rem;
    color: var(--gold-color);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(18, 32, 70, 0.02);
}

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

/* ==========================================================================
   RODAPÉ / APPFOTTER
   ========================================================================== */
.app-footer {
    margin-top: 32px;
    text-align: center;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-footer p {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.footer-sub {
    color: rgba(18, 32, 70, 0.35) !important;
}

.footer-links {
    margin-top: 4px;
}

.footer-links a {
    color: var(--gold-color);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-light-color);
    text-decoration: underline;
}

/* Animação genérica slide */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
