/* Reset e Estilos Básicos */
:root {
    --primary-color: #FFD700;
    /* Dourado Puro */
    --secondary-color: #FDB931;
    /* Dourado Secundário */
    --background-dark: #050505;
    /* Preto Profundo */
    --background-light: #1a1a1a;
    /* Cinza Escuro Suave */
    --text-color: #FFFFFF;
    --font-serif: 'Times New Roman', Garamond, serif;
    --font-sans: 'Inter', Arial, sans-serif;
}

body {
    font-family: var(--font-serif);
    background-color: var(--background-dark);
    /* Fundo 'Divino': Gradiente radial sutil simulando luz na página inteira */
    background: radial-gradient(circle at center top, #222 0%, #000000 70%);
    color: var(--text-color);
    line-height: 1.8;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    /* Negrito contínuo */
    /* Mais leve/elegante */
    letter-spacing: 1px;
}

p,
button,
span,
.sub-headline {
    font-family: var(--font-sans);
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

/* Estilos da VSL */
/* Estilos da VSL */
/* Estilos da VSL */
.vsl-container h1 {
    font-family: var(--font-serif);
    /* Voltando para a fonte elegante anterior */
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
    /* Linhas mais juntas */
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    /* Brilho de volta */
    padding: 0 10px;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    font-family: inherit;
    /* Garante que usa a fonte do H1 (Serif) */
    font-weight: inherit;
    /* Garante que mantém o negrito do H1 */
}

/* Estilos Gerais do Quiz/Oferta */
.quiz-container {
    margin-top: 40px;
    padding: 40px;

    /* Efeito Glassmorphism (Vidro Fosco) - O "Clean" */
    background: rgba(255, 255, 255, 0.05);
    /* Levemente branco/transparente */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    /* Borda Dourada Fina e Suave */
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;

    /* Brilho Divino */
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.08);

    animation: fadeIn 1s ease-in-out;
}

.hidden,
.esconder {
    display: none;
}

/* Botões Dourados Elegantes */
.btn-gold {
    /* Gradiente sutil em vez de cor sólida */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #000;
    font-family: var(--font-sans);
    font-weight: 500;
    /* Mais leve */
    border: none;
    padding: 14px 20px;
    /* Menor padding */
    width: 100%;
    margin: 10px 0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    /* Fonte menor */
    transition: all 0.3s ease;
    /* text-transform: uppercase; Removido para ser menos agressivo */
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.15);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 185, 49, 0.4);
    filter: brightness(105%);
}

/* Estilos Específicos do Quiz */
.question-block h2 {
    color: #fff;
    font-size: 1.4rem;
    /* Reduzido de 1.8rem */
    font-weight: 400;
    /* Mais leve */
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding-bottom: 15px;
    display: inline-block;
    line-height: 1.4;
}

.question-block p {
    color: #eee;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Estilos do Resultado */
.result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

.dynamic-title {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dynamic-title span {
    color: var(--primary-color);
}

/* Estilos da Oferta */
.scarcity-badge {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: 1px;
}

.offer-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza todos os elementos filhos */
}

.price-tag {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-family: var(--font-serif);
    margin: 20px 0;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.bonus-list {
    text-align: left;
    /* Texto Alinhado à esquerda dentro do bloco */
    margin: 30px auto;
    width: fit-content;
    /* Bloco ajusta ao conteúdo */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    padding-right: 20px;
}

.bonus-list li {
    margin-bottom: 15px;
    list-style-type: none;
    font-size: 1rem;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Remove centralização forçada */
}

.bonus-list li::before {
    content: "✦";
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}