/* ---- RESET E CONFIGURAÇÕES GERAIS ---- */
:root {
    --cor-primaria: #005ea2; /* Um tom de azul sóbrio */
    --cor-fundo: #f4f7f6;
    --cor-texto: #333333;
    --cor-branca: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

/* ---- CONTAINER PRINCIPAL ---- */
.container {
    max-width: 680px;
    width: 100%;
    text-align: center;
}

/* ---- CABEÇALHO ---- */
header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

header p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-align: center; /* Centraliza o texto dentro do botão */
    display: block; /* Torna o botão um elemento de bloco */
    width: 100%; /* Ocupa a largura total */
    box-sizing: border-box; /* Garante que o padding não adicione largura extra */
    max-width: 300px; /* Define uma largura máxima para o botão */
    margin: 0 auto; /* Centraliza o botão na tela */
}

.cta-button:hover {
    background-color: #004a80;
}

/* ---- PAINÉIS ---- */
.panels {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.panel {
    background-color: var(--cor-branca);
    color: var(--cor-primaria);
    border: 2px solid var(--cor-primaria);
    border-radius: 8px;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.panel:hover {
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
}

/* ---- ESTRUTURA DO MODAL ---- */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Inicialmente oculto */
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
}

.modal-content {
    background-color: var(--cor-branca);
    border-radius: 12px;
    padding: 40px 30px 30px 30px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: left;
    max-height: 90vh;
    overflow-y: auto;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    border: none;
    background: none;
    cursor: pointer;
}

.close-button:hover {
    color: #333;
}

#modal-body h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--cor-primaria);
}

#modal-body p {
    line-height: 1.6;
    margin-bottom: 15px;
}

#modal-body .faq {
    margin-bottom: 20px;
    border-left: 3px solid var(--cor-primaria);
    padding-left: 15px;
}
#modal-body .faq h4 {
    margin-bottom: 5px;
    font-weight: 700;
}


/* ---- RESPONSIVIDADE ---- */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }
    .panel, header p {
        font-size: 1rem;
    }
}

/* Adicione este código ao seu arquivo style.css */

.logo {
    max-width: 150px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-bottom: 30px; /* Espaçamento entre a logo e o título */
}