/*Apply to all elements in the page*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #192847;
  color: #f2f2f2;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 128px;
  padding-right: 128px;
}
@media (max-width: 1024px) {
  .container {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: none;
  margin-top: 10px;
  display: inline-block;
  color: black;
  background-image: linear-gradient(to bottom right, #fadb9a, #9f8247);
  padding: 12px 16px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: ease-in-out 0.15s;
}

.button:hover {
  color: #9f8247;
  background-image: linear-gradient(to bottom right, #f2f2f2, #f2f2f1);
  transition: ease-in-out 0.15s;
}

img {
  max-width: 100%;
}

.icon {
  height: 32px;
  width: 32px;
}

.whats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: ease-in-out 0.3s;
}

.whats:hover {
  transition: ease-in-out 0.3s;
  position: fixed;
  bottom: 45px;
  right: 30px;
}

/***************************************NAVIGATION****************************************************/
.hamburguer {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  z-index: 99;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: none;
}

.hamburguer .bar,
.hamburguer:after,
.hamburguer:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #192847;
  margin: 6px 0px;
  transition: 0.4s;
}

.hamburguer.is-active:before {
  transform: rotate(-45deg) translate(-7px, 5px);
}

.hamburguer.is-active:after {
  transform: rotate(45deg) translate(-9px, -8px);
}

.hamburguer.is-active .bar {
  opacity: 0;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  display: block;
  z-index: 98;
  background-color: #192847;
  padding-top: 120px;
  transition: 0.4s;
  opacity: 1;
}

.mobile-nav.is-active {
  left: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto 16px;
  text-align: center;
  padding: 12px 16px;
  background-color: #192847;
  font-size: 1.2rem;
  color: #f2f2f2;
  text-decoration: none;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
  .hamburguer {
    display: none;
  }
}
/****************************************HEADER****************************************************/
header {
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
header .container {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  transition: ease-in-out 0.5s;
}
header .container .first-column {
  flex: 1;
}
header .container .first-column .logo {
  height: 70.4px;
  width: 286.8px;
  background-image: url("../images/logo.png");
  background-position: center;
  background-size: cover;
  transition: ease-in-out 0.5s;
}
@media (max-width: 767px) {
  header .container .first-column .logo {
    height: 58px;
    width: 239px;
  }
}
header .container .second-column {
  flex: 3;
}
header .container .second-column nav {
  height: 100%;
  padding-left: 64px;
  padding-right: 64px;
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  justify-content: right;
  gap: 40px;
}
header .container .second-column nav a {
  color: #192847;
  font-size: 1rem;
  text-decoration: none;
  transition: ease-in-out 0.25s;
}
header .container .second-column nav a:hover {
  color: #9f8247;
  border-bottom: 5px solid #9f8247;
  transition: ease-in-out 0.25s;
}
@media (max-width: 767px) {
  header .container .second-column {
    display: none;
  }
}
header.is-scrolling .container .logo {
  height: 44px;
  width: 179.25px;
  transition: ease-in-out 0.5s;
}
@media (max-width: 767px) {
  header.is-scrolling .container .logo {
    height: 44px;
    width: 179.25px;
  }
}

main section.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../images/header.jpg");
  background-position: center;
  background-size: cover;
  animation: fadeIn 1.5s;
}
@keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
main section.banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: black;
  opacity: 0.65;
}
main section.banner .container {
  position: relative;
  z-index: 1;
}
main section.banner .container h1 {
  position: relative;
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3rem;
  animation-name: leftfadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes leftfadein {
  from {
    left: -50px;
  }
  to {
    left: 0px;
  }
}
@media (max-width: 767px) {
  @keyframes leftfadein {
    from {
      left: -20px;
    }
    to {
      left: 0px;
    }
  }
}
@media (max-width: 767px) {
  main section.banner .container h1 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
main section.banner .container .separator {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  max-width: 40%;
  border-top: solid 4px #9f8247;
  animation-name: leftfadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes leftfadein {
  from {
    left: -50px;
  }
  to {
    left: 0px;
  }
}
@media (max-width: 767px) {
  @keyframes leftfadein {
    from {
      left: -20px;
    }
    to {
      left: 0px;
    }
  }
}
main section.banner .container p {
  display: block;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 12px;
  animation-name: leftfadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes leftfadein {
  from {
    left: -50px;
  }
  to {
    left: 0px;
  }
}
@media (max-width: 767px) {
  @keyframes leftfadein {
    from {
      left: -20px;
    }
    to {
      left: 0px;
    }
  }
}
@media (max-width: 767px) {
  main section.banner .container p {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
main section.banner .container .btn_move {
  margin-top: 12px;
  position: relative;
  animation-name: leftfadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes leftfadein {
  from {
    left: -50px;
  }
  to {
    left: 0px;
  }
}
@media (max-width: 767px) {
  @keyframes leftfadein {
    from {
      left: -20px;
    }
    to {
      left: 0px;
    }
  }
}
@media (max-width: 767px) {
  main section.banner .container .btn_move {
    font-size: 1rem;
    line-height: 1rem;
  }
}
main section.banner .container .btn_move:hover {
  margin-top: 8px;
  margin-bottom: 4px;
  transition: ease-in-out 0.15s;
}
main section.banner .container .fade-in {
  animation: fadeIn 2s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main .workteam p {
  color: #9f8247;
  text-align: center;
}
main .workteam h2 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  main .workteam h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
main .workteam .container {
  padding-top: 6rem;
  margin-bottom: 1rem;
}
main .workteam .container .team-grid {
  margin-top: 6rem;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  main .workteam .container .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  main .workteam .container .team-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 64px;
  }
}
main .workteam .container .team-grid .content {
  text-align: center;
}
main .workteam .container .team-grid .person {
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  max-width: 100%;
  max-height: 400px;
}
main .workteam .container .team-grid h3 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5rem;
  padding-top: 1rem;
}
main .workteam .container .team-grid h4 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
main .intro p {
  padding-top: 6rem;
  color: #9f8247;
  text-align: center;
}
main .intro h2 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  main .intro h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
main .intro .container {
  padding-top: 6rem;
  margin-bottom: 1rem;
}
main .intro .container h2 {
  font-weight: 300;
  font-size: 1.3rem;
  padding-left: 15px;
  line-height: 1.5;
  text-align: right;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  main .intro .container h2 {
    font-size: 1rem;
  }
}
main .intro .container h3 {
  text-align: justify;
  color: #d1d0d1;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  main .intro .container h3 {
    font-size: 1rem;
  }
}
main .services p {
  padding-top: 6rem;
  color: #9f8247;
  text-align: center;
}
main .services h2 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  main .services h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
main .services .container {
  padding-top: 3rem;
  margin-bottom: 6rem;
}
main .services .container .content h3 {
  border-left: 3px solid #9f8247;
  font-weight: 400;
  font-size: 1.3rem;
  padding-left: 15px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  main .services .container .content h3 {
    font-size: 1rem;
  }
}
main .services .container .content h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.25rem;
  padding-bottom: 3rem;
  text-align: left;
}
@media (max-width: 767px) {
  main .services .container .content h2 {
    font-size: 1.5rem;
  }
}
main .services .container .content .list {
  color: #d1d0d1;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: left;
  padding: 1rem 3rem;
}
@media (max-width: 767px) {
  main .services .container .content .list {
    font-size: 0.9rem;
  }
}
main .contact {
  background-color: #f2f2f2;
  border-top: solid 4px #9f8247;
}
main .contact p {
  color: #9f8247;
  text-align: center;
  font-weight: 400;
  font-size: 1.5rem;
}
main .contact .container {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}
@media (max-width: 767px) {
  main .contact .container {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}
main .contact .container .contact-grid {
  display: grid;
  gap: 16px;
  margin: 0 20%;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  main .contact .container .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 15%;
  }
}
@media (max-width: 767px) {
  main .contact .container .contact-grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 0;
  }
}
main .contact .container .contact-grid .contacts {
  position: relative;
  border-radius: 8px;
  background-image: linear-gradient(to bottom right, #fadb9a, #9f8247);
  height: 100%;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  min-height: 100px;
}
@media (max-width: 767px) {
  main .contact .container .contact-grid .contacts {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
main .contact .container h2 {
  color: #192847;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  main .contact .container h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
main .contact .container h3 {
  color: #192847;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.25rem;
}
@media (max-width: 767px) {
  main .contact .container h3 {
    font-size: 1rem;
    line-height: 2rem;
  }
}
main .contact .container h4 {
  color: #192847;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.25rem;
}
@media (max-width: 767px) {
  main .contact .container h4 {
    font-size: 1rem;
    line-height: 2rem;
  }
}
main .contact .container a {
  color: #192847;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.25rem;
}
@media (max-width: 767px) {
  main .contact .container a {
    font-size: 1rem;
    line-height: 2rem;
  }
}
main .copyright {
  background-color: #192847;
  border-top: solid 4px #9f8247;
}
main .copyright .container {
  padding-top: 6rem;
  padding-bottom: 1rem;
  text-align: center;
}
main .copyright .container .logo_rodape {
  margin: 30px auto;
  height: 300px;
  width: 300px;
  background-image: url("../images/logo_rodape.png");
  background-position: center;
  background-size: cover;
}
main .copyright .container .mapBox {
  margin: 0 auto;
  width: 450px;
  height: 300px;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  main .copyright .container .mapBox {
    width: 100%;
    height: 110%;
  }
}
main .copyright .container .mapBox iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
main .copyright .container .content {
  width: 30%;
  margin: 0 auto;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  main .copyright .container .content {
    width: 80%;
  }
}
main .copyright .container .content h2 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #f2f2f2;
  font-weight: 400;
}
main .copyright .container .content p {
  font-size: 1rem;
  color: #f2f2f2;
  font-weight: 400;
}
main .copyright .container p {
  font-size: 0.8rem;
  color: #f2f2f2;
  font-weight: 400;
}
@media (max-width: 767px) {
  main .copyright .container p {
    font-size: 0.75rem;
  }
}