@font-face {
  font-family: inter-light;
  src: url(/fonts/static/Inter_18pt-Light.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: inter-regular;
  src: url(/fonts/static/Inter_18pt-Regular.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: inter-medium;
  src: url(/fonts/static/Inter_18pt-Medium.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: inter-semibold;
  src: url(/fonts/static/Inter_18pt-SemiBold.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: inter-bold;
  src: url(/fonts/static/Inter_18pt-Bold.ttf) format("truetype");
  font-display: swap;
}
:root {
  --inter-light: inter-light, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  --inter-regular: inter-regular, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  --inter-medium: inter-medium, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  --inter-semibold: inter-semibold, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  --inter-bold: inter-bold, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  --color-background: #F8F9FA;
  --color-text: #3b3b3b;
  --color1:#2C3E50;
  --color2:#4CD936;
  --color3:#1C8033;
  --color4:#308ac6;
  --color5:#004258;
  --color6:#1C1C1C;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: var(--color-background);
}

.whats {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border-radius: 9px;
  top: 88%;
  right: 1%;
  opacity: 0;
  transition: 0.3s, opacity 0.3s;
}

.visible {
  opacity: 1;
}

.whats > img {
  width: 65px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}

main {
  background-color: var(--color-background);
}

header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: var(--color-background);
  width: 100%;
  z-index: 999;
}

.logo-desktop {
  height: 40px;
}

.btn-service {
  color: var(--color-text) !important;
  padding: 0 !important;
}

nav, .btn-service {
  font-family: var(--inter-semibold), "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif !important;
  /* font-weight: 500 !important; */
  font-size: 16px !important;
}

nav > ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 2.5vw;
}

.dropdown-menu {
  min-width: 8rem !important;
}

nav > ul > li > a {
  text-decoration: none;
  color: var(--color-text);
}

.a-area {
  color: var(--color5);
}

.a-area::after {
  background: none repeat scroll 0 0 transparent;
  content: "";
  display: block;
  height: 0.5px;
  background: var(--color5);
  width: 103%;
  text-decoration: none !important;
}

.a-area > img {
  width: 25px;
  margin-bottom: 7px;
}

.a2 {
  text-decoration: none !important;
  color: white;
}

.a2::after {
  background: rgb(255, 255, 255);
}

.bg-hover {
  transition: 0.3s;
}

.bg-hover:hover {
  background-color: rgba(0, 0, 0, 0.1254901961) !important;
}

.button-cons {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--inter-semibold);
  text-decoration: none;
  padding: 10px 20px;
  color: #004258;
  border: 1px solid #004258;
  box-shadow: 2px 2px;
  border-radius: 30px;
  font-size: 16px;
  transition: 0.3s;
}

.button-cons:hover {
  box-shadow: none;
}

.home {
  padding: 80px 50px 0px;
}

.container-home {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 1600px;
}

.home-text > h1 {
  font-size: 50px;
  line-height: 1.2em;
  font-family: var(--inter-bold);
  color: var(--color5);
}

.home-text > p {
  text-transform: capitalize;
  font-size: 20px;
}

.an {
  display: inline-block;
  animation: button-arrow 2s ease infinite;
}

.icon-arrow-down {
  width: 55px;
  padding: 10px;
  margin-top: 40px;
  border-radius: 50px;
  background-color: #cdf3df;
}

.home-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
  max-width: 750px;
  min-width: 450px;
  width: 70%;
  transform: translate(0, -60px);
  gap: 3%;
}

.home-link {
  display: inline-block;
  width: 30%;
  min-width: 130px;
  cursor: default;
}

.home-link > img {
  width: 100%;
  height: 100%;
  min-width: 100px;
  border-radius: 12px;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
}

.home-link:nth-child(1) {
  animation: img-animate 2s 0.2s infinite;
}

.home-link:nth-child(2) {
  animation: img-animate 2s 0.4s infinite;
  margin-top: 185px;
}

.home-link:nth-child(3) {
  animation: img-animate 2s 0.6s infinite;
}

.service {
  padding: 45px 40px 20px;
}

.container-service {
  text-align: center;
}

.container-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}

.service-card {
  padding: 10px 20px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 19px;
  transition: 0.3s;
}

.service-card.an-card {
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.4);
}

.service-card > img {
  width: 75px;
}

.service-card > h2 {
  font-family: var(--inter-bold);
  font-size: clamp(0px, 5vw, 25px);
  /* font-weight: 700; */
  margin: 0;
  color: var(--color5);
}

.service-card > p {
  font-family: var(--inter-light);
  font-size: 16px;
  /* font-weight: 400; */
  margin: 0 auto;
  text-align: start;
  max-width: 400px;
  line-height: 1.7em;
}

.service-card > a {
  font-family: var(--inter-regular);
  text-decoration: none;
  text-transform: capitalize;
  color: white;
  font-size: 20px;
  background-color: var(--color3);
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.service-card > a:hover {
  background-color: #25a242;
}

.lead {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px;
  background: linear-gradient(114deg, #00516c, #164251);
}

.container-anim {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 80%;
  padding: 30px 30px;
  border-radius: 12px;
  max-width: 1200px;
  gap: 60px;
}

.container-anim > h1 {
  font-size: 40px;
}

.container-anim > a {
  text-decoration: none;
  font-family: var(--inter-medium);
  background-color: var(--color3);
  border-radius: 50px;
  color: white;
  padding: 2.2% 4.5%;
  font-size: clamp(0px, 1.8vw, 30px);
  /* font-weight: 500; */
}

.container-anim > a:hover {
  background-color: #158e47;
}

.about {
  padding: 140px 40px;
}

.carousel-inner, .carousel-item {
  border-radius: 20px !important;
}

.container-about {
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: space-around;
  max-width: 1500px;
  gap: 25px;
}

.about-img {
  width: 48%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.about-text {
  max-width: 610px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.about-text > h2 {
  font-family: var(--inter-medium);
  color: var(--color5);
  font-size: clamp(0px, 5vw, 50px);
  margin: 0;
}

.about-text > p {
  margin: 0px;
  font-size: 20px;
  /* font-weight: 400; */
  font-family: var(--inter-regular);
  line-height: 1.7em;
}

.about-mais {
  text-decoration: none;
  font-size: 20px;
  font-family: var(--inter-medium);
  background-color: var(--color5);
  color: white;
  padding: 8px 32px;
  border-radius: 9px;
  transition: 0.3s;
}

.about-mais:hover {
  background-color: #026181;
}

.objective {
  padding: 60px 10px;
}

.container-objective {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.objective-block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(-108deg, #0E2932, #226379);
  color: white;
  width: 85%;
  margin: 10px 0px;
  padding: 20px;
  border-radius: 20px;
  gap: 10px;
  transition: 0.3s ease-in-out;
}

.objective-block:hover {
  transform: scale(1.05);
}

.objective-block-text {
  width: 60%;
  max-width: 500px;
}

.objective-block > img {
  width: 20%;
  max-width: 250px;
  margin: 15px 0;
}

.objective-block-text > h2 {
  font-size: 40px;
  /* font-weight: 700; */
  font-family: var(--inter-bold);
  margin-bottom: 20px;
}

.objective-block-text > p {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.7em;
  font-family: var(--inter-regular);
  /* font-weight: 300; */
}

.objective-block-text > p > strong {
  font-family: var(--inter-bold);
  /* font-weight: 800; */
}

.hr-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color5);
  padding: 50px 0px;
}

.hr-banner > h2 {
  font-family: var(--inter-medium);
  font-size: clamp(0px, 3vw, 40px);
  text-align: center;
  vertical-align: middle;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 2px #ffffff;
  padding: 20px;
}

.contact {
  padding: 100px 20px;
}

.container-contact {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 auto;
  gap: 50px;
  max-width: 1900px;
}

.contact-block-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-block-text > h2 {
  font-family: var(--inter-medium);
  font-size: 40px;
}

.contact-block-text > p {
  font-family: var(--inter-regular);
  font-size: 17px;
}

.contact-block-text > ul {
  border-left: 2px solid black;
  list-style-type: none;
  margin: 20px 0px;
  padding-left: 20px;
  font-family: var(--inter-regular);
}

.contact-block-text > ul > li {
  margin-top: 15px;
  font-family: var(--inter-regular);
  /* font-weight: 400; */
}

.contact-block-text > ul > li > abbr {
  text-decoration: none;
  cursor: default;
}

.contact-list-img {
  width: 24px;
  margin-right: 5px;
}

.bt-2 {
  text-decoration: none;
}

.maps {
  filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.4));
  width: 32%;
  min-width: 350px;
  max-width: 450px;
  height: 300px;
}

iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

footer {
  padding: 10px 20px;
  color: white;
  background-color: var(--color5);
  margin: 0 auto;
}

.container-footer {
  max-width: 1500px;
  margin: 0 auto;
}

.block-footer {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-bottom: 2px solid white;
  gap: 20px;
  flex-wrap: wrap;
}

.it-footer {
  width: 95%;
  margin: auto;
  margin-top: 5px;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-footert-text {
  text-align: center;
}

.block-footer-imgs > a {
  margin: 0px 4px;
}

.block-footer-imgs > a > img {
  width: 24px;
}

.it-footer > p {
  margin: 0;
  font-size: 10px;
  /* font-weight: 400; */
  font-family: var(--inter-regular);
  text-align: center;
}

.it-footer > a {
  font-size: 10px;
  font-family: var(--inter-regular);
  /* font-weight: 400; */
}

.it-footer > div > a, p > a {
  color: white;
}

.icon-menu {
  width: 35px;
}

.container-fluid {
  flex-wrap: nowrap !important;
}

nav#nav-mobile {
  display: none;
  padding: 8px 6px 15px 20px;
  background-color: var(--color-background) !important;
}

.contact-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 10%;
}

.contact-menu > a > img {
  width: 25px;
}

.btn-sus-mobile {
  padding: 0 16px !important;
}

.ul-mobile {
  margin-top: 5px !important;
  /* margin-left: 25px !important; */
}

.logo-mobile {
  width: 100%;
  max-width: 120px;
}

a#a-logo {
  max-height: 40px !important;
  max-width: 120px !important;
}

.font-mobile {
  font-size: 20px !important;
  font-family: var(--inter-light) !important;
}

.a-agendar {
  font-size: clamp(0px, 3.5vw, 12.5px);
  font-family: var(--inter-medium);
  color: #0E2932;
  padding: 5.5px 20px;
  border-radius: 22px;
  border: 1px solid #0E2932;
  text-decoration: none;
  position: fixed;
  right: 1%;
  margin-right: 57px;
}

.navbar-shadow {
  background-color: white !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.item-service {
  padding: 5px 15px !important;
}

@media screen and (max-width: 950px) {
  /* .container-popup {
    width: 90%;
  } */
  .logo-desktop {
    display: none;
  }
  .nav-desktop {
    display: none;
  }
  nav#nav-mobile {
    display: block !important;
    padding: 8px 15px 15px 20px;
  }
  .nav-link {
    padding: 0 !important;
    text-decoration: none;
  }
  .navbar-nav-mobile {
    gap: 20px !important;
  }
  .cons2 {
    background-color: white !important;
    color: black;
    font-family: var(--inter-bold);
    /* font-weight: 700; */
    border-radius: 40px;
    font-size: clamp(0px, 4vw, 20px);
    margin-top: 40px;
  }
  .home {
    padding: 80px 10px 60px 10px;
  }
  .container-home {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
  .home-text > h1 {
    font-size: 7.5vw !important;
    margin-top: -15px;
  }
  .home-text > p {
    font-size: 3vw !important;
  }
  .home-img {
    width: 90%;
    margin: -5px 0px;
    min-width: auto;
  }
  .home-link {
    min-width: auto;
  }
  .home-link > img {
    min-width: auto !important;
  }
  .home-link:nth-child(2) {
    margin-top: 40vw;
  }
  .icon-arrow-down {
    margin-top: 10px;
  }
  .container-card {
    flex-direction: column;
    gap: 50px;
  }
  .service {
    padding: 10px 20px 40px;
  }
  .service-card {
    padding: 20px;
    gap: 25px;
  }
  .service-card > h2 {
    font-size: clamp(0px, 6vw, 27px);
  }
  .service-card > a {
    font-size: 20px;
    padding: 5px 25px;
  }
  .lead-anim-text > h1 {
    padding: 0px;
    width: 10%;
  }
  .about {
    padding: 100px 20px;
  }
  .about-text {
    align-items: center;
    gap: 15px;
  }
  .about-img {
    width: 90%;
    max-width: 450px;
  }
  .about-text > h2 {
    font-size: 35px;
  }
  .about-text > p {
    font-size: 18px;
    max-width: 500px;
    padding: 0px 10px;
    text-align: start;
  }
  .container-anim {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
    gap: 5px;
    transform: scale(1.2);
  }
  .container-anim > a {
    margin: 0 auto;
    margin-top: 6px;
    font-size: clamp(0px, 3.5vw, 25px);
  }
  .container-about {
    flex-direction: column;
    text-align: center;
  }
  .objective-block {
    width: 90%;
    flex-direction: column;
  }
  .objective-block > img {
    width: 40%;
    max-width: 200px;
    min-width: 60px;
  }
  .objective-block-text > h2 {
    font-size: clamp(0px, 7vw, 35px);
    text-align: center;
  }
  .objective-block-text > p {
    text-align: center;
  }
  .objective-block-text {
    width: auto;
    max-width: auto;
  }
  .hr-banner {
    padding: 25px 0px;
  }
  .hr-banner > h2 {
    font-size: clamp(0px, 6vw, 30px);
    padding: 0px 10px;
  }
  .container-contact {
    flex-direction: column;
  }
  .maps {
    width: 90%;
    max-width: 400px;
    min-width: auto;
  }
  .block-footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }
  .it-footer {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}/*# sourceMappingURL=main.css.map */