@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  /* list-style: none; */
  text-decoration: none;
  outline-color: #d2dae0;
}
.hide {
  opacity: 0;
  visibility: hidden;
}
.container-d {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}
.container-header{
  margin: 0 auto;
  padding: 0 4%;
}
.text-center {
  text-align: center;
}

:root {
  --main-color: #2087e8;
}
::selection {
  background-color: rgba(59, 150, 255, 0.192);
}
button {
  cursor: pointer;
}

input, select {
  height: 47px;
  color: #000000bd;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  padding-left: 18px;
  border: 1px solid #bed0da;
  outline: none;
  margin-top: 3px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.14);
}
h2,
.h2 {
  /* headings/H2 */
  color: #00192e;
  font-size: 40px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.3px;
}
.btn-primary {
  border-radius: 10px;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 16px 30px;
  font-weight: 500;
  cursor: pointer;
}
.btn-primary:hover {
  background: #106ec7;
}
body {
  background: #fafdff;
  accent-color: var(--main-color);
  /* overflow-x: hidden; */
  /* overflow-y: hidden; */
}
.nav {
  padding: 20px 4%;
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.nav.fixed {
  background: #fafdff;
  box-shadow: 0px 2px 8px 0px rgba(22, 73, 120, 0.06);
}
.nav .logo {
  margin-right: 40px;
}
.nav .ul {
  width: 100%;
}

.nav .ul > li {
  font-size: 16px;
  color: white;
  margin-right: 28px;
}
.nav.fixed .ul > li{
  color: var(--gray-02-dark, #43515a);
}
.nav li.dropdown {
  position: relative;
}
.nav li.dropdown > img{
  filter: invert(1);
}
.nav.fixed li.dropdown > img{
  filter: invert(0);
}
.nav .ul a {
  color: var(--gray-02-dark);
}
.nav .ul .rigth {
  margin-left: auto;
}
.nav .ul .rigth li:first-child {
  margin-right: 15px;
}

.nav.fixed .localizacao-text {
  color: #000;
}
.nav.fixed .localizacao-text img{
  /* filter: invert(0); */
}
.localizacao-text {
  color: white;
}
.localizacao-text img{
  /* filter: invert(1); */
}
.nav li.dropdown .dropdown-menu {
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 4px 8px 0px rgba(81, 93, 61, 0.1);
  top: 48px;
  position: absolute;
  width: max-content;
  opacity: 0;
  z-index: 11;
  visibility: hidden;
}
.nav li.dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 30px;
}
.nav li.dropdown:nth-child(2) .dropdown-menu {
  top: 80px;
}
.nav li.dropdown:nth-child(2).dropdown-open .dropdown-menu {
  top: 60px;
}
.nav li.dropdown .dropdown-menu li {
  padding: 16px 17px;
  border-radius: 5px;
}
.nav li.dropdown .dropdown-menu li a {
  color: #43515a;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.nav li.dropdown .dropdown-menu li:hover {
  background: rgba(210, 218, 224, 0.4);
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}
.m-center-auto {
  margin: 0 auto;
}
.w-50 {
  width: 50%;
}
.w-100 {
  width: 100%;
}
.d-flex {
  display: flex !important;
}
.flex-direction-column {
  flex-direction: column;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-end {
  justify-content: end !important;
}
.justify-content-start {
  justify-content: start !important;
}
.align-items-center {
  align-items: center;
}

/* menu responsivo */
.menu-icon {
  height: 32px;
  width: 69px;
  cursor: pointer;
}

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
  background: #43515a;
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  margin-top: 10px;
  border-radius: 20px;
  -webkit-transition: 0.2s ease-in-out 0.2s;
  -moz-transition: 0.2s ease-in-out 0.2s;
  -o-transition: 0.2s ease-in-out 0.2s;
  transition: 0.2s ease-in-out 0.2s;
}

.nav.fixed .menu-icon span::before,
.nav.fixed .menu-icon span::after {
  background: #43515a;
}

.menu-icon span::before {
  margin-top: -10px;

  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-icon span::after {
  margin-top: 10px;

  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-icon.active span {
  background: transparent;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.menu-icon.active span::before {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1;
}

.menu-icon.active span::after {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media (max-width: 950px) {
  .menu-icon {
    display: block;
  }
  .ul > li {
    display: none !important;
  }
  .ul-mobile {
    position: fixed;
    left: -100%;
    top: 86px;
    background-color: #f0feff;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
    padding: 30px 5% 0px;
  }
  .ul-mobile li {
    margin-bottom: 13px;
    font-size: 16px;
  }
  .ul-mobile li a,
  .ul-mobile li {
    color: #43515a;
  }
}

.nav.fixed .ul-mobile {
  background: #fafdff;
}
.nav.menu-open .ul-mobile {
  left: 0;
}

/* footer */
footer {
  background: #002341;
}
footer .container .footer-row div {
  padding: 10px;
  width: 25%;
  margin-bottom: 15px;
}
footer .container .footer-row p {
  color: #f0f8ff;
  margin-bottom: 5px;
}
footer .container .footer-row ul li {
  margin-bottom: 6px;
}
footer .container .footer-row ul li a {
  color: rgba(240, 248, 255, 0.65);
  font-weight: 300;
}
footer .container .footer-row ul li a:hover {
  text-decoration: underline;
}
footer .line-footer {
  height: 2px;
  background: #002f57;
  margin-top: 30px;
  margin-bottom: 30px;
}
footer .footer-2 p {
  color: #c0e2ff;
}
footer .footer-2 a {
  color: #c0e2ff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  footer .footer-2 {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-2 div:first-child {
    margin-bottom: 14px;
  }
  footer .container .footer-row div {
    width: 100% !important;
  }
}
@media (max-width: 1020px) {
  footer .container .footer-row {
    flex-wrap: wrap;
  }
  footer .container .footer-row div {
    width: 50%;
  }
}