/* Definindo a fonte geral para o site */
body {
    font-family: 'NomeDaFonte', sans-serif; /* Substitua 'NomeDaFonte' pela fonte escolhida */
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Cor de texto mais suave */
    background-color: #f9f9f9; /* Cor de fundo clara para facilitar leitura */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ajustando o estilo de t�tulos principais (h1) */
h1 {
    font-size: 2.5rem; /* Tamanho grande para destacar o t�tulo principal */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px; /* Espa�amento abaixo do t�tulo */
    text-align: center; /* Alinhamento centralizado */
}

/* Ajustando h2 (subt�tulos importantes) */
h2 {
    font-size: 2rem; /* Tamanho menor que h1, mas ainda destacado */
    font-weight: 700;

    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center; /* Alinhamento centralizado */
}

/* Ajustando h3 (subt�tulos de se��es menores) */
h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: left;
}

/* Ajustando h4 (subt�tulos secund�rios) */
h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Ajustando h5 e h6 (subt�tulos menores) */
h5, h6 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Estilizando os par�grafos (p) */
p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Ajustando listas (ul, ol) */
ul, ol {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Ajustando links (a) */
a {
    color: #00345e; /* Cor do link */
    text-decoration: none;
    font-weight: 500;
}



/* Estilo para blocos de cita��o (blockquote) */
blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    border-left: 4px solid #00345e;
    padding-left: 20px;
    margin: 20px 0;
}

/* Estilizando tabelas */
table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Estilo para bot�es */
button, .btn {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: #00345e;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}



/* Definindo o estilo de texto para elementos com anima��o */
[data-anime] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

[data-anime].animate {
    opacity: 1;
}

/* Definindo um estilo para o footer */
footer {
    background-color: #ffffff;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
}


/* Media Queries para responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }

    ul, ol {
        margin-left: 15px;
    }

    button, .btn {
        font-size: 0.9rem;
    }
}
