/* stilo.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 50px; /* Adicionado para evitar que o rodapé sobreponha o conteúdo */
}

header {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 2px solid #dee2e6;
}

header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

header h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

header div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Adicionado para centralizar o texto */
}

header div img {
    margin-left: 10px;
}

header img {
    max-width: 100px;
    height: auto;
}

@media (max-width: 600px) {
    header div {
        text-align: center;
    }
}

main {
    padding: 20px;
}

section {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    margin-top: 20px;
    margin-bottom: 20px;
}

section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

section p, section ol, section ul {
    margin-bottom: 15px;
}

section ol li, section ul li {
    margin-bottom: 5px;
}

img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #003366; /* Azul escuro */
    color: white; /* Letras brancas */
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-weight: bold; /* Letras em negrito */
}

#informacoes-estado {
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    margin-top: 20px;
}

select option:first-child {
    font-weight: bold;
}

/* Adicionar estilos para foco e hover */
a {
    color: #003366;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

button, input, select {
    font-family: inherit;
    font-size: inherit;
}

button:focus, input:focus, select:focus {
    outline: 2px solid #003366;
    outline-offset: 2px;
}