@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

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

header {
  background-color: #052630;
  color: white;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding-left: 70px;
  padding-right: 70px;
}

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

.img-logo-1 {
  margin-right: 7px !important;
}

.menu {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  position: relative;
  left: 20px;
}

.menu a {
  color: white;
  position: relative;
  text-decoration: none;
  font-size: 18px;
  font-weight: 100;
  transition: color 0.2s ease;
  padding-left: 40px;
}

.menu a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #78AD3E;
  visibility: hidden;
  -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 a: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: #78AD3E;
}

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

/* Text size */
.alt-plus {
  font-size: 60px;
  font-weight: 600;
}

.alt-title {
  font-size: 40px;
  font-weight: 400;
}

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

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

.alt-small {
  font-size: 19px;
  font-weight: 400;
}

.alt-extra-small {
  font-size: 16px;
  font-weight: 400;
}

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

.text-dark-blue {
  color: #052630;
}

.text-green {
  color: #78AD3E;
}

/* Form */
input {
  border: 1px #9C9B9B solid;
  border-radius: 7px;
  height: 35px;
  padding-left: 10px;
}

textarea {
  border: 1px #9C9B9B solid;
  border-radius: 7px;
  padding-left: 10px;
  padding-top: 10px;
}

.btn-enviar {
  background-color: #78AD3E;
  color: #FFF;
  border-radius: 7px;
  border: none;
}

/* Footer */
.footer {
  background: #f5f5f5;
  color: #1f3b40;
  padding: 3rem 0 1rem;
  font-size: 0.9rem;
}

.footer a {
  color: #1f3b40;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .logo img {
  max-width: 180px;
}

.footer .social-icons a {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #7faf2f;
}

.footer .social-icons a:hover {
  color: #5e8c24;
}

.footer .newsletter input {
  border-radius: 0;
  border: 1px solid #ccc;
}

.footer .newsletter .btn {
  border-radius: 0;
  background: #7faf2f;
  border-color: #7faf2f;
}

.footer .newsletter .btn:hover {
  background: #6ea624;
  border-color: #6ea624;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

.form-email-cadastro input {
  background-color: transparent;
  color: #04212A;
  border-top-left-radius: 7px !important;
  border-bottom-left-radius: 7px !important;
  margin: 0px !important;
  height: 38px;
}

.form-email-cadastro button {
  border-top-right-radius: 7px !important;
  border-bottom-right-radius: 7px !important;
}

.div-contato-btn {
  display: none;
  border: 1px solid #78AD3E;
  border-radius: 40px;
}

.div-contato-btn a {
  color: #78AD3E;
  text-decoration: none;
  padding: 2px 10px;
  display: inline-block;
  font-size: 12px;
}

/* 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: 60px;
}

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

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

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

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

  header {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .bounce-top {
    width: 35px;
  }

  .img-logo-1 {
    width: 23px;
    height: 23px;
  }

  .img-logo-2 {
    width: 75px;
    height: 26px;
  }

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

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

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

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


@media (max-width: 1399px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: #04212A;
    padding: 20px 0;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .div-contato-btn {
    display: block;
  }
}

body {
  height: auto;
  margin: auto;
}

img {
  max-width: 100%;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

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

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

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