body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f7f9;
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

#container {
    max-width: 800px;
    width: 100%;
    background-color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
    overflow: hidden;
}

#cabecalho {
    text-align: center;
    padding: 40px 30px;
    background-color: #1d3557;
    color: white;
}

#cabecalho img {
    max-width: 90%;
    width: 600px;
    max-height: 180px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}

#cabecalho h1 {
    color: #FFFFFF;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}

#cabecalho p {
    font-size: 17px;
    line-height: 1.6;
    color: #e1e8ed;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.privacidade {
    font-style: italic;
    font-size: 14px;
    color: #aab8c2;
    margin-top: 15px;
}

#conteudo-principal {
    padding: 30px 40px;
}

.section-title {
    color: #1d3557;
    border-bottom: 2px solid #1d3557;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
}

.section-description {
    font-style: italic;
    color: #5b6b79;
    margin-bottom: 25px;
}

.pergunta {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e1e8ed;
    border-left: 3px solid transparent;
    padding-left: 10px;
    transition: background-color 0.5s ease;
}

.pergunta:last-of-type {
    border-bottom: none;
}

.pergunta > label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #1a2533;
}

.pergunta-opcao {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    cursor: pointer;
}

.pergunta-opcao input[type="radio"] {
    margin-right: 12px;
    flex-shrink: 0;
    transform: scale(1.2);
    accent-color: #1d3557;
    margin-top: 5px;
}

.pergunta-opcao label {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
}

#botoes {
    text-align: center;
    margin-top: 40px;
}

button {
    background-color: #0d6efd;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin: 0 10px;
}

button:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

button[type="reset"] {
    background-color: #6c757d;
}

button[type="reset"]:hover {
    background-color: #5a6268;
}

#resultado {
    margin-top: 40px;
    padding: 30px;
    border-radius: 8px;
    background-color: #e7f3ff;
    border-left: 5px solid #0d6efd;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#resultado h2 {
    color: #1d3557;
    margin-top: 0;
}

#resultado p {
    font-size: 18px;
    line-height: 1.6;
}

.botao-cta-isca {
    display: inline-block;
    background-color: #0d6efd; /* Botão de recomendação AZUL */
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.botao-cta-isca:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
    font-size: 14px;
    color: #8899a6;
}

/* --- NOVO --- */
/* Estilo para a seção de feedback humanizado */
.feedback-humanizado {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #cce5ff;
    text-align: left;
}

.feedback-humanizado h3 {
    color: #1d3557;
    font-size: 20px;
    text-align: center;
}

.feedback-humanizado p {
    font-size: 17px;
}
/* --- FIM DO NOVO --- */


/* Responsive Design */
@media (max-width: 768px) {
    #conteudo-principal {
        padding: 30px 20px;
    }
    #cabecalho h1 {
        font-size: 24px;
    }
    .pergunta > label {
        font-size: 17px;
    }
    button {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
        margin: 5px 0;
    }
     #botoes {
        display: flex;
        flex-direction: column;
    }
}