:root {
  --dark-slate-grey: #314d42;
  --midnight-blue: #052236;
  --white-smoke: #ededed;
  --black: #282828;
  --gainsboro: #e1ddd9;
  --peru: #a28361;
  --dim-grey: #555;
  --gainsboro-2: #e1ddd9;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: League Spartan, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

p {
  margin-bottom: 10px;
  font-family: League Spartan, sans-serif;
}

a, a:hover {
  text-decoration: none;
}

.section {
  width: 100%;
  padding: 4rem 0rem;
  position: relative;
}

/* --- Barra Superior (NOVO) --- */
.top-bar {
  background-color: #073c5f; /* Cor de fundo azul (ajuste) */
  padding: 16px 0; /* Espaçamento vertical (ajuste) */
  width: 100%; /* Garante que ocupe toda a largura */
  height: 40px;
}

.top-bar .container {
  display: flex;          /* Usa flexbox para alinhar */
  justify-content: end;  /* Alinha o conteúdo à direita */
  align-items: center;    /* Centraliza verticalmente */
}

.top-bar .menu-toggle-wrapper {
  /* Remove estilos que não são mais necessários aqui */
  margin-top: 0;
  /* Garante que o botão fique alinhado com o texto */

}

.top-bar .text-block-9,
.top-bar .nav-menu-open {
  color: white; /* Cor do texto e do ícone (branco, para contraste) */
  font-size: 16px;  /* Ajuste o tamanho da fonte, se necessário */
}

.section.hero {
  padding-top: 32px;
  width: 100%;
  /* height: 100vh; Ajuste a altura conforme necessário */
  position: relative; /* Para posicionar outros elementos sobre a imagem, se necessário */
  overflow: hidden; /* Garante que a imagem não vaze do contêiner */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Preenche todo o contêiner, mantendo a proporção da imagem */
  /* position: absolute; */
  top: 0;
  left: 0;
}

/* Opcional: Estilos para o conteúdo dentro do container, se houver */
.section.hero .container { /* Adicione .container para ser específico */
  position: relative; /* Para que o conteúdo fique sobre a imagem */
  z-index: 1; /* Garante que o conteúdo fique na frente da imagem */
  /* Outros estilos para o container, se necessário */
}

.section.full {
  width: 100vw;
  height: auto;
}

.section.interna {
  padding-top: 20vh;
  padding-bottom: 20vh;
}

.section.bg {
  background-image: url('../images/green.webp');
  background-position: 0 0;
  background-size: auto;
}

.section.bg.none {
  display: none;
}

.section.space-section {
  margin-top: 0;
  margin-bottom: 5rem;
}

.section.space-section.none {
  display: none;
}

.section.padding-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.section.padding-section.none, .section.section-none {
  display: none;
}

.section.section-grey {
  background-color: #e1ddd926;
  padding-top: 0;
}

#contato-forms {
  padding-top: 40px;
  padding-bottom: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-box {
  /* A imagem de fundo é definida aqui */
  background-image: url('../images/PRAIA-PRIVATIVA-2-compressed-1.webp');
  background-size: cover; /* A imagem cobre todo o elemento */
  background-position: center; /* Centraliza a imagem */
  background-repeat: no-repeat; /* Evita repetição da imagem */
  border-radius: 10px;
  position: relative; /*Para responsividade, para o form-inner*/

}

.contact-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--white-smoke);
}

.contact-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white-smoke);
}

.form-inner {
  background-color: var(--midnight-blue);
  padding: 20px;
  border-radius: 0 10px 10px 0; /* Arredonda apenas à direita */
  width: 50%; /* Largura do formulário (ajuste conforme necessário) */
   /* Para a responsividade */

}


/* (Estilos dos campos do formulário - Contact Form 7 - sem mudanças) */
.wpcf7-form label,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-submit{
    /*Estilos ja existentes*/
}
.wpcf7-form textarea{
  height: 120px;
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-box {
      background-image: none; /* Remove a imagem de fundo em telas menores */
  }

  .form-inner {
      width: 100%; /* O formulário ocupa toda a largura */
      border-radius: 10px; /* Arredonda todos os lados */
      position: static; /* Remove qualquer posicionamento absoluto/relativo */

  }
}

.contact-links {
  display: flex;
  justify-content: space-between; /* Distribui os links uniformemente*/
  align-items: center;
  width: 100%; /* Garante que ocupe toda a largura */
  flex-wrap: wrap; /* Permite que os links quebrem para a próxima linha em telas menores */
  gap: 10px; /*Espaçamento entre os botões*/
}
.contact-links a{
  text-decoration: none; /*Retira o sublinhado*/
  color: inherit; /*Usa a cor do texto herdada*/

}
.contact-link-item {
  background-color: #073c5f; /* Cor de fundo dos botões */
  color: white; /* Cor do texto */
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease; /* Transição suave */
  flex-grow: 1; /* Faz com que os itens se expandam para preencher o espaço disponível */
  min-width: 200px; /* Largura minima para os botões */
  margin-bottom: 10px; /*Margem para telas pequenas*/
}

.contact-link-item:hover {
  background-color: #052236; /* Cor no hover (mais escura) */
}

/* Responsividade */
@media (max-width: 768px) {


  .contact-links{
      flex-direction: column; /* Muda os links de contato para coluna */
      align-items: stretch; /* Faz os itens ocuparem toda a largura */
  }
}


/* Responsividade */
@media (max-width: 768px) {
  .contact-wrapper {
      flex-direction: column; /* Empilha as colunas em telas menores */
  }

  .form-column,
  .image-column {
      width: 100%; /* Ocupam toda a largura em telas menores */
      order: 0; /* Reseta a ordem */
  }
  .image-column{
      margin-top:1rem; /*Espaçamento do formulário*/
  }
}

.swipersection {
  height: auto; /* Ajuste para altura automática */
  position: relative; /* Importante para o posicionamento absoluto */
  padding: 4rem 1rem;  /* Adiciona espaço para a paginação 
}

.swiper-container {
  /* width: 80%;  Largura do carrossel */
  max-width: 960px; /* Largura máxima */
  margin: 20px auto; /* Centralizar */
  border-radius: 5px; /* Arredondamento */
  overflow: hidden; /* Esconder conteúdo que ultrapassa as bordas */
}

.swiper-slide {
  position: relative; /* Para posicionar o texto sobre a imagem */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Preencher o slide com a imagem */
  transition: transform 0.3s ease; /* Transição para o efeito de zoom */
}

.swiper-slide:hover img {
  transform: scale(1.05); /* Efeito de zoom */
}

.button-container {
  text-align: center; /* Centraliza o botão */
  padding: 20px; /* Espaçamento ao redor do botão (ajuste) */
  padding-top: 50px;
  padding-bottom: 0px;
}

.button-broker {
  background-color: #073c5f; /* Cor de fundo do botão (ajuste) */
  color: white; /* Cor do texto do botão */
  padding: 15px 30px; /* Espaçamento interno do botão */
  text-decoration: none; /* Remove o sublinhado do link */
  border-radius: 10px; /* Bordas arredondadas (opcional) */
  font-size: 18px; /* Tamanho da fonte (ajuste) */
  font-weight: bold; /* Negrito (opcional) */
  display: inline-block; /* Importante para o padding funcionar corretamente */
  transition: background-color 0.3s ease; /* Transição suave no hover */
  border: none; /* Remove a borda padrão */
  cursor: pointer; /* Muda o cursor para a mãozinha */
  width: max-content;
}

.button-broker:hover {
  background-color: #052236; /* Cor de fundo no hover (mais escura - ajuste) */
}

.slide-content {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #000000;
}

.slide-title {
  text-transform: uppercase;
  font-family: League Spartan;
  font-size: 25px;
  margin-bottom: 10px;
}

.slide-description {
  font-size: 20px;
}

.swiper-slide img {
  width: 100%;
  height: 300px; /* Altura da imagem */
  object-fit: cover;
}

.slide-text-bg {
  background-color: white;
  box-shadow: inset 0 2px 8px 8px #0003;
  height: 200px;
  display: flex;
  align-items: center;
}

.slide-content {
  text-align: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: black;
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -20px; /* Ajustar a posição vertical */
   /* Remover do swiper-container e mover para .swipersection */
  top: 50%; /* Centraliza verticalmente dentro de .swipersection */
  transform: translateY(-50%);
  z-index: 10; /* Garante que fiquem acima do conteúdo */

}
.swiper-button-prev {
  left: 10px; /* Posiciona à esquerda */
}

.swiper-button-next {
  right: 10px; /* Posiciona à direita */
}

.swiper-button-prev:after {
  left: 14px; /* Posiciona à esquerda */
}

.swiper-button-next:after {
  right: 14px; /* Posiciona à direita */
}

.swiper-button-prev:after,
.swiper-button-next:after {
  position: absolute;
  font-size: 34px;
}

.swiper-pagination {
  /* position: absolute;  Remover o position absolute original */
  bottom: 10px; /* Espaçamento do fundo */
  width: 100%; /* Ocupa toda a largura */
  text-align: center; /* Centraliza os bullets */
  transform: scale(1.5);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--midnight-blue);
  opacity: 0.5;
  margin: 0 5px; /* Adicionado espaçamento horizontal entre os bullets */
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* .section.bg-pele {
  background-color: #e1ddd926;
} */

.section.bottom {
  margin-bottom: 10vh;
}

.header {
  z-index: 93;
  width: 100%;
  position: absolute;
}

.header._2 {
  background-color: #254548;
  padding-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.container.right {
  margin-right: 0;
}

.container.z-20 {
  z-index: 50;
  position: relative;
}

.navigation {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.contact-list {
  margin-top: 20px;
  display: flex;
}

.icon {
  width: 50px;
}

.icon._2 {
  filter: invert() contrast(200%);
}

.contact-item {
  margin-right: 12px;
  display: none;
}

.contact-item.last {
  margin-right: 0;
}

.logo-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.logo-wrapper.footer {
  width: 100%;
  max-width: 220px;
}

.menu-toggle-wrapper {
  align-items: center;
  margin-top: 20px;
  display: flex;
  position: absolute;
  left: 82%;
}

.logo-mobile-container {
  display: none;
}

.nav-menu-open {
  z-index: 5;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 38px;
  height: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.menu-open-div {
  background-color: #eaeaea;
  width: 100%;
  height: 3px;
}

.menu-open-div._4 {
  width: 32px;
  height: 2px;
  display: block;
}

.menu-open-div._4.white {
  background-color: #fff;
}

.menu-open-div._3 {
  width: 32px;
  height: 2px;
  display: block;
}

.menu-open-div._3.white {
  background-color: #fff;
}

.menu-open-div._5 {
  width: 32px;
  height: 2px;
}

.logo {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.logo.noise {
  background-image: url('../images/noise.webp');
  background-position: 50%;
  background-size: contain;
}

.bg-overlay {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.bg-overlay.main {
  background-image: url('../images/bg-principal.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.logo-image {
  width: 150px;
  height: 136.672px;
  display: none;
}

.logo-image._2 {
  filter: invert() contrast(200%);
}

.logo-image.logo-principal {
  width: 150px;
}

.center-content {
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 50vw;
  height: 70%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title {
  color: #2b2b2b;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 150%;
}

.title.white {
  color: #fff;
}

.title.white.footer {
  font-weight: 400;
}

.title.white.left {
  text-align: left;
}

.title.white.weight {
  font-weight: 400;
}

.title.white.weight.button-title {
  font-size: 16px;
}

.title.none {
  display: none;
}

.body {
  font-family: League Spartan, sans-serif;
}

.image-229 {
  height: 100%;
}

.link-arrow-2 {
  margin-left: 4px;
}

.link-arrow-2.hue {
  filter: saturate(35%) hue-rotate(48deg);
}

.popup-wrapper {
  justify-content: flex-end;
  align-items: center;
  max-width: 1240px;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.popup-wrapper.menu-popup {
  width: 100%;
  height: auto;
}

.menu-container {
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;

  display: flex;
}

.footer-wrapper {
  border-top: 1px solid #5c5a53;
  padding-top: 56px;
  padding-bottom: 16px;
}

.footer-wrapper.footer-wrapper-modal {
  border-top-color: #f8f8e4;
  width: 90%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 26px;
}

.button-text-2 {
  color: #3c3a34;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.button-text-2.button-text-3 {
  font-size: 19px;
}

.image-7 {
  max-width: 22px;
}

.popup-close-link {
  transform-origin: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-10%, -50%)rotate(0);
}

.logo-name-wrapper {
  align-items: center;
  height: 55px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.address {
  align-items: flex-start;
  margin-bottom: 10px;
  text-decoration: none;
  display: flex;
}

.popup-button-main-wrap {
  width: 100%;
  max-width: 1240px;
  height: 120px;
}

.popup-link-border {
  transform-origin: 50%;
  background-color: #f6f2ef;
  width: 100%;
  height: 3px;
  display: none;
}

.button-10 {
  margin-top: 30px;
  text-decoration: none;
}

.button-10.button-basic {
  border: 1px solid #3c3a34;
  justify-content: center;
  margin-top: 0;
  padding: 12px;
  display: flex;
}

.pop-up-menu {
  z-index: 9999;
  /* background-color: var(--dark-slate-grey); */
  background-color: #052236;
  position: absolute; /* Mantenha fixed para telas menores */
  top: 50%; /* Começa no topo da tela */
  left: 77%;
  width: 15%;
  height: auto; /* 100% da altura da viewport */
  z-index: 999; /* Certifique-se de que esteja acima de tudo */
  opacity: 0; /* Começa invisível */
  transform: translateY(-10%); /* Começa escondido acima da tela */
  transition: transform 0.3s ease, opacity 0.3s ease; /* Transição suave */
  pointer-events: none; /* Impede cliques enquanto estiver escondido */
  display: block;
  border-radius: 20px;
}

.pop-up-menu.menu-open {
    opacity: 1; /* Fica visível */
    transform: translateY(0); /* Move para a posição original */
    pointer-events: auto; /* Permite cliques quando visível */
}

.footer-row {
  display: flex;
}

.footer-row.footer-row-modal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.footer-row.footer-row-modal.none {
  display: none;
}

.brand-2 {
  z-index: 100;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: block;
  position: static;
}

.brand-2.w--current {
  z-index: 100;
  justify-content: flex-start;
  position: absolute;
}

.social-icon {
  filter: invert() contrast(200%);
  max-width: 50px;
  margin-right: 15px;
}

.social-icon.last {
  margin-right: 0;
}

.icon-address {
  max-width: 35px;
  margin-right: 5px;
}

.paragraph-3 {
  color: #5c5a53;
}

.nav-sub-container {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  height: 65px;
  display: flex;
}

.nav-sub-container.nav-center {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
  position: relative;
}

.popup-menu-link {
  padding: 10px 0px 10px 0px;
  color: #f8f8e4;
  margin-left: 30px;
  margin-right: 30px;
  font-size: 38px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  transition: all .5s;
}

.bottom-menu{
  margin-bottom: 0px;
}

.popup-menu-link:hover {
  text-decoration: none;
  background-color: #254153;
}

.popup-menu-link.padding-align {
  text-align: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.menu-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  height: 50%;
  margin: 15px auto;
  display: flex;
}

.justify-column {
  max-width: 500px;
  margin-left: 20px;
  margin-right: auto;
}

.transition-bg-image {
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0%;
}

.transition-bg-image.about-us {
  background-image: url('../images/about-us.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition-bg-image.fachada {
  background-image: url('../images/Fachada-Park-View---vista-livre-para-o-Parque-compressed.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition-bg-solid {
  background-color: #f1f6fb;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.transition-bg-solid.about-us {
  background-color: #254548;
}

.split-column {
  width: 100%;
}

.split-column.image {
  position: relative;
}

.split-column.image.about-us {
  min-height: 620px;
}

.split-column.content {
  padding-left: 44px;
  padding-right: 44px;
}

.sufix-line {
  background-color: #0454ff;
  width: 30px;
  height: 4px;
  margin-bottom: 7px;
  margin-left: 8px;
}

.margin-button {
  margin-top: 32px;
}

.button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #20cd55;
  border: 2px solid #20cd55;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: all .3s;
}

.button:hover {
  background-color: #1aa545;
  border-color: #1aa545;
}

.button.primary {
  border-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
  align-items: center;
  margin-top: 0;
  padding: 15px 20px;
  font-size: 18px;
  display: flex;
}

.button.primary:hover {
  border-color: var(--white-smoke);
  background-color: var(--white-smoke);
  color: var(--midnight-blue);
}

.paragraph {
  color: #666f77;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
}

.paragraph.white {
  font-family: Gotham, sans-serif;
  font-weight: 400;
}

.paragraph.small {
  color: #eaeaea;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

.subheading {
  color: #666f77;
  letter-spacing: .08px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.subheading-wrapper {
  align-items: flex-end;
  margin-bottom: -14px;
  display: flex;
}

.title-2 {
  color: #070707;
  text-align: left;
  font-size: 36px;
  line-height: 1.25em;
}

.split-section-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.title-grid {
  color: #254548;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}

.title-grid.mt {
  text-align: left;
  margin-top: 40px;
}

.title-grid.mt.paragraph {
  font-family: Gothambook;
  font-weight: 400;
}

.title-grid.mt.paragraph.white {
  color: #fff;
}

.title-grid.mt.paragraph.right.big {
  font-family: Gotham, sans-serif;
  font-size: 20px;
}

.title-grid.mt.paragraph.right.big.center {
  text-align: center;
  margin-bottom: 0;
}

.title-grid.mt.center {
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.title-grid.mt.center.new-format {
  filter: contrast(200%);
  color: var(--white-smoke);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
}

.title-grid.mt.center.new-center {
  z-index: 40;
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.title-grid.mt.center.space-tour {
  margin-top: 0;
  margin-bottom: 40px;
}

.title-grid.mb {
  margin-bottom: 40px;
}

.title-grid.mb.text-center {
  color: var(--black);
  text-align: center;
  font-family: League Spartan, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.title-grid.white {
  color: #fff;
  text-align: left;
}

.title-grid.white.right {
  text-align: right;
}

.title-grid.white.right.footer {
  text-align: center;
}

.title-grid.white.footer {
  text-align: center;
  font-size: 14px;
}

.title-grid.white.small-mobile.text-center {
  text-align: center;
}

.title-grid.bold {
  font-family: Gotham, sans-serif;
  font-weight: 700;
}

.title-grid.text-footer {
  color: #000;
  text-align: left;
  text-transform: none;
  font-weight: 400;
}

.title-grid.none {
  display: none;
}

.author-item {
  margin-top: 80px;
}

.author-list {
  margin-top: 20%;
}

.box-wrapper {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.block-center {
  /* padding: 10vh; */
}

.block-center.mt {
/*   padding-top: 3vh; */
}

.block-center.np {
  padding-top: 0;
/*   padding-bottom: 10vh;
  padding-left: 10vh; */
}

.block-center.np.primary {
  background-color: #254548;
  background-image: url('../images/green.webp');
  background-position: 0 0;
  background-size: cover;
/*   padding-bottom: 10vh; */
}

.block-center.np.white {
  background-color: #fff;
}

.block-center.np._2 {
/*   padding-bottom: 5vh; */
}

.block-center.gallery {
/*   padding-top: 5vh;
  padding-bottom: 5vh; */
}

.block-center.formato-zero, .block-center.block-styles {
  padding: 0;
}

.block-styles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.block-center.supenderblock {
  padding-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
    flex-direction: column;
    justify-content: center;
}

.block-center.z-40 {
  z-index: 40;
  position: relative;
}

.full-image {
  z-index: 40;
  width: 100%;
  height: 100%;
  position: relative;
}

.full-image.full-height {
  object-fit: cover;
  height: 100%;
}

.full-image.image-grayscale {
  box-shadow: 0 2px 5px #00000080;
}

.full-image.image-grayscale.sem-efeito {
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  display: none;
}

.video {
  width: 100%;
  position: relative;
}

.play {
  width: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.grid-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  display: block;
}

.grid-content.footer {
  grid-template-columns: .75fr 1.25fr;
}

.grid-content.mb {
  margin-bottom: 20vh;
}

.grid-content.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.banner {
  position: relative;
}

.banner.bg {
  background-image: url('../images/green.webp');
  background-position: 0 0;
  background-size: auto;
}

.banner.bg.padding {
  background-image: none;
  padding-bottom: 10vh;
}

.form__group.field {
  width: 100%;
  margin-top: 50px;
}

.form__group.field.top {
  margin-top: -10px;
}

.form__group.field.check-box {
  margin-top: 10px;
}

.form__label {
  text-transform: uppercase;
  font-weight: 400;
}

.form-block {
  width: 100%;
}

.submit-button {
  float: right;
  text-transform: uppercase;
  background-color: #254548;
  width: 200px;
  margin-top: 40px;
  margin-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}

.submit-button:hover {
  background-color: #1b3335;
}

.footer.bg {
  background-image: url('../images/green.webp');
  background-position: 50%;
  background-size: auto;
}

.logo-footer {
  width: 100%;
  max-width: 400px;
}

.paragraph-wrapper-footer {
  margin-top: 15vh;
}

.footer-content-wrapper {
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.folha {
  width: 100%;
  margin-top: -120px;
}

.folha-wrapper {
  position: relative;
}

.copyright {
  background-image: url('../images/background-footer.webp');
  background-position: 50%;
  background-size: cover;
}

.footer-box-wrapper {
  padding: 15vh 10vh 20vh;
}

.partners {
  border-top: 2px solid #fff;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  padding-top: 60px;
  display: flex;
}

.left-partner, .right-partner {
  width: 50%;
}

.margin-right {
  margin-right: 10px;
}

.flex-footer-box {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-footer-box._2 {
  justify-content: flex-end;
}

.image-230 {
  margin-right: 12px;
}

.white-bg {
  background-color: #fff;
}

.main {
  width: 100%;
  padding-bottom: 29px;
  overflow: hidden;
}

.success-message {
  background-color: #254548;
}

.text-block-2 {
  color: #fff;
}

.flex-right {
  display: flex;
}

.logo-overlay {
  width: 160px;
}

.brand-link {
  width: 100%;
  max-width: 200px;
}

.green-block {
  background-color: #254548;
  padding: 40px;
}

.white {
  color: #eaeaea;
}

.accent-on-green {
  color: #e1e0b6;
}

.lgpd {
  z-index: 90;
  background-color: #eaeaea;
  border-radius: 4px;
  width: 300px;
  max-height: 665px;
  padding: 20px 30px;
  display: none;
  position: fixed;
  inset: auto auto 10vh 20px;
  box-shadow: 1px 1px 16px -14px #00000073;
}

.button-green {
  text-align: center;
  background-color: #5c9230;
  width: 100%;
}

.button-green:hover {
  color: #2b2b2b;
}

.lgpd-paragraph {
  font-size: 16px;
}

.small-title {
  font-size: 1.2vw;
  font-weight: 700;
  display: none;
}

.laws {
  width: 100%;
  margin-top: 20px;
}

.center {
  text-align: center;
}

.banner-right {
  width: 90%;
  margin-left: auto;
}

.banner-right.margin-top {
  width: 100%;
  margin-top: 0;
}

.caption-banner {
  padding-bottom: 3vh;
  padding-left: 10vh;
  padding-right: 10vh;
}

.caption-banner.bottom {
  margin-top: -7vh;
}

.right {
  text-align: right;
}

.slider {
  z-index: 1;
  height: 80vh;
  display: none;
}

.slider-2 {
  height: 80vh;
}

.container-caption {
  max-width: 857px;
  margin-left: auto;
  margin-right: auto;
}

.container-caption.flex.flex-gallery {
  justify-content: space-between;
  align-items: center;
}

.flex {
  display: flex;
}

.icone-navigation {
  cursor: pointer;
  transition: all .2s;
}

.icone-navigation:hover {
  filter: brightness(160%);
}

.icone-navigation.mr {
  margin-right: 10px;
}

.icone-navigation.mr.left {
  z-index: 5;
  position: absolute;
  inset: 0% auto 0% 0%;
  transform: translate(90px, 276px);
}

.icone-navigation.right-c {
  z-index: 5;
  position: absolute;
  inset: 0% 0% 0% auto;
  transform: translate(-86px, 276px);
}

.contact-fixed {
  z-index: 50;
  background-color: var(--dark-slate-grey);
  color: #fff;
  border-radius: 0;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 60px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
  box-shadow: 0 0 16px -4px #16471cc4;
}

.text-contact:hover {
  color: #fff;
}

.main-container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.chevron-white {
  filter: invert();
  width: 25px;
  height: 25px;
  margin-left: 50px;
  margin-right: 50px;
}

.text-static {
  align-items: center;
  display: flex;
}

.excerpt-text {
  display: none;
}

.list-contact {
  justify-content: space-between;
  display: flex;
}

.flex-contact {
  justify-content: center;
  display: flex;
}

.item-contact {
  color: #fff;
  margin-right: 20px;
  padding-left: 20px;
  display: flex;
}

.item-contact.last {
  margin-right: 0;
}

.item-contact.close {
  display: none;
}

.item-contact.first.btn.item {
  justify-content: center;
  align-items: center;
}

.item-contact.btn.desativ {
  display: none;
}

.icone-contact {
  object-fit: contain;
  width: 25px;
  height: 19px;
  margin-right: 10px;
}

.dn {
  display: none;
}

.lightbox-link {
  height: 100%;
}

.button-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.icon-local {
  margin-right: 8px;
}

.lowercase {
  text-transform: lowercase;
}

.text-block-3 {
  font-size: 15px;
}

.image-233 {
  z-index: 7;
  position: static;
  inset: 0% auto 0% 0%;
}

.video-btn {
  background-color: #254548;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-top: 10px;
  padding: 10px 20px;
  display: flex;
}

.video-btn:hover {
  background-color: #1e393b;
}

.text-block-4 {
  color: #fff;
  font-size: 17px;
}

.image-234 {
  width: 16px;
  margin-right: 8px;
}

.text-block-5 {
  color: #eaeaea;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}

.grid-cards {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  padding-bottom: 50px;
  display: grid;
}

.flex-card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-span {
  color: #e76530;
  font-weight: 700;
  text-decoration: underline;
}

.lightbox-link-2 {
  width: 30px;
}

.lightbox-link-2:hover {
  filter: contrast(133%);
}

.div-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mask {
  line-height: 41px;
}

.slider-3 {
  background-color: #0000;
}

.image-235 {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.slider-4 {
  background-color: #0000;
  height: 500px;
}

.slide-2 {
  height: 100%;
}

.lightbox-link-3 {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.slide-3 {
  line-height: 100%;
}

.image-236 {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.icon-2, .icon-3 {
  filter: invert();
}

.grid-duo {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.desc-parceria {
  color: #254548;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  font-family: Gothambook;
  font-size: 19px;
  font-weight: 400;
  line-height: 34px;
}

.image-237 {
  width: 400px;
}

.checkbox {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-span-2 {
  font-size: 19px;
}

.btn-item-link {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-item-link:hover {
  color: #2b2b2b;
}

.sucesso-message {
  background-color: #d4edda;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  display: none;
}

.sucesso-message.error {
  background-color: #f8d7da;
}

.text-block-6 {
  color: #155724;
  font-weight: 700;
}

.text-block-6.erro-text {
  color: #721c24;
}

.erro-message {
  background-color: #f8d7da;
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  display: none;
}

.div-block-4 {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.div-block-5 {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.bold-text {
  color: var(--black);
  font-weight: 500;
}

.bold-text.white {
  color: var(--white-smoke);
}

.div-block-6 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-6.sec2-none {
  display: none;
}

.div-ab-twoseason {
  z-index: 10;
  justify-content: center;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.paragraph-5 {
  color: var(--white-smoke);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 16px;
}

.paragraph-5.sec2-none {
  display: none;
}

.div-block-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0000;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding: 20px;
  display: grid;
}

.description-slider {
  color: var(--black);
  letter-spacing: 3px;
  text-transform: none;
  font-size: 17px;
  font-weight: 400;
}

.slider-5 {
  background-color: #0000;
  height: 100%;
}

.slide-4, .div-block-8 {
  height: 100%;
}

.image-238 {
  object-fit: cover;
  border-radius: 20px;
  width: 527px;
  height: 290px;
  margin-left: 30px !important;
}

.icon-4, .icon-5 {
  color: #2b2b2b;
  margin-left: 0;
}

.slide-nav {
  margin-bottom: -50px;
}

.description-3 {
  color: var(--white-smoke);
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}

.footer-2-menus-container {
  flex: 1;
  padding-left: 24px;
  padding-right: 24px;
}

.paragraph-small {
  font-size: 15px;
  line-height: 1.5;
}

.paragraph-small.p-footer {
  color: #eaeaea;
}

.menu-grid-vertical {
  grid-column-gap: 0px;
  grid-row-gap: 6px;
  grid-template-columns: 1fr;
}

.footer-2-logo {
  margin-bottom: 24px;
}

.container-2 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.container-large-2 {
  direction: ltr;
  width: 100%;
  max-width: 612px;
}

.container-large-2.align-center {
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  align-items: center;
  margin-left: -9px;
  margin-right: -9px;
  display: flex;
}

.icon-horizontal {
  align-items: center;
  display: flex;
}

.footer-logo {
  width: 125px;
}

.icon-horizontal-heading {
  color: #fff;
  margin-bottom: 0;
  margin-left: 18px;
}

.icon-horizontal-heading.reduced-margin {
  margin-left: 12px;
}

.container-small-2 {
  direction: ltr;
  width: 100%;
  max-width: 400px;
}

.footer-2-contact-details {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  grid-template-columns: 1fr;
}

.large-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

.link {
  color: #fff;
  padding-top: 4px;
  padding-bottom: 4px;
  transition: opacity .2s;
  display: block;
}

.link:hover {
  opacity: .5;
}

.footer-div-top-row {
  align-items: flex-start;
  display: flex;
}

.div-block-9 {
  color: #6d7d93;
}

.social-link-2 {
  margin-left: 9px;
  margin-right: 9px;
}

.footer-2-menus-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.social-link-image {
  filter: invert();
  max-height: 18px;
}

.div-block-10 {
  background-color: var(--black);
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-11 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  place-items: center stretch;
  display: grid;
}

.image-239 {
  border-radius: 20px;
  width: 486px;
  height: 288.141px;
  max-height: 100%;
}

.field-label {
  color: #294515;
  border-left: 1px solid #438521;
  width: 100%;
  padding-left: 5px;
  font-size: 18px;
  display: none;
}

.text-field {
  border: 1.5px solid var(--dark-slate-grey);
  background-color: var(--white-smoke);
  color: var(--black);
  border-radius: 20px;
  height: 45px;
  font-weight: 700;
}

.submit-button-2 {
  background-color: var(--dark-slate-grey);
  color: #eaeaea;
  border-radius: 8px;
  width: 120px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 18px;
  cursor: pointer;
}

.submit-button-2:hover {
  background-color: var(--black);
  color: var(--gainsboro);
}

.form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-12 {
  background-image: linear-gradient(#2b2b2b, #2b2b2b);
  justify-content: center;
  align-items: center;
}

.div-block-13 {
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  max-width: 100%;
  display: none;
  position: absolute;
  inset: 10vh auto;
}

.text-span-3 {
  font-size: 24px;
  font-weight: 400;
}

.text-span-4 {
  font-size: 22px;
}

.div-block-14 {
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100%;
}

.div-block-15 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.texto-slider {
  color: var(--midnight-blue);
  -webkit-text-stroke-color: #254548;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-top: 10px;
  font-family: League Spartan, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.div-block-center {
  width: 74%;
}

.div-block-16 {
  padding-top: 20px;
}

.div-block-17 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.image-240 {
  width: 100px;
}

.paragraph-6 {
  color: var(--white-smoke);
  margin-bottom: 0;
  margin-right: 5px;
}

.section-2 {
  background-image: linear-gradient(#052236, #052236 88%, #ffffff59);
}

.text_button_banner {
  text-transform: uppercase;
  font-size: 20px;
}

.text-block-8 {
  letter-spacing: 2px;
}

.divisor_section {
  background-color: var(--midnight-blue);
  background-image: url('../images/6512e7d62c79da02f71bf34a_BC1.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-19 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-20 {
  width: 100%;
  height: 85%;
}

.footer-content {
  z-index: 1;
  padding-bottom: 0;
  position: relative;
}

.copyright-text {
  color: #71757b;
  font-weight: 600;
}

.logo-footer-2 {
  width: 150px;
}

.social-media {
  flex-wrap: wrap;
  display: flex;
}

.social-link {
  margin-right: 15px;
}

.social-link.last {
  margin-right: 0;
}

.nav-link-footer, .nav-link-footer.w--current {
  color: #fff;
}

.flex-menu {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.copyright-2 {
  background-color: #373b3f;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar {
  background-color: #41454a;
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-241 {
  opacity: .4;
  width: 800px;
  position: absolute;
  inset: auto 10% 0% auto;
}

.image-242 {
  opacity: .4;
  transform-style: preserve-3d;
  width: 900px;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: rotateX(0)rotateY(160deg)rotateZ(0);
}

.image-243 {
  opacity: .4;
  transform-style: preserve-3d;
  width: 1200px;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: rotateX(0)rotateY(160deg)rotateZ(0);
}

.image-244 {
  opacity: .4;
  width: 800px;
  position: absolute;
  inset: auto 2% 0% auto;
}

.div-block-21 {
  z-index: 99;
  width: 100%;
  position: relative;
}

.div-block-22 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 450px;
  margin-bottom: 0px;
  padding: 10vh;
  display: flex;
}

.text-block-9 {
  color: var(--white-smoke);
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
}

.youtube {
  width: 80%;
  height: 60%;
}

.collection-list-wrapper {
  display: none;
}

.logo-icon {
  width: 38px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.text-block-36 {
  color: #231f20;
  text-align: center;
  background-color: #fff;
  border-radius: 8px 0;
  justify-content: center;
  align-items: center;
  width: 170px;
  margin-top: -13%;
  margin-left: 18%;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 500;
  display: none;
  position: absolute;
}

.div-block-23 {
  height: 100%;
}

.image-245 {
  background-image: url('../images/PORTARIA-compressed.webp');
  background-position: 0 0;
  background-size: auto;
}

.div-block-24 {
  background-image: linear-gradient(#05223680, #05223680);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 49.4%;
  height: 45.2%;
  margin-top: -25%;
  display: none;
  position: absolute;
}

.text-block-37 {
  font-weight: 900;
}

.text_divisor {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  width: 100%;
  font-size: 30px;
  font-weight: 700;
}

.text-block-38 {
  color: var(--midnight-blue);
  letter-spacing: 3px;
  font-size: 30px;
}

.title_espacos {
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
}

.title_virtual, .title_area, .title_maps {
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 700;
  font-family: Gotham;
  color: var(--black);
}

.left-arrow {
  justify-content: flex-start;
  align-items: center;
}

.img-gallery {
  object-fit: cover;
  width: 631.5px;
  height: 315.75px;
}

@media screen and (min-width: 1440px) {
  .main {
    padding-bottom: 29px;
  }

  .contact-fixed {
    border-radius: 0;
    width: 100%;
    margin-bottom: 0;
  }

  .div-ab-twoseason {
    inset: 20% 15% 5%;
  }

  .footer-content {
    padding-bottom: 0;
  }

  .image-244 {
    right: 5%;
  }

  .img-gallery {
    object-fit: cover;
    width: 712px;
  }
}

@media screen and (min-width: 1920px) {
  .title-grid.mt.center.new-center {
    z-index: 40;
    position: relative;
  }

  .full-image {
    z-index: 40;
  }

  .div-ab-twoseason {
    inset: 25% 25% 10%;
  }

  .image-241 {
    width: 750px;
    bottom: 10%;
    right: 23%;
  }

  .image-243 {
    inset: 0% 0% auto;
  }

  .image-244 {
    width: 900px;
    right: 18%;
  }

  .img-gallery {
    width: 1125px;
  }
}

.close-menu-btn {
  display: none;
}

@media screen and (max-width: 991px) {
  .section.bottom {
    margin-bottom: 5vh;
  }

  .navigation {
    grid-template-columns: 1fr 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-list {
    display: none;
  }

  .icon {
    filter: invert() contrast(200%);
  }

  .menu-toggle-wrapper {
    align-items: center;
    margin-top: 20px;
    display: flex;
    cursor: pointer; /* Adiciona o cursor de mãozinha */
  }

  .nav-menu-open {
    margin-right: 10px;

  }

  .logo {
    background-color: #0000;
    background-image: none;
    height: 25vh;
  }

  .logo-image {
    width: 160px;
  }

  .logo-image.header {
    filter: invert() contrast(200%);
  }

  .center-content {
    align-items: center;
    max-width: 600px;
  }

  .title {
    text-align: center;
    font-size: 25px;
  }

  .link-arrow-2.hue {
    filter: brightness(0%) saturate(35%);
  }

  .popup-wrapper {
    width: 90%;
  }

  .menu-container {
    flex-flow: column;
  }

  .footer-wrapper.footer-wrapper-modal {
    display: none;
  }

  .button-text-2.button-text-3 {
    color: #fff;
  }

  .address.address-modal {
    margin-bottom: 0;
  }

  .icon-menu {
    width: 45px;
    margin-right: 8px;
  }

  .button-10.button-basic {
    background-color: #0080ff;
    border-color: #0080ff;
  }

    .close-menu-btn {
      position: absolute; /* Posiciona em relação ao .pop-up-menu */
      top: 60px;       /* Distância do topo */
      right: 20px;     /* Distância da direita */
      background: none; /* Sem fundo */
      border: none;    /* Sem borda */
      cursor: pointer;  /* Muda o cursor para a mãozinha */
      z-index: 10000;
      padding: 0;
      display: flex;
      font-size: 50px;
      color: white;
  }
  .close-menu-btn:focus {
      outline: none; /* Remove o contorno de foco (acessibilidade: considere uma alternativa) */
  }

  .close-menu-btn svg {
      width: 64px;  /* Tamanho do ícone (ajuste) */
      height: 64px; /* Tamanho do ícone (ajuste) */
      fill: white;   /* Cor do ícone (ajuste) */
  }

  .pop-up-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    z-index: 9999;
    display: none; /* Inicialmente escondido */
    overflow-y: auto;
    flex-direction: column; /* Organiza os elementos verticalmente */
    border-radius: 0px;
}

.menu-open {
    display: flex; /* Torna visível quando a classe 'menu-open' é adicionada */
}

.logo-mobile-container {
    padding-top: 50px; /* Espaçamento ao redor do logo */
    text-align: center; /* Centraliza o logo horizontalmente (opcional) */
    display: block;
}

.logo-mobile {
    max-width: 150px; /* Largura máxima do logo (ajuste) */
    height: auto; /* Mantém a proporção */
}

.menu-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  background-color: transparent;
  border-radius: 0;
  padding-top: 10vh;
}

.menu-container {
    /* Seus estilos atuais (se houver) */
     display: flex;
    flex-direction: column;
}

.menu-container a {
    font-weight: bold;
    display: block;
    padding: 15px 0; /* Aumentei o padding para os links */
    text-decoration: none;
    color: white; /* Cor do texto dos links (ajuste) */
    transition: background-color 0.2s;
    text-align: center; /* Centraliza o texto dos links */
}

.text-block-3 {
  font-size: 25px;
}

.menu-container a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Leve fundo branco no hover (opcional) */
}

.popup-link-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Borda mais sutil */
    margin-top: 5px;
    width: 50%; /* Define a largura da borda */
    margin-left: auto; /* Centraliza horizontalmente */
    margin-right: auto; /* Centraliza horizontalmente */
}

/* Responsividade (Ajustes) */

.menu-toggle-wrapper {
  justify-content: space-between;
}



.text-block-9,
.nav-menu-open {
  font-size: 18px;
}

.menu-text{
  display: none;
}

  .social-icon.yt {
    filter: invert();
  }

  .icon-address.invert {
    filter: invert() grayscale();
  }

  .paragraph-3 {
    color: #626262;
    margin-bottom: 0;
  }

  .nav-sub-container.nav-center {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .popup-menu-link {
    filter: grayscale();
    align-items: center;
  }

  .popup-menu-link:hover {
    filter: none;
  }

  .justify-column {
    max-width: 100%;
    margin-left: auto;
    padding: 80px 40px;
  }

  .split-column.image.about-us {
    min-height: 480px;
  }

  .split-section-grid {
    grid-template-columns: 1fr;
  }

  .title-grid.mt.paragraph {
    margin-top: 0;
  }

  .title-grid.white.right {
    text-align: center;
  }

  .author-item {
    margin-top: 4em;
  }

  .author-list {
    margin-top: 10%;
  }

  .box-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .block-center {
/*     padding-top: 5vh; */
  }

  .block-center.mt.small {
/*     padding-bottom: 3vh; */
  }

  .block-center.np {
/*     padding-left: 10vh; */
  }

  .full-image.full-height {
    object-fit: cover;
  }

  .grid-content {
    grid-template-columns: 1fr;
  }

  .grid-content.footer {
    grid-template-columns: 1.25fr;
  }

  .folha-wrapper {
    display: none;
  }

  .partners {
    grid-template-columns: 1fr;
  }

  .left-partner {
    width: 100%;
    margin-bottom: 30px;
  }

  .right-partner {
    width: 100%;
  }

  .flex-footer-box {
    justify-content: center;
  }

  .lgpd {
    display: none;
    bottom: 13vh;
  }

  .small-title {
    font-size: 14px;
  }

  .contact-fixed {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }

  .text-static {
    display: none;
  }

  .list-contact {
    width: 100%;
  }

  .item-contact {
    align-items: center;
  }

  .item-contact.close {
    margin-left: 30px;
  }

  .item-contact.first {
    padding-left: 0;
  }

  /*.item-contact.last-mobile {*/
  /*  margin-left: 0;*/
  /*}*/

  .button-wrapper {
    justify-content: center;
  }

  .div-ab-twoseason {
    bottom: 5%;
    left: 10%;
    right: 10%;
  }

  .icon-4 {
    margin-left: 0;
  }

  .icon-5 {
    margin-left: 40px;
  }

  .footer-2-menus-container {
    margin-top: 72px;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-small.p-footer, .container-small-2 {
    text-align: center;
  }

  .footer-div-top-row {
    flex-direction: column;
    align-items: center;
  }

  .div-block-11 {
    grid-template-columns: 1fr;
  }

  .image-239 {
    object-fit: cover;
    width: 599px;
    height: 339.547px;
  }


  .nav-footer {
    flex-direction: row;
    display: flex;
  }

  .image-241 {
    right: 0%;
  }

  .image-244 {
    right: auto;
  }

  .text-block-36 {
    margin-left: 14%;
  }

  .div-block-24 {
    height: 43%;
  }
}


@media screen and (min-width:767px){
    .item-contact.last-mobile {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .navigation {
    margin-top: 0;
  }

  .logo.w--current {
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .logo-image {
    width: 140px;
    height: 127.547px;
  }

  .center-content {
    max-width: 500px;
  }

  .title {
    font-size: 22px;
  }

  .menu-container a {
    display: block; /* Faz com que cada link ocupe uma linha inteira */
    padding: 10px 0; /* Espaçamento interno dos links */
    text-decoration: none; /* Remove o sublinhado */
    color: white; /* Cor do texto dos links (ajuste) */
    transition: background-color 0.2s; /* Transição suave no hover */
}

  .footer-wrapper.footer-wrapper-modal {
    position: relative;
  }

  .button-text-2.button-text-3 {
    font-size: 17px;
  }

  .logo-name-wrapper {
    width: 170px;
    display: block;
  }

  .address {
    align-items: center;
  }

  .address.address-modal {
    margin-bottom: 0;
  }

  .footer-row {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-row.footer-row-modal {
    grid-column-gap: 5px;
  }

  .brand-2 {
    width: 300px;
    height: 90px;
    padding-left: 0;
  }

  .brand-2.w--current {
    z-index: 170;
    width: 290px;
    padding-left: 0;
  }

  .paragraph-3 {
    font-size: 16px;
  }

  .popup-menu-link {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 40px;
  }

  .justify-column {
    padding-left: 0;
    padding-right: 0;
  }

  .title-2 {
    font-size: 32px;
  }

  .split-section-grid {
    grid-template-columns: 1fr;
  }

  .title-grid {
    font-size: 21px;
  }

  .title-grid.mt.paragraph.margin {
    margin-top: 25px;
  }

  .title-grid.white {
    text-align: center;
  }

  .title-grid.white.small-mobile {
    font-size: 14px;
  }

  .block-center {
/*     padding-left: 5vh;
    padding-right: 5vh; */
  }

  .block-center.np {
/*     padding-left: 5vh; */
  }

  .block-center.np.primary {
/*     padding-right: 10vh; */
  }

  .block-center.np._2 {
/*     padding-left: 5vh; */
  }

  .banner.bg.padding {
    /*padding-bottom: 3vh;*/
  }

  .flex-footer-box {
    flex-wrap: wrap;
  }

  .image-230, .image-231 {
    margin-bottom: 20px;
  }

  .main {
    padding-bottom: 18px;
  }

  .banner-right {
    width: 100%;
    margin-left: 0;
  }

  .banner-right.margin-top {
    margin-top: 0;
  }

  .caption-banner {
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .caption-banner.bottom {
    margin-top: 2vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .icone-navigation.mr.left {
    z-index: 99;
    transform: translate(10px, 276px);
  }

  .icone-navigation.right-c {
    z-index: 99;
    transform: translate(-5px, 276px);
  }

  .text-contact {
    display: none;
  }

  .list-contact {
    width: 100%;
  }

  .item-contact {
    margin-left: auto;
    margin-right: auto;
  }

  

  .div-block-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-6 {
    grid-template-columns: 1fr 1fr;
  }

  .div-ab-twoseason {
    left: 5%;
    right: 5%;
  }

  .div-block-7 {
    grid-template-columns: 1fr;
  }

  .image-238 {
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding-left: 0;
  }

  .icon-4 {
    margin-left: -10px;
    margin-right: 0;
  }

  .icon-5 {
    margin-left: 50px;
  }

  .footer-2-menus-container {
    margin-top: 48px;
  }

  .footer-2-contact-details {
    justify-items: center;
  }

  .footer-div-top-row {
    text-align: center;
    align-items: center;
  }

  .footer-2-menus-grid {
    grid-template-columns: 1fr;
  }

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

  .div-block-19 {
    grid-template-columns: 1fr;
  }

  .copyright-text {
    text-align: center;
  }

  .flex-menu {
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-footer {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .brand-3 {
    width: 50%;
  }

  .brand-3.footer {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .image-244 {
    bottom: 10%;
  }

  .div-block-22 {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .text-block-36 {
    margin-top: -26%;
    margin-left: 35%;
  }

  .div-block-24 {
    width: 100%;
    height: 22.5%;
    margin-top: -50%;
  }
  
  .block-styles {
      grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 479px) {
  .container.custom {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-toggle-wrapper {
    top: 20%;
    right: 0%;
  }

  .logo.w--current {
    height: auto;
    margin-top: 20px;
  }

  .logo-image {
    width: 140px;
    height: 127.547px;
  }

  .image-229 {
    object-fit: contain;
  }

  .footer-wrapper.footer-wrapper-modal {
    border-top-style: none;
    width: 100%;
  }

  .button-text-2 {
    font-size: 17px;
  }

  .image-7.hue {
    max-width: 19px;
  }

  .logo-name-wrapper {
    width: 120px;
    margin-left: 10px;
  }

  .address {
    margin-bottom: 20px;
  }

  .popup-button-main-wrap {
    height: 80px;
  }

  .icon-menu {
    width: 35px;
  }

  .button-10.button-basic {
    width: 100%;
  }

  .pop-up-menu {
    width: 100%;
    overflow: auto;
  }

  .footer-row.footer-row-modal {
    display: block;
  }

  .brand-2 {
    width: auto;
    height: auto;
  }

  .brand-2.w--current {
    width: 200px;
  }

  .ocultar-mobil {
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    display: flex;
  }


  .brand {
    margin-left: auto;
    margin-right: auto;
  }

  .justify-column {
    padding: 72px 0;
  }

  .split-column.content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .button.primary {
    padding: 10px 20px;
  }

  .paragraph {
    text-align: left;
    font-size: 16px;
    line-height: 1.3em;
  }

  .title-2 {
    font-size: 26px;
    line-height: 1.15em;
  }

  .title-grid.mt.paragraph {
    font-size: 15px;
  }

  .title-grid.mt.paragraph.white.padding-mobile {
    margin-top: 10px;
    padding-top: 20px;
  }

  .title-grid.mt.paragraph.margin.padding-mobile {
    padding-top: 20px;
  }

  .title-grid.mt.center.new-format {
    margin-top: 0;
  }

  .title-grid.white.footer {
    font-size: 16px;
  }

  /*.block-center {*/
  /*  padding-left: 3vh;*/
  /*  padding-right: 3vh;*/
  /*}*/

  /*.block-center.np {*/
  /*  padding-left: 5vh;*/
  /*}*/

  /*.block-center.np.primary {*/
  /*  padding-right: 5vh;*/
  /*}*/

  /*.block-center.np._2 {*/
  /*  padding-left: 3vh;*/
  /*}*/

  .submit-button {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer-box-wrapper {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .main {
    padding-bottom: 29px;
  }

  .small-title {
    font-size: 12px;
  }

  .prev, .next, .selected, .hideright {
    width: 100%;
    min-width: 100%;
  }

  .contact-fixed {
    box-shadow: 0 0 16px -4px #25454857;
  }

  .text-contact {
    display: none;
  }

  .main-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .excerpt-text {
    text-align: center;
    margin-top: 4px;
    display: none;
  }

  .list-contact {
    align-items: center;
  }

  .item-contact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .item-contact.close {
    width: 10%;
    margin-left: auto;
  }

  .icone-contact {
    object-fit: scale-down;
    height: 30px;
    margin-right: 0;
  }

  .button-wrapper.margin-df {
    margin-left: 10px;
    margin-right: 10px;
  }

  .video-btn {
    width: 100%;
  }

  .grid-cards {
    flex-direction: column;
    display: flex;
  }

  .div-block-2 {
    text-align: center;
  }

  .text-span {
    text-align: center;
    display: flex;
  }

  .image-235 {
    object-fit: contain;
  }

  .slide-2 {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .image-236 {
    object-fit: contain;
  }

  .lightbox-link-4 {
    width: 100%;
    height: 100%;
  }

  .checkbox {
    width: 40px;
    height: 40px;
  }

  .sucesso-message, .erro-message {
    padding-left: 20px;
  }

  .div-block-4 {
    flex-direction: column;
  }

  .bold-text {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-6 {
    grid-template-columns: 1fr;
  }

  .div-ab-twoseason {
    left: 5%;
    right: 5%;
  }

  .paragraph-5 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .div-block-7 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-238 {
    object-fit: cover;
    height: 166px;
  }

  .slide-nav {
    margin-bottom: 40px;
  }

  .image-239 {
    height: 152.641px;
  }


  .nav-footer {
    flex-flow: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .image-241 {
    display: none;
  }

  .image-243 {
    width: 300px;
    top: 50%;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .image-244 {
    bottom: 40%;
  }

  .div-block-22 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-9 {
    display: none;
  }

  .text-block-36 {
    margin-top: -27%;
    margin-left: 24%;
  }

  .div-block-24 {
    height: 21%;
  }

  .title_maps, .title_area {
    line-height: 26px;
    font-size: 19px;
  }

  .img-gallery {
    height: 210px;
  }
}

#w-node-aaa22fae-d703-b94d-f6a2-955491ee6134-4443181d {
  place-self: auto center;
}

#w-node-_22b14185-57f9-df2b-4c0b-6847f96e15b6-4443181d {
  place-self: start end;
}

#w-node-_4c8b9d80-1961-f3bb-3b48-731d043c3ad8-4443181d, #w-node-_48beb729-5146-fb7e-0896-0dfe4512de35-4443181d, #w-node-_5d6a86d9-62d1-adfe-896f-c853199b9474-4443181d, #w-node-_0952ff81-7516-07e2-11a1-2abb7365b2f7-4443181d, #w-node-_19392b6a-01f2-f24e-75d9-ecf73c6376ff-4443181d, #w-node-_4bd94389-1176-024b-903d-989f2dfe440f-4443181d, #w-node-e96aacda-c003-1c75-1cbc-9de4227d4c94-4443181d, #w-node-_3707b367-5a82-fd65-1bca-8fbb00dbe95c-4443181d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3707b367-5a82-fd65-1bca-8fbb00dbe95d-4443181d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_74cc009f-1f20-7add-739a-0c08409dd71e-4443181d, #w-node-f597facc-6241-a768-2ca5-df570c95d05d-4443181d, #w-node-f597facc-6241-a768-2ca5-df570c95d05e-4443181d, #w-node-_55f02832-b609-83e8-0a8d-168f2c020c96-4443181d, #w-node-_55f02832-b609-83e8-0a8d-168f2c020c97-4443181d, #w-node-_55f02832-b609-83e8-0a8d-168f2c020c98-4443181d, #w-node-_764ecb42-86fe-69ca-2425-0d3484fbb83b-4443181d, #w-node-_764ecb42-86fe-69ca-2425-0d3484fbb83c-4443181d, #w-node-_764ecb42-86fe-69ca-2425-0d3484fbb83d-4443181d, #w-node-_809db335-90dd-9310-db53-d36878252d2c-4443181d, #w-node-_809db335-90dd-9310-db53-d36878252d2d-4443181d, #w-node-_809db335-90dd-9310-db53-d36878252d2e-4443181d, #w-node-_58dabde9-471d-eab5-191d-b9244ec03f20-4443181d, #w-node-_58dabde9-471d-eab5-191d-b9244ec03f21-4443181d, #w-node-_58dabde9-471d-eab5-191d-b9244ec03f22-4443181d, #w-node-_017f6164-59fc-324e-7225-f00cb3f883f7-4443181d, #w-node-_017f6164-59fc-324e-7225-f00cb3f883f8-4443181d, #w-node-_017f6164-59fc-324e-7225-f00cb3f883f9-4443181d, #w-node-f70aa537-5bbf-7689-f7df-f6345952780e-4443181d, #w-node-f70aa537-5bbf-7689-f7df-f6345952780f-4443181d, #w-node-f70aa537-5bbf-7689-f7df-f63459527810-4443181d, #w-node-d24b963b-a514-a564-8666-0d1d5cafa171-4443181d, #w-node-d24b963b-a514-a564-8666-0d1d5cafa172-4443181d, #w-node-d24b963b-a514-a564-8666-0d1d5cafa173-4443181d, #w-node-fa9e3954-6d93-34f7-22ed-6acd8e4b2c6b-4443181d, #w-node-fa9e3954-6d93-34f7-22ed-6acd8e4b2c6c-4443181d, #w-node-fa9e3954-6d93-34f7-22ed-6acd8e4b2c6d-4443181d, #w-node-_08d9db3a-a99a-94c9-67f7-1e8a725b9ebb-4443181d, #w-node-e984592f-4732-79d6-0c15-e015b0902421-4443181d, #w-node-_7a263c1c-3673-80c9-4736-a1c049747786-4443181d, #w-node-_34ca29cc-f9b6-22b0-b6a0-7e5c43bf8799-4443181d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ceaeb60-3afc-c10c-f9f1-b4a353566167-4443181d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_02195fee-2309-958c-adb1-23e5e53c4942-4443181d, #w-node-_3f9d8676-0c08-1c3a-37cb-7a88e59d2b0b-4443181d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-aaa22fae-d703-b94d-f6a2-955491ee6134-4443181d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-UltraItalic.otf') format('opentype'), url('../fonts/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-XLightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

