:root {
  --cor01: #007D50;
  --cor02: #703922;
  --cor03: #87e97d;
  --cor04: #094f32;
  --cor05: #808080;
  --exo2: "Exo 2", sans-serif;
  --inter: "Inter", sans-serif;
}

body, html {
  overflow-x: hidden;
  font-family: var(--inter);
}

body {
  padding-top: 100px;
}

a, a:hover {
  text-decoration: none;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--cor01);
  z-index: 3;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
header #logo {
  height: 100px;
  display: flex;
  align-items: center;
  font-size: 0;
  color: transparent;
  margin: 0;
}
header nav {
  display: flex;
  justify-content: flex-end;
}
header nav .menu {
  max-width: 600px;
  width: 100%;
  height: 100px;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .menu > li {
  height: 100px;
  line-height: 100px;
  padding: 0 15px;
  position: relative;
}
header nav .menu > li a {
  color: white;
}
header nav .menu > li a::after {
  display: block;
  content: attr(title);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media speech {
  header nav .menu > li a::after {
    display: none;
  }
}
header nav .menu > li:hover a, header nav .menu > li.active a {
  font-weight: 600;
}
header nav .menu > li:hover::after, header nav .menu > li.active::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  height: 5px;
  width: 50px;
  border-radius: 2px;
  background-color: var(--cor02);
}

footer {
  background-color: var(--cor04);
  padding: 60px 0 20px 0;
  color: white;
}
footer .logo img {
  width: 150px;
}
footer .menu li {
  height: 38px;
  line-height: 38px;
}
footer .menu li a {
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}
footer .menu li:hover, footer .menu li.active {
  font-weight: 600;
}
footer .contatos {
  max-width: 230px;
  width: 100%;
}
footer .contatos .contato {
  display: flex;
  gap: 25px;
  align-items: center;
  height: 38px;
}
footer .contatos .contato a {
  color: white;
  font-size: 14px;
}
footer .contatos .contato a:hover {
  font-weight: 600;
}
footer .social {
  gap: 25px;
}
footer .direitos {
  color: #319b6f;
  font-size: 10px;
  text-transform: uppercase;
}

#whatsapp {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: block;
}
#whatsapp img {
  width: 60px;
}

.titulo-1 {
  font-family: var(--exo2);
  font-size: 25px;
  color: var(--cor03);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.titulo-2 {
  font-family: var(--exo2);
  font-size: 37px;
  color: var(--cor04);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.titulo-2.branco {
  color: white;
}
.titulo-2.cor-03 {
  color: var(--cor03);
}

.texto {
  color: var(--cor05);
  font-size: 16px;
  line-height: 30px;
}
.texto p {
  margin-bottom: 10px;
}
.texto.branco {
  color: white;
}

.botao {
  font-size: 13.3px;
  line-height: 13.3px;
  text-transform: uppercase;
  display: inline-block;
  border: none;
  font-weight: 400;
  padding: 16px 40px;
  border-radius: 46px;
  cursor: pointer;
}
.botao.marrom {
  background-color: var(--cor02);
  color: white;
}
.botao.verde {
  background-color: var(--cor04);
  color: white;
}

#not-found {
  height: 50vh;
  gap: 50px;
}

/*-xl*/
/*-lg*/
/*-md*/
@media (max-width: 991.98px) {
  html.active {
    overflow: hidden;
  }
  body.active {
    overflow: hidden;
  }
  header #logo img {
    height: 50px;
  }
  header #menu-principal {
    position: fixed;
    top: 0;
    left: -101vw;
    width: 100vw;
    height: 100vh;
    transition: 0.3s;
    background: url("../imagens/bg-menu.png") bottom right no-repeat var(--cor01);
  }
  header #menu-principal .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 300px;
    margin-top: 90px;
  }
  header #menu-principal .menu li {
    height: 60px;
    line-height: 100px;
    padding: 10px;
  }
  header #menu-principal .menu li.active::after {
    display: none;
  }
  header #menu-principal .menu li .social {
    gap: 30px;
  }
  header #menu-principal.active {
    left: 0;
  }
  header #area-botao-menu {
    width: 100%;
    height: 100%;
  }
  header #area-botao-menu button {
    background: none;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 0;
    position: relative;
  }
  header #area-botao-menu button i {
    font-style: normal;
    font-size: 22px;
  }
  header #area-botao-menu button i.close {
    display: none;
  }
  header #area-botao-menu button.active .close {
    display: inline;
  }
  header #area-botao-menu button.active .open {
    display: none;
  }
  footer .contatos {
    max-width: none;
  }
  footer .contatos .contato {
    flex-direction: column;
    height: auto;
    gap: 10px 0px;
    margin-bottom: 30px;
  }
  footer .social {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
  }
}
/*-sm*/
/*-xs*/
@media (max-width: 575.98px) {
  body {
    padding-top: 62px;
  }
  header #logo {
    height: 62px;
  }
}

/*# sourceMappingURL=site.css.map */
