* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Gudea", sans-serif;
}

.cabecalho {
  width: 100%;
  height: 90vh;
  background: url(../img/aquarela.png);
  background-size: cover;
  border-radius: 10px;
  box-shadow: 5px 5px 10px gray;
}

.menu {
  width: 100%;
  background-color: #eea99d;
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
  padding: 0 20px;
  position: fixed;
}

.menu__logo {
  color: #6b4c47;
  text-decoration: none;
  font-size: 25px;
  transition: 0.5s all;
  border-radius: 13px;
  padding: 10px;
}

.menu__logo:hover{
  background-color: #ad736a;
}

.menu-navegacao {
  display: flex;
  list-style: none;
}

.menu-navegacao__link {
  color: #6b4c47;
  text-decoration: none;
  font-size: 17px;
  padding: 15px;
  transition: 0.5s all;
  border-radius: 13px;
}

.menu-navegacao__link:hover{
  background-color: #ad736a;
}

.banner{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.banner__titulo{
  color: #6B4C47;
  font-size: 70px;
  margin-bottom: 15px;
}

footer {
  font-family: "Allison", cursive;
  text-align: center;
  padding: 20px;
}

.campo-form {
  display: flex;
  flex-direction: column;
}

form {
  width: 70%;
  border: 2px solid #502f4c;
  padding: 20px;
  border-radius: 10px;
}

label,
input {
  margin-bottom: 10px;
}

fieldset {
  border: 2px solid #6b4c47;
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-botao {
  display: flex;
  justify-content: center;
}

.form-botao input {
  border: 1px solid #ffffff;
  background-color: #6b4c47;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.fale-conosco {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 45px;
}

.fale-conosco h2 {
  font-size: 25px;
  color: #502f4c;
  margin-bottom: 20px;
}