/* Geral */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

p {
  line-height: 24px !important;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media (max-width: 1200px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
button,
label,
input,
textarea,
li,
a,
select,
figcaption,
strong {
  font-family: "Montserrat", sans-serif;
}

.background-top {
  background-size: cover;
  background-color: #272727;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.text-orange {
  color: #f59a1b;
  font-weight: 600;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #060606cc;
  z-index: 2;
  cursor: pointer;
}

/* Header */

#header-madrugada {
  padding: 35px 0;
}

.menu {
  display: grid;
  grid-template-columns: 20% 60% 20%;
}

@media (max-width: 1200px) {
  .menu {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "login logo sidebar";
    /* Define a área para cada coluna */
  }

  .login {
    grid-area: login;
    /* Define a área da coluna de login */
  }

  .logo {
    grid-area: logo;
    /* Define a área da coluna do logo */
  }

  .sidebar {
    grid-area: sidebar;
    /* Define a área da coluna da barra lateral */
  }
}

.menu div {
  margin: auto 0;
}

.logo img {
  width: 80%;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .logo img {
    width: 18%;
    margin: 0 auto;
  }

  .logo {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .logo img {
    width: 20%;
  }
}

@media (max-width: 500px) {
  .logo img {
    width: 40%;
  }
}

.menu-itens ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-itens li {
  color: #fff;
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  margin: 0 10px;
}

@media (max-width: 1200px) {
  .menu-itens li {
    color: #373737;
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    padding: 1.5em 1em !important;
    margin: 0;
  }
}

.menu-itens li::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: -8px;
  left: 0;
  border-radius: 90px;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.menu-itens li:hover::after {
  transform: scaleX(1);
  transform-origin: top left;
}

.login {
  margin: auto 0;
}

.login button {
  color: #fff;
  display: inline-block;
  font-size: 15px;
  background: transparent;
  font-weight: 600;
  border: 0;
  margin: 0 0 0 15px;
}

@media (max-width: 1200px) {
  .login button {
    font-size: 0;
  }

  .login a:first-child {
    display: none;
  }
}

@media (max-width: 500px) {
  .login button {
    text-align: right;
    padding: 0;
  }
}

.login button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin: 0px 0 -11px 0;
}

@media (max-width: 1200px) {
  .login button img {
    width: 45px;
    height: 45px;
    margin: 0;
  }
}

@media (max-width: 800px) {
  .login button img {
    width: 40px;
    height: 40px;
  }
}

.sidebar {
  text-align: right;
}

.sidebar button {
  background: transparent;
  border: 0;
}

.sidebar img {
  width: 45px;
  height: 45px;
}

@media (max-width: 800px) {
  .sidebar img {
    width: 40px;
    height: 40px;
  }
}

/* Sidebar */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 999;
}

.sidenav .header-sidenav {
  display: flex;
  padding: 1em 2em;
  border: 1px solid #d6d6d6;
  justify-content: space-between;
  align-items: center;
}

.sidenav .header-sidenav span {
  margin: 0;
  color: #005aa3;
  font-weight: 600;
  font-size: 20px;
}

.sidenav .header-sidenav span:hover {
  color: #f59a1b;
}

.sidenav .header-sidenav p {
  color: #000;
  font-size: 50px;
  font-weight: 600;
  margin: 0;
}

.sidenav .header-sidenav p:hover {
  color: #f59a1b;
}

.sidenav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidenav ul li {
  padding: 1.5em 2em;
  border-bottom: 1px solid #d6d6d6;
}

.sidenav ul a {
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.sidenav ul a:hover {
  color: #005aa3;
  cursor: pointer;
}

/* Banner */

#banner {
  padding: 1em 0;
}

#banner .bloco1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

@media (max-width: 800px) {
  #banner .bloco1 {
    grid-template-columns: 1fr;
    padding: 0 0 15px 0;
    grid-gap: 0;
  }
}

#banner .bloco1 h1 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 50px;
  font-weight: 700;
  padding: 0 0 1em 0;
}

@media (max-width: 1200px) {
  #banner .bloco1 h1 {
    font-size: 25px;
    line-height: 40px;
  }
}

#banner .bloco1 p {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  margin: 0;
}

@media (max-width: 1200px) {
  #banner .bloco1 p {
    font-size: 16px;
    line-height: 25px;
  }
}

.text-digit {
  background: #005aa3;
  padding: 5px;
}

.image-banner img {
  width: 100%;
  object-fit: cover;
  height: 235px;
  object-position: top;
}

@media (max-width: 800px) {
  .image-banner {
    display: none;
  }
}

#banner .bloco2 {
  background: #fff;
  border-radius: 16px;
  padding: 2em;
}

@media (max-width: 800px) {
  #banner .bloco2 {
    padding: 1em;
  }
}

#banner .bloco2 form {
  display: grid;
  grid-template-columns: 30% 30% 40%;
  grid-gap: 10px;
  margin: 1em 0 0 0;
}

@media (max-width: 800px) {
  #banner .bloco2 form {
    grid-template-columns: 1fr;
  }
}

#banner .bloco2 .input-form {
  position: relative;
  display: flex;
  align-items: center;
}

#banner .bloco2 form input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d6d6d6;
  color: #373737;
  font-size: 14px;
  font-weight: 400;
  height: 55px;
  padding: 0 0 0 45px;
}

#banner .bloco2 form input::placeholder {
  color: #373737;
  font-weight: 400;
}

#banner .bloco2 form .input-form img {
  position: absolute;
  left: 16px;
}

#banner .bloco2 form button {
  width: 95%;
  border-radius: 16px;
  border: 1px solid #f59a1b;
  background: #f59a1b;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  height: 50px;
  transition: 0.2s;
}

@media (max-width: 800px) {
  #banner .bloco2 form button {
    width: 100%;
  }
}

#banner .bloco2 form button:hover {
  background: #005aa3;
  border: 1px solid #005aa3;
  transition: 0.2s;
}

#banner .bloco2 h2 {
  margin: 0;
  color: #373737;
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  #banner .bloco2 h2 {
    font-size: 22px;
  }
}

#banner .bloco3 {
  padding: 1em 0;
}

@media (max-width: 500px) {
  #banner .bloco3 {
    text-align: center;
  }
}

#banner .bloco3 span {
  color: #fff;
  font-size: 16px;
  margin: 0 10px 0 0;
}

@media (max-width: 500px) {
  #banner .bloco3 span {
    margin: 0 0 10px 0;
    display: block;
    text-align: center;
  }
}

#banner .bloco3 img {
  width: 20px;
  padding: 0 2px;
  margin: 0 0 -4px 0;
}

@media (max-width: 1200px) {
  #banner .bloco3 img {
    padding: 0 5px;
  }
}

@media (max-width: 500px) {
  #banner .bloco3 img {
    width: 25px;
  }
}

#step-2 {
  text-align: center;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#step2-news {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#step-1 {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.show {
  display: block !important;
  opacity: 1 !important;
}

.remove {
  display: none !important;
  opacity: 0 !important;
}

#step-2 img {
  width: 55px;
}

#step-2 .title {
  margin: 15px 0;
  color: #373737;
  font-size: 18px;
  font-weight: 600;
}

#step-2 p {
  color: #373737;
  font-size: 16px;
  line-height: 32px;
}

/* Sobre */

#sobre {
  padding: 3em 0;
}

#sobre h2 {
  margin: 0 0 1.3em 0;
  color: #373737;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  #sobre h2 {
    font-size: 22px;
  }
}

#sobre p {
  color: #373737;
  font-size: 16px;
  line-height: 32px;
  margin: 0 0 15px 0;
}

@media (max-width: 1200px) {
  #sobre p {
    font-size: 16px;
    line-height: 25px;
  }
}

#sobre img {
  width: 100%;
  border-radius: 16px;
}

.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

@media (max-width: 1200px) {
  .sobre {
    grid-template-columns: 1fr;
  }
}

/* Vantagens */

#vantagens {
  background-size: cover;
  background-color: #272727;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 3em 0;
}

#vantagens h2 {
  margin: 0 0 2em 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  #vantagens h2 {
    font-size: 22px;
  }
}

#vantagens img {
  width: 30%;
  object-fit: contain;
  height: 70px;
}

@media (max-width: 800px) {
  #vantagens img {
    object-fit: contain;
    height: 70px;
  }
}

#vantagens h3 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
}

@media (max-width: 1200px) {
  #vantagens h3 {
    font-size: 18px;
    line-height: 25px;
  }
}

#vantagens p {
  color: #fff;
  font-size: 16px;
  line-height: 32px;
}

@media (max-width: 1200px) {
  #vantagens p {
    font-size: 16px;
    line-height: 25px;
  }
}

.box-vantagens {
  background: #373737;
  border-radius: 16px;
  padding: 2em;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.2s;
  justify-content: center;
}

@media (max-width: 800px) {
  .box-vantagens {
    align-items: flex-start;
  }
}

.box-vantagens:hover {
  background: #3737379e;
  transition: 0.2s;
}

.box-title-vantagens {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

/* Acesso */

#acesso {
  padding: 3em 0;
}

#acesso h2 {
  margin: 0 0 1.3em 0;
  color: #373737;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  #acesso h2 {
    font-size: 22px;
  }
}

.acesso {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}

@media (max-width: 800px) {
  .acesso {
    grid-template-columns: 1fr;
  }
}

.acesso div {
  background: #373737;
  border-radius: 16px;
  padding: 1em 1.5em;
  display: flex;
  align-items: center;
  transition: 0.2s;
}

@media (max-width: 500px) {
  .acesso div {
    border-radius: 8px;
  }
}

.acesso div:hover {
  background: #373737eb;
  transition: 0.2s;
}

.acesso h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 0 10px;
}

@media (max-width: 1200px) {
  .acesso h3 {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .acesso h3 {
    font-size: 19px;
  }
}

.acesso span {
  color: #005aa3;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 0 10px;
}

@media (max-width: 500px) {
  .acesso span {
    margin: 0 10px 0 0;
  }
}

#acesso p {
  font-size: 20px;
  font-weight: 600;
  color: #373737;
  padding: 0 0 0.6em 0;
}

@media (max-width: 1200px) {
  #acesso p {
    font-size: 17px;
  }
}

#acesso button {
  width: 30%;
  border-radius: 16px;
  border: 1px solid #f59a1b;
  background: #f59a1b;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  height: 50px;
  transition: 0.2s;
}

@media (max-width: 800px) {
  #acesso button {
    width: 45%;
  }
}

@media (max-width: 500px) {
  #acesso button {
    width: 100%;
  }
}

#acesso button:hover {
  background: #005aa3;
  border: 1px solid #005aa3;
  transition: 0.2s;
}

.mais-acesso {
  text-align: center;
  padding: 1em;
}

@media (max-width: 500px) {
  .mais-acesso {
    text-align: left;
    padding: 1em 0;
  }
}

/* Presente */

#presente {
  background-size: cover;
  background-color: #272727;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 3em 0;
}

#presente h2 {
  margin: 0 0 1.4em 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  #presente h2 {
    font-size: 22px;
  }
}

#presente p {
  color: #fff;
  font-size: 16px;
  line-height: 32px;
  margin: 0 0 15px 0;
}

@media (max-width: 1200px) {
  #presente p {
    font-size: 16px;
    line-height: 25px;
  }
}

.mais-presente {
  text-align: center;
}

#texto-cupom {
  display: flex;
  width: 30%;
  border-radius: 16px;
  border: 1px solid #fdefc9;
  background: #fdefc9;
  color: #f59a1b;
  font-weight: 700;
  font-size: 16px;
  height: 50px;
  transition: 0.2s;
  margin: 15px auto;
  align-items: center;
  text-align: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  #texto-cupom {
    width: 45%;
  }
}

@media (max-width: 500px) {
  #texto-cupom {
    width: 100%;
  }
}

#copiar-button {
  width: 30%;
  border-radius: 16px;
  border: 1px solid #f59a1b;
  background: #f59a1b;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  height: 50px;
  transition: 0.2s;
}

@media (max-width: 800px) {
  #copiar-button {
    width: 45%;
  }
}

@media (max-width: 500px) {
  #copiar-button {
    width: 100%;
  }
}

#copiar-button:hover {
  background: #005aa3;
  border: 1px solid #005aa3;
  transition: 0.2s;
}

/* Newsletter */

#newsletter {
  background: #515050;
  padding: 3em 0;
}

#newsletter h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

#newsletter p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin: 15px 0 20px 0;
}

#newsletter form {
  display: grid;
  grid-template-columns: 30% 30% 40%;
  grid-gap: 10px;
}

@media (max-width: 800px) {
  #newsletter form {
    grid-template-columns: 1fr;
  }
}

#newsletter form input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #4a4949;
  color: #4a4949;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  padding: 0 15px 0 15px;
}

#newsletter form button {
  width: 50%;
  border-radius: 16px;
  border: 1px solid #005aa3;
  background: #005aa3;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  height: 50px;
  transition: 0.2s;
}

@media (max-width: 800px) {
  #newsletter form button {
    width: 100%;
  }
}

#newsletter form button:hover {
  background: #f59a1b;
  border: 1px solid #f59a1b;
  transition: 0.2s;
}

.destinos-menu b {
  display: inline-block;
  float: right;
  width: 15px;
  height: 15px;
  margin-right: 0.8em;
  vertical-align: middle;
  background: url("../img/down.svg") no-repeat center center/cover;
}

.destinos-menu ul {
  height: 0;
  overflow: hidden;
}

@media (max-width: 500px) {
  .infos-menu ul {
    height: 0;
    overflow: hidden;
  }

  .infos-menu b {
    display: inline-block;
    float: right;
    width: 15px;
    height: 15px;
    margin-right: 0.8em;
    vertical-align: middle;
    background: url("../img/down.svg") no-repeat center center/cover;
  }
}

.icon {
  width: 20px;
  margin: 0 5px -5px 0;
}

.cash {
  margin: 10px 0;
  object-fit: contain;
  height: 30px;
}

@media (max-width: 1200px) {
  .cash {
    height: 25px;
  }
}

@media (max-width: 500px) {
  .cash {
    height: 35px;
  }
}

/* Slider */

.swiper-container {
  overflow: hidden;
}

.swiper-pagination {
  position: static !important;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
}

.swiper-wrapper {
  height: auto !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  background: #fff !important;
  font-size: 20px !important;
  color: #9e9e9e !important;
  border-radius: 90px !important;
  padding: 10px 15px !important;
}

.swiper-button-next {
  margin: 0 !important;
  margin: 15px 10px 0 auto !important;
}

.swiper-button-prev {
  margin: 0 !important;
  margin: -43px 65px 0 auto !important;
}

.vantagens.swiper-container.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  position: relative;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  text-align: left;
  position: absolute !important;
  padding: 15px 0;
  bottom: 0;
  width: 50%;
}

.swiper-pagination-bullet {
  color: #515050 !important;
  background: #515050 !important;
  width: 15px !important;
  height: 15px !important;
}

.swiper-pagination-bullet-active {
  background: #005aa3 !important;
  color: #005aa3 !important;
}

/* Companhias */

#companhias {
  padding: 3em 0;
  background-color: #272727;
  margin: 3em 0 0 0;
  background-size: cover;
  background-color: #272727;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#companhias h2 {
  margin: 0 0 1.3em 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1200px) {
  #companhias h2 {
    font-size: 22px;
  }
}

.row-companhias {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
}

@media (max-width: 800px) {
  .row-companhias {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .row-companhias {
    grid-template-columns: 1fr;
  }
}

.row-companhias img {
  width: 100%;
  object-fit: cover;
  height: 190px;
  border-radius: 8px 8px 0 0;
}

.row-companhias h3 {
  margin: 10px 20px;
  color: #373737;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.box-companhias {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
}

/* Destinos */

#destinos {
  padding: 3em 0 0 0;
}

#destinos h2 {
  margin: 0 0 1.3em 0;
  color: #373737;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1200px) {
  #destinos h2 {
    font-size: 22px;
  }
}

.tab {
  overflow: hidden;
  display: flex;
  justify-content: center;
  column-gap: 10px;
}

@media (max-width: 500px) {
  .tab {
    flex-flow: column;
    row-gap: 10px;
  }
}

.tab button {
  background: transparent;
  border: 1px solid #005aa3;
  color: #005aa3;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  border-radius: 99px;
}

.tab button h3 {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.tab button:hover {
  background-color: #005aa3;
  color: #fff;
}

.tab button.active {
  background-color: #005aa3;
  color: #fff;
}

.tabcontent {
  display: none;
  padding: 1.5em 0;
  border-top: none;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 10px;
  row-gap: 15px;
}

@media (max-width: 500px) {
  .tabcontent {
    grid-template-columns: 1fr 1fr;
  }
}

.tabcontent h4 {
  margin: 0;
  color: #005aa3;
  font-weight: 700;
  text-decoration: underline;
}

.tabcontent h4:hover {
  color: #373737;
}

/*Dicas*/

#dicas {
  padding: 3em 0;
}

#dicas h2 {
  margin: 0 0 1.3em 0;
  color: #373737;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  #dicas h2 {
    font-size: 22px;
  }
}

.row-dicas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
}

@media (max-width: 500px) {
  .row-dicas {
    grid-template-columns: 1fr;
  }
}

.box-dicas {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 1rem;
}

.box-dicas h3 {
  margin: 0 0 1em 0;
  color: #373737;
  font-size: 20px;
}

.box-dicas p {
  color: #373737;
  font-size: 16px;
}

/* Duvidas */

#duvidas {
  padding: 0 0 3em 0;
}

#duvidas h2 {
  margin: 0 0 1.3em 0;
  color: #373737;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  #duvidas h2 {
    font-size: 22px;
  }
}

#duvidas h3 {
  margin: 0;
  color: #373737;
  font-size: 18px;
  font-weight: 700;
}

#duvidas img {
  object-fit: contain;
  width: 18px;
}

.accordion {
  color: #373737;
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
  font-weight: 600;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 500px) {
  .accordion {
    font-size: 18px;
  }
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

.panel {
  padding: 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid #d9d9d9;
}

.panel p {
  margin: 0 0 20px 0;
}

.panel a {
  text-decoration: underline;
}

.panel a,
.panel p {
  color: #373737;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 500px) {
  .panel a,
  .panel p {
    font-size: 16px;
  }
}

/* Promocoes */

#promocoes {
  padding: 3em 0 0 0;
}

.option-box {
  display: flex;
  column-gap: 10px;
  margin: 0 0 1.3em 0;
  align-items: center;
}

@media (max-width: 500px) {
  .option-box {
    flex-direction: column;
    row-gap: 10px;
  }
}

.option-box h2 {
  color: #373737;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1200px) {
  .option-box h2 {
    font-size: 22px;
  }
}

.resultados-promocoes,
.resultados-promocoes-inter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
}

@media (max-width: 800px) {
  .resultados-promocoes,
  .resultados-promocoes-inter {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .resultados-promocoes,
  .resultados-promocoes-inter {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
}

.main-image {
  border-radius: 8px 8px 0 0;
  height: 190px;
  object-fit: cover;
  width: 100%;
}

.promo-card-text {
  padding: 1em;
}

.promo-card-text div {
  display: flex;
  column-gap: 8px;
  align-items: center;
}

.voos-image {
  width: 25px;
  object-fit: contain;
  height: 25px;
}

.promo-card-text span {
  font-size: 15px;
  color: #373737;
  font-weight: 500;
}

.promo-card-text h3 {
  margin: 0 0 0.5em 0;
  color: #373737;
  line-height: 30px;
}

.promo-card-text button {
  background: transparent;
  border: 0;
  color: #005aa3;
  font-weight: 600;
  width: auto;
  display: flex;
  align-items: center;
  column-gap: 5px;
  padding: 0;
}

.promo-card-text button:hover {
  text-decoration: underline;
}

.promo-card-text button img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.select2 {
  width: 250px !important;
}

@media (max-width: 500px) {
  .select2 {
    width: 300px !important;
  }
}

@media (max-width: 319px) {
  .select2 {
    width: 100% !important;
  }
}

span.select2-selection.select2-selection--single {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  height: 50px;
  display: flex;
  align-items: center;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: unset !important;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent !important;
  color: #373737 !important;
}

.select2-results__options {
  padding: 10px !important;
}

.select2-results__option {
  padding: 10px 0 !important;
  border-bottom: 1px solid #d6d6d6;
}

.select2-container--default .select2-results__option--selected {
  background-color: transparent !important;
}

/* Common Layout Classes */
/* .footer-wrapper {
  max-width: 1200px;
  margin: 0 12;
} */

.flex {
  display: flex;
}

/* Main Footer Wrapper */
/* .footer-wrapper {
  background: #fff;
  color: #373737;
  padding-top: 56px;
} */

/* Site Navigation */
.site-navigation {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 1312px; /* 1280px + (16px * 2) */
  gap: 24px;
}

@media only screen and (min-width: 768px) {
  .site-navigation {
    padding-right: 24px;
    padding-left: 24px;
    max-width: 1328px; /* 1280px + (24px * 2) */
    gap: 32px;
  }
}

.site-navigation-title {
  color: #373737;
  font-weight: 700;
  letter-spacing: -0.54px;
  font-size: 1.5rem;
}

.toggle-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.toggle-button {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #373737;
  border-radius: 20px;
  color: #373737;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.toggle-button.active {
  background: #005aa3;
  color: white;
  border-color: #005aa3;
}

.items-container {
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  padding: 16px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-height: 424px;
  overflow: auto;
}

@media only screen and (min-width: 480px) {
  .items-container {
    grid-template-columns: 1fr 1fr;
    max-height: 256px;
  }
}

@media only screen and (min-width: 992px) {
  .items-container {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 24px 16px;
  }
}

@media only screen and (min-width: 1280px) {
  .items-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 24px 16px;
  }
}

.items-container a {
  color: #005aa3;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: underline;
  width: fit-content;
  text-wrap: wrap;
}

.items-container::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

.items-container::-webkit-scrollbar {
  width: 6px;
  background: #f4f4f4;
}

.items-container::-webkit-scrollbar-thumb {
  background: #005aa3;
  border-radius: 4px;
}

/* Company Service */
.company-service {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 1312px; /* 1280px + (16px * 2) */
  padding-top: 24px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: none;
  gap: 32px;
}

@media only screen and (min-width: 768px) {
  .company-service {
    padding-right: 24px;
    padding-left: 24px;
    max-width: 1328px; /* 1280px + (24px * 2) */
    padding-top: 28px;
    padding-bottom: 28px;
    grid-template-rows: auto;
  }
}

@media only screen and (min-width: 992px) {
  .company-service {
    padding-top: 28px;
    padding-bottom: 28px;
    /* grid-template-columns: 1fr 2fr; */
    gap: 16px;
  }
}

@media only screen and (min-width: 1280px) {
  .company-service {
    /* grid-template-columns: 1fr 2fr 1fr; */
  }
}

.company-service-bottom-bar {
  display: none;
}

@media only screen and (min-width: 1280px) {
  .company-service-bottom-bar {
    display: block;
  }
}

.useful-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (min-width: 768px) {
  .useful-links {
    flex-direction: row;
    justify-content: space-between;
  }

  .useful-links > div {
    width: 50%;
  }
}

.useful-links-title {
  display: flex;
  padding-bottom: 16px;
  color: #373737;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.useful-links-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.useful-links-link {
  color: #373737;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-decoration: none;
}

/* Icon Links */
.icon-links-wrapper {
  background-color: #f4f4f4;
  border: none;
  padding-bottom: 4px;
}

@media only screen and (min-width: 480px) {
  .icon-links-wrapper {
    background-color: #fff;
    padding-bottom: 32px;
  }
}

.icon-links {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 1312px; /* 1280px + (16px * 2) */
  flex-direction: column;
  row-gap: 24px;
  padding-top: 32px;
}

@media only screen and (min-width: 768px) {
  .icon-links {
    padding-right: 24px;
    padding-left: 24px;
    max-width: 1328px; /* 1280px + (24px * 2) */
  }
}

@media only screen and (min-width: 480px) {
  .icon-links {
    border-top: 1px solid #d6d6d6;
    flex-direction: row;
    row-gap: 32px;
    column-gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.icon-list {
  flex: 1;
  min-width: 200px;
}

.icon-list-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #373737;
}

.icon-list-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.icon-item {
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #005aa3;
}

.icon-item img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}

.icon-link {
  display: flex;
  color: #373737;
  text-decoration: none;
}

.icon-links-bottom-bar {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 1312px; /* 1280px + (16px * 2) */
  display: block;
  margin-top: 24px;
}

@media only screen and (min-width: 768px) {
  .icon-links-bottom-bar {
    padding-right: 24px;
    padding-left: 24px;
    max-width: 1328px; /* 1280px + (24px * 2) */
  }
}

@media only screen and (min-width: 1280px) {
  .icon-links-bottom-bar {
    display: none;
  }
}

/* Certificates */
.certificates-wrapper {
  background-color: #f4f4f4;
  border: none;
  padding-bottom: 32px;
}

@media only screen and (min-width: 480px) {
  .certificates-wrapper {
    background-color: #fff;
  }
}

.certificates-title {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #373737;
  padding-left: 16px;
}

@media only screen and (min-width: 768px) {
  .certificates-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #373737;
  }
}

.certificates-content {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  width: 100%;
  max-width: 1312px; /* 1280px + (16px * 2) */
  flex-direction: column;
  padding-top: 24px;
  align-items: center;
  justify-content: left;
  gap: 16px;
}

@media only screen and (min-width: 480px) {
  .certificates-content {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;  
  }
}

.certificates-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 16px;
}

@media only screen and (max-width: 768px) {
  .certificates-item {
    width: 100%;
  }
}

.ra {
  aspect-ratio: 2/1;
  width: 100px;
}

@media only screen and (min-width: 1280px) {
  .bottom-bar-container {
    display: none;
  }
}

@media only screen and (max-width: 1280px) {
  .bottom-bar-container-desktop {
    display: none;
  }
}

.bottom-bar-container-desktop {
  .useful-links-link {
    color: #373737;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.2px;
  }
}

.bottom-conditions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}

.bottom-conditions a {
  color: #373737;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  background: #fff;
  padding: 0;
  text-align: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #005aa3;
  margin-bottom: 20px;
}

/* Bottom Bar */
.bottom-bar-container {
  border-top: 1px solid #d6d6d6;
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.bottom-bar-container p {
  width: 100%;
  display: flex;
  margin: 0;
  flex-direction: column;
}

.bottom-bar-container span {
  text-align: center;
  color: #373737;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.conditions {
  width: 100%;
  display: flex;
  padding-top: 20px !important;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.conditions a {
  color: #373737;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: underline;
}

.conditions.column {
  border: none;
  flex-direction: column;
  padding-top: 0;
}

.conditions.column span {
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    width: 100%;
  }

  .site-navigation {
    flex-direction: column;
  }
}

.hidden {
  display: none;
}

.contact {
  margin-bottom: 16px;
  > a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

