@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dhurjati&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bebas Neue", sans-serif;
}

.whatsapp-icon {
  font-size: 50px;
  position: fixed;
  right: 25px;
  bottom: 20px;
  z-index: 9999;
}

.text-color-primary {
  color: #061a40;
}

.text-color-secundary {
  color: #01baef;
}

.text-color-thirdy {
  color: white;
}

.btn {
  transition: transform 0.3s ease-out !important;
  background-color: #01baef !important;
  font-size: 20px !important;
}
.btn:hover {
  transform: scale(1.2);
  cursor: pointer;
  transition: 0.3s;
  color: white;
}
.btn a {
  text-decoration: none;
  color: white !important;
}

.nav-container {
  background-color: white !important;
}
.nav-container .navbar {
  background-color: white !important;
  min-height: 10vh;
}
.nav-container .navbar .nav-item {
  font-size: 26px;
}
.nav-container .navbar .navbar-toggler {
  border-color: transparent;
}

#navbar {
  background-color: white;
  visibility: visible;
  transition: transform 0.3 ease;
}

.hidden {
  display: none;
}

.show {
  display: inline-block;
}

.active {
  background-color: white !important;
  border-bottom: 4px solid #01baef !important;
  border-radius: 0 !important;
}

.logo {
  display: flex;
  padding: 0px 8px;
  align-items: center;
  gap: 8px;
}
.logo .text-logo-agni {
  color: #061a40;
  font-family: Dhurjati;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.logo .text-logo-code {
  color: #01baef;
  font-family: Dhurjati;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-container {
  min-height: 100vh;
}

.container-home {
  padding-bottom: 15vh;
}
.container-home .text-content {
  padding-top: 30vh;
}
.container-home .text-content #link-copied {
  padding: 5px;
  border-radius: 5px;
  margin-left: 2vh;
  color: white;
  background-color: #01baef;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.container-home .text-content #link-copied::before {
  content: "";
  right: 90px;
  width: 0px;
  height: -20px;
  top: 4px;
  display: block;
  position: absolute;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 15px solid #01baef;
}
.container-home .img-content {
  padding-top: 8vh;
}

.container-sobre {
  display: flex;
  align-items: center;
  background-color: #e5e5e5;
  padding-bottom: 20vh;
}
.container-sobre .img-content {
  padding-top: 12vh;
}
.container-sobre .text-content {
  padding-top: 30vh;
}

.container-projetos {
  background-color: white;
  color: #061a40;
}
.container-projetos .content {
  padding-top: 15vh;
  max-width: 130vh;
  max-height: 70vh;
}
.container-projetos .content .container-carousel {
  padding-top: 5vh;
}

.container-contato {
  min-height: 25vh;
  background-color: #061a40;
}
.container-contato fieldset {
  position: relative;
  padding: 20px;
}
.container-contato legend {
  background-color: #01baef;
  width: auto;
  border-radius: 10px;
  padding: 10px;
  position: absolute; /* Define o posicionamento absoluto para que o legend possa ser posicionado */
  top: -27px; /* Define o valor negativo para ajustar a posição vertical acima da borda superior do fieldset */
}

@media (max-width: 990px) {
  .container-home .text-content {
    text-align: center;
    padding-top: 23vh;
  }
  .container-sobre .text-content {
    padding-top: 110px;
  }
  .container-projetos {
    min-height: auto;
    padding-bottom: 20vh;
  }
}
@media (max-width: 770px) {
  .container-sobre .text-content {
    padding-top: 15vh;
    text-align: center;
  }
  .container-projetos {
    padding-bottom: 10vh;
  }
}
@media (max-width: 370px) {
  .logo .text-logo {
    display: none;
  }
}
@media (max-width: 352px) {
  .container-home .text-content #link-copied {
    margin-top: 2vh;
  }
  .container-home .text-content #link-copied::before {
    right: 40px;
    top: -20px;
    transform: rotate(90deg);
  }
}

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