body, html {
  font-family: 'Lato', sans-serif;
  background-color: #e9e4d3;
  color: #2c2c2c;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* Faz o conteúdo crescer e empurrar o footer */
  padding-bottom: 3rem; /* espaço antes do footer */
}

.navbar {
    background-color:#dcd6c4;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  color: #5a3825;
}

a {
  color: #8c6e4f;
  transition: color 0.3s ease;
}

a:hover {
  color: #5a3825;
  text-decoration: none;
}

header {
    background-color:#5a3825;
    min-height:66vh;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.brasao {
    max-width: 200px;
}


.btn-light {
  background-color: #fdfcf9;
  color: #5a3825;
  border: 2px solid #fdfcf9;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #c9a646;
  border-color: #c9a646;
  color: #fff;
}
