@import url("https://use.typekit.net/ziv2qce.css");
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 10px;
  z-index: 2;
}
.header .container {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 10px 10px;
  flex-wrap: wrap;
  max-height: 100vh;
}
@media (min-width: 1024px) {
  .header .container {
    align-items: flex-start;
  }
}
.header__logo {
  width: 110px;
  height: auto;
}
.header__hamburger {
  cursor: pointer;
  display: inline-block;
}
.header__hamburger span {
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__mainMenu {
  display: none;
  padding-top: 32px;
  width: 100%;
}
.header__mainMenu ul {
  list-style: none;
  padding: 0;
}
.header__mainMenu ul li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.25);
}
.header__mainMenu ul li a {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: var(--font-regular);
  text-transform: uppercase;
  letter-spacing: 4.2px;
  padding: 18px 0;
}
.header__mainMenu ul li a:hover {
  font-weight: var(--font-semibold);
}
@media (min-width: 1024px) {
  .header__mainMenu ul li a {
    padding: 0;
  }
}
.header__mainMenu ul li:last-child a {
  border: 0;
}
@media (min-width: 1024px) {
  .header__mainMenu ul li {
    border-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .header__mainMenu ul {
    display: flex;
    gap: 32px;
  }
}
.header__mainMenu .sub-menu {
  display: none;
}
.header__mainMenu .sub-menu li {
  border: 0;
}
.header__mainMenu .sub-menu li a {
  text-transform: uppercase;
  letter-spacing: normal;
  border: 0;
  font-size: 13px;
  padding-bottom: 0;
  opacity: 0.6;
}
.header__mainMenu .sub-menu li a:hover {
  font-weight: var(--font-regular);
}
.header__mainMenu .sub-menu li:last-child a {
  padding-bottom: 18px;
}
.header__mainMenu .sub-menu li:last-child a:after {
  display: none;
}
@media (min-width: 1024px) {
  .header__mainMenu {
    display: block;
    width: auto;
    padding-top: 8px;
    margin-left: auto;
    padding-right: 24px;
  }
}
.header .solucoes-menu {
  position: relative;
}
.header .solucoes-menu:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  bottom: -24px;
  margin: auto;
  border-bottom: 10px solid var(--color-navy);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.header .solucoes-menu--active:after {
  opacity: 1;
}
.header #subMenuDesktop {
  position: absolute;
  left: 0;
  right: 0;
  transform: translate(0, 65%);
  text-align: center;
  display: none;
}
.header #subMenuDesktop ul {
  width: auto;
  padding: 24px 32px;
  background: rgba(0, 0, 49, 0.65);
  display: inline-flex;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 16px;
  list-style: none;
}
.header #subMenuDesktop li {
  border-right: 1px solid #fff;
  padding-right: 16px;
  margin-right: 16px;
}
.header #subMenuDesktop li a {
  display: flex;
  align-items: center;
  text-align: left;
  font-weight: var(--font-regular);
  font-size: 10px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}
.header #subMenuDesktop li a img {
  margin-right: 16px;
}
.header #subMenuDesktop li a p {
  letter-spacing: 2px;
  white-space: nowrap;
}
.header #subMenuDesktop li:last-child {
  border: 0;
}
.header__append {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 32px;
}
.header__append__social {
  text-align: center;
  font-size: 32px;
}
.header__append__social a {
  display: inline-block;
  color: inherit;
  margin-right: 18px;
}
@media (min-width: 1024px) {
  .header__append__social a {
    margin-right: 8px;
  }
}
@media (min-width: 1024px) {
  .header__append__social {
    font-size: 22px;
  }
}
.header__append__language {
  position: relative;
  font-size: 14px;
}
.header__append__language i {
  display: none;
}
@media (min-width: 1024px) {
  .header__append__language i {
    display: block;
    margin-top: 2px;
    margin-right: 4px;
  }
}
.header__append__language a {
  margin-left: 24px;
  color: inherit;
  display: inline-block;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .header__append__language a:nth-child(1n+2) {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header__append__language a {
    margin-left: 0;
  }
}
.header__append__language__list {
  z-index: 0;
  width: 100%;
  background: var(--color-navy);
  padding: 0 12px;
}
.header__append__language__list a {
  margin-top: 12px;
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .header__append__language__list a {
    margin-top: 0;
    display: none;
  }
}
.header__append__language__list .active {
  opacity: 1;
}
@media (min-width: 1024px) {
  .header__append__language__list .active {
    display: block !important;
    pointer-events: none;
  }
}
@media (min-width: 1024px) {
  .header__append__language__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
  }
}
.header__append__language i {
  position: relative;
  z-index: 1;
  margin-left: 42px;
}
@media (min-width: 1024px) {
  .header__append__language {
    background: var(--color-navy);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 8px 8px 0;
    border-radius: 4px;
  }
}
.header__append--visible {
  display: flex;
}
@media (min-width: 1024px) {
  .header__append {
    width: auto;
    display: flex;
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .header {
    position: fixed;
  }
}

.trasparentDesktopMenu .header {
  position: fixed;
}
@media (min-width: 1024px) {
  .trasparentDesktopMenu .header .container {
    margin-top: 52px;
    background: none;
  }
}
@media (min-width: 1024px) {
  .trasparentDesktopMenu .header__logo {
    width: 160px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .trasparentDesktopMenu .header {
    position: absolute;
  }
}

.footer {
  padding: 0 25px;
  text-align: center;
}
.footer .container {
  padding: 52px 24px;
  border-radius: 27px 27px 0 0;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .footer .container {
    padding: 64px;
  }
}
.footer__logo {
  margin: auto;
  margin-bottom: 42px;
  order: 1;
}
.footer__logo img {
  max-width: 190px;
}
.footer__logo__description {
  display: none;
  font-size: 14px;
  font-weight: var(--font-light);
  line-height: 24px;
  font-style: normal;
  text-align: left;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .footer__logo__description {
    display: block;
  }
}
@media (min-width: 768px) {
  .footer__logo {
    margin: 0;
    width: 300px;
  }
}
.footer .footer__links {
  order: 3;
}
.footer .footer__links__menu {
  display: none;
}
.footer .footer__links__menu ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 46px;
}
.footer .footer__links__menu ul a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: var(--font-semibold);
  line-height: 24px;
  font-style: normal;
  text-align: left;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .footer .footer__links__menu {
    display: block;
  }
}
@media (min-width: 768px) {
  .footer .footer__links {
    order: 2;
  }
}
.footer .footer__info {
  order: 2;
}
.footer .footer__info .footer__copy {
  display: none;
}
@media (min-width: 768px) {
  .footer .footer__info .footer__copy {
    display: block !important;
  }
}
.footer__address {
  font-style: normal;
  font-size: 13px;
  font-weight: var(--font-light);
  line-height: 20px;
  font-style: normal;
  text-align: center;
  margin-bottom: 28px;
}
.footer__address__icon {
  margin-bottom: 12px;
}
.footer__address__icon img {
  margin: auto;
}
.footer__address a {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .footer__address {
    display: flex;
    gap: 16px;
    text-align: left;
  }
}
.footer__tel {
  font-style: normal;
  font-size: 13px;
  font-weight: var(--font-light);
  line-height: 20px;
  font-style: normal;
  text-align: center;
  margin-bottom: 28px;
}
.footer__tel__icon {
  margin-bottom: 12px;
}
.footer__tel__icon img {
  margin: auto;
}
.footer__tel a {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .footer__tel {
    display: flex;
    gap: 16px;
    text-align: left;
    align-items: center;
  }
}
.footer__social {
  margin-bottom: 46px;
}
.footer__social a {
  display: inline-block;
  margin: 0 8px;
  text-decoration: none;
  color: inherit;
}
.footer__social i {
  font-size: 28px;
}
@media (min-width: 768px) {
  .footer__social {
    text-align: left;
  }
}
.footer__copy {
  order: 4;
  font-size: 11px;
  font-weight: var(--font-light);
  line-height: 20px;
  font-style: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copy {
    display: none;
    text-align: left;
  }
}

.contactModal {
  display: none;
}
.contactModal__mask {
  background: rgba(0, 0, 49, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactModal__content {
  background: var(--color-white);
  border-radius: 12px;
  padding: 42px 8px;
  position: relative;
}
.contactModal__content__close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.contactModal__content__title h2 {
  font-size: 14px;
  font-weight: var(--font-semibold);
  line-height: 21px;
  font-style: normal;
  text-align: center;
  letter-spacing: 2.8px;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contactModal__content__title p {
  font-size: 16px;
  font-weight: var(--font-light);
  line-height: 26px;
  font-style: normal;
  text-align: center;
  color: var(--color-navy);
  margin-bottom: 24px;
}
.contactModal__content__form fieldset {
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
}
.contactModal__content__form fieldset legend {
  display: none;
}
.contactModal__content__form label {
  display: none;
}
.contactModal__content__form .frm_verify {
  display: none;
}
.contactModal__content__form input, .contactModal__content__form textarea {
  padding: 18px 24px;
  background: var(--color-navy);
  width: 100%;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 0;
  font-family: "poppins", sans-serif;
  font-size: 12px;
  font-weight: var(--font-regular);
  line-height: 24px;
  font-style: normal;
  text-align: center;
  letter-spacing: 2.4px;
  color: #ffffff;
}
.contactModal__content__form input::placeholder, .contactModal__content__form textarea::placeholder {
  color: #fff;
  text-transform: uppercase;
}
.contactModal__content__form .btn {
  width: 100%;
  padding: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 25px;
}

body {
  font-family: "poppins", sans-serif;
  font-style: normal;
}

strong {
  font-weight: var(--font-semibold);
}

:root {
  --color-gray: #E0E0E0;
  --color-navy: #000031;
  --color-orange: #FE273B;
  --color-pink: #E4005F;
  --color-white: #FFFFFF;
  --color-yellow: #FDCE01;
  --font-light: 300;
  --font-regular: 400;
  --font-semibold: 600;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0px 6px 6px 3px rgba(0, 0, 0, 0.16);
}

.btn-lg {
  padding: 16px 24px;
}

.btn-orange {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn-pink {
  background: var(--color-pink);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-pink);
}

.swiper-navigation-icon {
  display: none;
}

.swiper .swiper-button-prev {
  display: none;
  color: var(--color-orange);
}
.swiper .swiper-button-prev svg {
  fill: none;
  height: 28px;
}
@media (min-width: 1024px) {
  .swiper .swiper-button-prev {
    display: block;
  }
}
.swiper .swiper-button-next {
  color: var(--color-orange);
  display: none;
}
.swiper .swiper-button-next svg {
  fill: none;
  height: 28px;
}
@media (min-width: 1024px) {
  .swiper .swiper-button-next {
    display: block;
  }
}
.swiper .swiper-button-disabled {
  color: var(--color-navy);
  opacity: 0;
}
.swiper .swiper-pagination {
  display: none;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-navy);
  opacity: 1;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-orange);
}
@media (min-width: 1024px) {
  .swiper .swiper-pagination {
    display: block;
  }
}

@media (min-width: 1024px) {
  .alignright {
    float: right;
    margin-left: 24px !important;
  }
}