/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-color: #0891B2; /* Azul esverdeado (Cyan) tranquilo e moderno */
    --primary-hover: #0E7490; /* Tom mais escuro e elegante para o hover */
    --text-dark: #0F172A; /* Azul marinho muito escuro / Slate */
    --text-light: #F8FAFC;
    --bg-light: #F0F9FF; /* Fundo azul pastel muito claro e relaxante */
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1516585427167-9f4af9627e6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9)); /* Filtro marinho */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 800px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* BOTÕES E CTAS */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3); /* Sombra adaptada pra nova cor */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(8, 145, 178, 0); }
    100% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0); }
}

.security-note {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.7;
}

/* SOCIAL PROOF */
.social-proof {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #E0F2FE;
}

.social-proof p {
    font-size: 1.1rem;
    color: #475569;
}

.logos {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BENEFITS SECTION */
.benefits {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.benefit-card p {
    padding: 0 20px 30px;
    color: #475569;
    font-size: 0.95rem;
}

/* BOTTOM CTA */
.bottom-cta {
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.bottom-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bottom-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* FOOTER */
footer {
    background-color: #0B1120; /* Fundo bem fechado e sofisticado */
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 10px;
}

/* RESPONSIVIDADE (Mobile) */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }
    .subheadline {
        font-size: 1rem;
    }
    .btn-primary {
        width: 100%;
        padding: 15px 20px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   ESTILOS ESPECÍFICOS DO QUIZ
   ========================================= */

.quiz-body {
    background-color: #E0F2FE; /* Fundo azul gelo sutil para destacar o card branco */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

.quiz-wrapper {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.05); /* Sombra azulada bem leve */
    padding: 40px;
    margin-top: 40px;
}

/* Header e Progresso */
.quiz-header {
    margin-bottom: 30px;
}

.back-link {
    text-decoration: none;
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-color);
}

.progress-container {
    background: #E2E8F0;
    height: 8px;
    border-radius: 10px;
    margin: 15px 0 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%; 
    transition: width 0.5s ease-in-out;
    border-radius: 10px;
}

.progress-text {
    text-align: right;
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 600;
}

/* Área de Perguntas */
.question-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.4;
    animation: fadeIn 0.5s ease;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Botões de Resposta */
.option-btn {
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    color: #334155;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.option-btn:nth-child(1) { animation-delay: 0.1s; }
.option-btn:nth-child(2) { animation-delay: 0.2s; }
.option-btn:nth-child(3) { animation-delay: 0.3s; }
.option-btn:nth-child(4) { animation-delay: 0.4s; }
.option-btn:nth-child(5) { animation-delay: 0.5s; }

.option-btn:hover {
    border-color: var(--primary-color);
    background: #ECFEFF; /* Fundo azul/verde bem claro no hover */
    transform: translateY(-2px);
}

.option-btn.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (max-width: 600px) {
    .quiz-wrapper {
        padding: 25px;
        margin-top: 20px;
    }
    .question-title {
        font-size: 1.3rem;
    }
    .option-btn {
        font-size: 0.95rem;
        padding: 15px;
    }
}

/* =========================================
   ESTILOS DO CAMPO DE TEXTO (OUTRO MOTIVO)
   ========================================= */

.custom-input {
    width: 100%;
    padding: 18px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1.05rem;
    color: #334155;
    background-color: #fff;
    margin-bottom: 15px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 0.4s ease;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1); /* Brilho azul/verde suave */
}

.custom-action-row {
    display: flex;
    gap: 10px;
    animation: slideUp 0.4s ease forwards;
}

.btn-voltar {
    flex: 1;
    padding: 15px;
    background: #F1F5F9;
    color: #475569;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-voltar:hover {
    background: #E2E8F0;
}