@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  border: none;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  list-style: none;
  text-decoration: none;
  outline-color: #e5f50a;
}

.main-span {
  color: #e5f50a;
}

.container {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 4%;
}

:root {
  --main-color: #2087e8;
}
::selection {
  background-color: rgba(59, 150, 255, 0.192);
}
button {
  cursor: pointer;
}

input,
select,
textarea {
  height: 48px;
  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);
}
/* classes reutilizáveis */
.pading-1-4 {
  padding: 2.8rem 0;
}
.-main-color {
  color: var(--main-color);
}

.btn-pink {
  border-radius: 10px;
  background: #d11569;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 16px 30px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 1rem;
}
.btn-pink:hover {
  background: #be125f;
}

.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;
}
.for-you {
  display: flex;
  flex-direction: column;
  align-items: left;
  width: 100%;
  gap: 1rem;
}

.btn-cta {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1rem;
}

.btn-cta span {
  text-transform: uppercase;
  font-weight: bold;
}

.title{
    font-weight: 500;
    font-size: 28px;
    color: #27272A;
    line-height: 120%;
    letter-spacing: -2%;
}
.title.ft-38{
    font-size: 38px;
}
.p{
    color: #52525B;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.3px;
}
.p.ft-14{
    font-size: 14px;
}
/* end classes reutilizáveis */

body {
  background: #fafdff;
  accent-color: var(--main-color);
}
html,
body {
  overflow-x: hidden;
  position: relative;
}
body.wait {
  cursor: wait;
}

/* nav */
.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: 10px;
  height: 36px;
}
.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-menu-btn {
  right: 1.5%;
}
.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);
}

/* banner */
.banner-01 {
  height: 520px;
  background-image: url(../img/banner-01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-01 main {
  width: 623px;
  max-width: 100%;
}
.banner-01 main h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.3px;
}
.banner-01 main p {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin: 16px 0px;
}
@media (max-width: 768px) {
  .banner-01{
    height: 500px;
  }
}
/* end banner */