@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
  box-shadow: none;
}

html,
body {
  overflow-x: hidden !important;
  height: auto;
  margin: auto;
}

header {
  background-color: transparent;
  color: rgba(255, 255, 255, 1);
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 20px 0;

  article {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

header.glass {
  background-color: rgba(0, 0, 0, 0.514) !important;
  padding: 10px 0;
}


.logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 240px;
}

.menu {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0px;
  position: relative;
  padding: 0 0 0 300px;

  a {
    color: rgba(255, 255, 255, 1);
    position: relative;
    text-decoration: none;
    font-size: 17px;
    font-weight: 100;
    transition: color 0.2s ease;
  }
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 100;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #052630;
  color: white;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 100;
  border: 1px solid rgba(13, 136, 55, 1);
}

.dropdown-menu a {
  color: white;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 100;
  transition: color 0.2s ease;
  padding: 0 0 0 10px !important;
}


.contato-btn {
  color: rgba(13, 136, 55, 1) !important;
  border: 1px rgba(13, 136, 55, 1) solid;
  background-color: rgba(13, 136, 55, 1);
  border-radius: 40px;
  padding: 6px 8px 6px 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  line-height: 0px;

  img {
    padding-left: 10px;
  }
}

.menu .links:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: rgba(13, 136, 55, 1);
  visibility: visible;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.menu .links:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #FFF;
}

.icon-hover:hover {
  -webkit-animation: rotate-center 0.6s ease-in-out reverse both;
  animation: rotate-center 0.6s ease-in-out reverse both;
}

::-webkit-scrollbar {
  width: 3px;
  height: 2px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #052630;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #052630;
}

/* Stardarts texts */
.font-small-green {
  color: rgba(13, 136, 55, 1);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.font-title-secundary {
  font-size: 37px;
  line-height: 52px;
  color: #020508;
  font-weight: 500;
}

/* Text colors */
.text-white {
  color: #FFF;
}

.text-dark {
  color: #020508;
}

.text-dark-gray {
  color: #333333;
}

.text-green {
  color: rgba(13, 136, 55, 1);
}

/* Buttons */
.btn-standard {
  border-radius: 40px;
  padding: 12px 7px 13px 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;

  img {
    padding: 0 0 0 8px;
  }
}

/* BACKGROUDS */
.bg-c-transparent {
  background-color: transparent;
}

.bg-c-dark-blue {
  background-color: #172D4C;
}


/* Footer */
.footer-section {
  position: relative;
  padding: 90px 0 40px;
  background: url(../images/backgrounds/bg-footer.jpg) center/cover no-repeat;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(120deg,
      rgba(0, 48, 25, 0.973),
      rgba(0, 28, 61, 0.973),
      rgba(0, 60, 30, 0.979));
  background-size: 300% 300%;
  animation: waterFlow 15s ease-in-out infinite alternate;
  z-index: 0;
  opacity: 1;
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

@keyframes waterFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.footer-logo {
  max-width: 220px;
}

.footer-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
}

.footer-title {
  color: #00b050;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 4%;
  line-height: 20px;
  margin-bottom: 10px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00b050;
}

.footer-contact li {
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: flex-start;
}

.footer-contact li:nth-of-type(4) {
  flex-direction: column;

  span:nth-of-type(2) {
    padding-left: 27px;
  }
}

.footer-contact img {
  color: #00b050;
  margin-right: 8px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00b050;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.411);
  margin: 40px 0 20px;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.8;
}


/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Esconde suavemente */
#overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Bolinha girando */
.loader img {
  width: 150px;
}

.hp {
  position: absolute;
  left: -9999px;
}

.hp label {
  color: #FFF;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Conteúdo da página */
.conteudo {
  padding: 20px;
}

@media (max-width: 1376px) {
  .menu {
    padding-left: 230px;
  }
}

@media (max-width: 1240px) {
  header {
    padding: 0px 15px;

    .menu {
      padding-left: 40px;
    }
  }
}

@media (max-width: 990px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    align-items: start;
    top: 75px;
    left: 5%;
    width: 90%;
    background-color: rgba(0, 0, 0, 0.75) !important;
    padding: 20px 20px !important;
    border-radius: 40px;

    a {
      padding: 5px 0px;
      width: 100%;
      border-bottom: #FFF 1px solid;
      margin: 20px 0 0 0;
    }

    .contato-btn{
      border: none !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 500px) {
  .logo {
    justify-content: center !important;
  }

  header {
    padding: 20px 0;

    article {
      justify-content: center;
    }

    .hamburger {
      position: relative;
      left: -15%;

      div {
        width: 35px;
        margin: 2px 0;
      }
    }
  }

  .bounce-top {
    width: 35px;
  }

  .img-logo-2 {
    width: 200px;
  }

  .alt-title {
    font-size: 32px;
  }

  .alt-sub-title {
    font-size: 29px;
  }

  .alt-normal {
    font-size: 15px;
  }

  .text-w-mob1 {
    max-width: 350px;
  }
}