* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.campo-pesquisa {
    border-radius: 20%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1, h2, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin-bottom: 15px;
}

h3 {
    color: white;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.div1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cabecalho {
    background-color: #1D2440;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.navegacao-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 100px;
}

.links-navegacao ul {
    display: flex;
    gap: 30px;
}

.links-navegacao a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.icones-navegacao {
    display: flex;
    gap: 20px;
}

.icones-navegacao a {
    font-size: 1.2em;
    color: var(--text-color);
}

.conteudo-principal {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: white;
}

.secao-sobre-nos h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.secao-sobre-nos p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.visao, .valores, .historia {
    background-color: #e2e2e2;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.visao h3, .valores h3, .historia h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.valores ul {
    list-style: disc;
    padding-left: 20px;
}

.valores ul li {
    margin-bottom: 10px;
}

/*Rodapé */
.rodape {
    background-color: #1D2440;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.conteudo-rodape {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.links-rodape ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.links-rodape a {
    color: white;
    transition: color 0.3s ease;
}

.links-rodape a:hover {
    color: var(--secondary-color);
}

.icones-sociais a {
    font-size: 1.5em;
    color: white;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.icones-sociais a:hover {
    color: var(--secondary-color);
}

.botao {
    display: inline-block;
    background-color: #1D2440;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.botao:hover {
    background-color: var(--secondary-color);
}