* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif; /* Fonte limpa e profissional */
    line-height: 1.6; /* Melhorar a legibilidade */
    font-weight: 400;
    background-color: #F4F0EA;
    color:#331F19 
}

header {
    padding: 2rem;
    background-color: #7e9225 ;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra sutil*/

}
nav ul {
 display: flex; /* Transforma a lista em um container flex */
 list-style-type: none; /* Remove os marcadores padrão */
 justify-content: center;
}
nav li {
 margin: 1.2rem; /* Espaço entre os itens do menu */
}
nav a {
 text-decoration: none;
 color: white;
 padding: 10px 15px;
 background-color: #cf9d30;
 border-radius: 5px;
}
nav a:hover {
 background-color: #ce630c;
}
main {
    padding: 2rem;
    display:flex;
    flex-direction: column;
    gap: 2rem;
    
}
section {
display: flex;
flex-direction: column;
gap: 2rem;

}

p{
 display: flex;
 flex-direction: column;
 gap: 2rem;
 
}

h2 {
    color:#7e9225;
    font-size: 1.2rem;
    
}

input[type="radio"] {
    accent-color: #ff4901

}
details {
    background-color: #CCD595;
    border-radius: 5px;
    padding: 1rem;
}

summary {
    margin: 0.5rem;
    cursor: pointer;
    color: #331F19

}
ol{
    margin-left: 1.5rem;
}
ol li{
    padding:0.2rem;
}
a {
 color: #5796c0; /* Cor azul para links */
 text-decoration: none; /* Remove sublinhado padrão */
 transition: color 0.3s ease; /* Transição suave na cor */
}
a:hover {
 color: #2980b9; /* Cor mais escura ao passar o mouse */
 text-decoration: underline; /* Adiciona sublinhado ao passar o mouse */
}
footer {
 background-color: #7e9225;
 color: #f3f3f3;
 text-align: center;
 padding: 1.5em 0;
 margin-top: 40px;
 font-size: 0.9em;
 box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}
.paragrafo-footer{ 
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #ca5816;

}

