/* style.css */
/* --- Base e Fontes (do seu arquivo) --- */
:root {
    --dark-blue: #0A192F;
    --section-blue: #112240;
    --text-primary: #E6F1FF;
    --text-secondary: #ccd6f6;
    --accent: #64FFDA;
    --accent-hover: #52D3BC;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-primary);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1.5rem;
}

.main-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* --- Cabeçalho e Rodapé --- */
.header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo svg {
    margin-right: 0.5rem;
    stroke: var(--accent); /* Cor do logo para combinar */
}

.footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* --- Seção de Introdução --- */
.intro-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .intro-section h1 {
        font-size: 3rem;
    }
    .intro-section p {
        font-size: 1.25rem;
    }
}

/* --- Quiz --- */
.quiz-container {
    background-color: var(--section-blue);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
    border: 1px solid #1d2d50;
}

.progress-bar-container {
    width: 100%;
    background-color: #0d2d52;
    border-radius: 9999px;
    height: 10px;
    margin-bottom: 2rem;
}

#progress-bar {
    background-color: var(--accent);
    height: 10px;
    border-radius: 9999px;
    transition: width 0.4s ease;
}

#quiz-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quiz-option {
    border: 2px solid #233554;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    background-color: #0f2a4d;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.quiz-option:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.quiz-option.selected {
    border-color: var(--accent);
    background-color: rgba(100, 255, 218, 0.1);
    box-shadow: 0 4px 12px rgba(100, 255, 218, 0.1);
}

.quiz-option p {
    margin: 0;
    font-weight: 600;
}

@media (min-width: 768px) {
    #quiz-content h3 {
        font-size: 1.5rem;
    }
    .quiz-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Formulário Final e Mensagem de Sucesso --- */
#final-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

#final-form-container p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #233554;
    border-radius: 8px;
    background-color: #0d2d52;
    color: var(--text-primary);
    outline: none;
    transition: box-shadow 0.2s;
    margin-bottom: 1rem;
    box-sizing: border-box; /* Garante que padding não afete a largura */
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-input:focus {
    box-shadow: 0 0 0 2px var(--accent);
    border-color: var(--accent);
}

.cta-button {
    width: 100%;
    margin-top: 0.5rem; /* Reduced margin-top */
    background-color: var(--accent);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; /* For 'a' tags */
    display: inline-block; /* For 'a' tags */
    box-sizing: border-box; /* Garante que padding não afete a largura */
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whatsapp-button {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover {
    background-color: #1EBE57;
}

.whatsapp-button svg {
    margin-right: 0.75rem;
}

.form-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-separator::before,
.form-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #233554;
}

.form-separator:not(:empty)::before {
    margin-right: .5em;
}

.form-separator:not(:empty)::after {
    margin-left: .5em;
}

#success-message h2 {
    color: var(--accent);
    font-size: 2rem;
}

#success-message p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* --- Prova Social --- */
.social-proof {
    margin-top: 4rem;
    color: var(--text-secondary);
    font-style: italic;
}

.social-proof p {
    margin: 0;
    font-size: 1.1rem;
}

.social-proof .author {
    margin-top: 1rem;
    font-weight: 700;
    font-style: normal;
    color: var(--text-primary);
}

/* --- Elementos Auxiliares --- */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.h-12{
    height: 5rem;
}

