:root {
    --primary-color: #FF6B6B;
    /* Vermelho Suave */
    --secondary-color: #4ECDC4;
    /* Turquesa */
    --accent-color: #FFE66D;
    /* Amarelo Lúdico */
    --background-color: #F7F9FC;
    /* Fundo Clean */
    --text-color: #2D3436;
    /* Cinza Escuro */
    --white: #FFFFFF;
    --font-main: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Barra de Progresso */
.progress-container {
    width: 100%;
    background-color: #eee;
    border-radius: 10px;
    height: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--secondary-color);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

/* Imagens */
.image-container {
    width: 100%;
    max-width: 90%;
    /* Máximo 90% da largura do container pai */
    margin: 0 auto 20px auto;
    /* Centraliza horizontalmente */
    max-height: 250px;
    /* Aumentei um pouco a altura para visualizar melhor */
    border-radius: 12px;
    /* Bordas levemente arredondadas */
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: transparent;
    /* Remove fundo cinza se a imagem não carregar imediatamente ou for transparente */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cobre o container sem distorcer, cortando se necessário */
    display: block;
}

/* Tipografia */
.question-header {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.3;
}

/* Botões de Opção */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background-color: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-weight: 500;
}

.option-btn:hover {
    border-color: var(--secondary-color);
    background-color: #F0FFF4;
    transform: translateY(-2px);
}

.option-btn:active {
    transform: translateY(0);
}

/* Animações e Loader */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-content h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Tela de Resultado Final */
.result-headline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    /* Destaque */
    margin-bottom: 15px;
    line-height: 1.4;
}

.result-subheadline {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button {
    background-color: #2ECC71;
    /* Verde Chamativo */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
    background-color: #27AE60;
}

.cta-button:active {
    transform: translateY(1px);
}

@media (max-width: 400px) {
    .cta-button {
        font-size: 0.9rem;
        /* Reduz um pouco a fonte em telas muito pequenas para garantir 1 linha */
        padding: 15px 10px;
    }
}

/* Estilos da Página de Vendas */
.sales-page {
    text-align: center;
    max-width: 600px;
    /* Um pouco mais largo que o quiz para melhor leitura */
}

.sales-headline {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.sales-subheadline {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Ocultamos o video-container antigo se houver */

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.benefits-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

/* Novos Estilos - Mockup da Página de Vendas */
.mockup-image-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Micro Autoridade */
.authority-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    text-align: left;
    background-color: #F8F9FA;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #555;
    border: 1px solid #EEE;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Área do CTA e Garantia */
.cta-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pre-cta-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.guarantee-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background-color: #F0FFF4;
    border-radius: 10px;
    border: 1px solid #C6F6D5;
}

.shield-icon {
    font-size: 2rem;
}

.guarantee-seal p {
    text-align: left;
    font-size: 0.85rem;
    color: #2D3436;
    line-height: 1.4;
    margin: 0;
}

/* Rodapé Profissional */
.sales-footer {
    width: 100%;
    background-color: #F1F2F6;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #E1E1E1;
    color: #888;
    font-size: 0.8rem;
}

.sales-footer p {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/* Texto Imaginativo */
.imaginative-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
    margin: 30px auto 20px auto;
    max-width: 90%;
    line-height: 1.6;
    background-color: #FFF5F5;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}