/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Libre Franklin", serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
.header {
  background-color: #0072CE; /* Azul de fundo */
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: fixed;
  z-index: 99;
  width: 100%;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .logo img {
  height: 60px;
  margin: -20px 0;
  display: block;
}

.menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  color: white;
  transition: color 0.3s ease;
}

.menu ul li a.active, .menu ul li a:hover {
  color: #7ad4f0; /* Azul claro para hover e link ativo */
}

.agent-area {
  background-color: white;
  color: #0072CE;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.agent-area:hover {
  background-color: #7ad4f0; /* Azul claro no hover */
  color: white;
}

.responsive-menu-icon {
  font-size: 36px;
  cursor: pointer;
  transition: 0.2s;
  display: none;
}

.responsive-menu-icon:hover {
  transform: scale(1.1);
}

.responsive-header {
  width: 320px;
  height: 100vh;
  position: fixed;
  z-index: 999;
  background-color: #054E72;
  display: none;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%); /* Inicia fora da tela, à esquerda */
}

.responsive-header.open {
  transform: translateX(0); /* Move o menu para dentro da tela */
}

.responsive-menu {
  margin: 0 24px;
}

.responsive-menu ul {
  margin-top: 32px;
  list-style-type: none;
}

.responsive-menu li {
  margin: 15px 0 0;
}

.responsive-menu a {
  color: white;
  text-decoration: none;
}

.responsive-menu .agent-area {
  width: 100%;
}

.responsive-logo img {
  height: 70px;
  margin: 0 24px;
}

/* Banner */
.main-banner {
  position: relative;
  top: 60px;
  width: 100%;
  max-width: 100%;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Search Section */
.search-section {
  background-color: #f8f8f8;
  padding: 20px 10px;
  text-align: center;
}

.search-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-form input,
.search-form select,
.search-form button {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-form button {
  background-color: #0072CE;
  color: white;
  border: none;
  cursor: pointer;
}

/* Benefits Section */
.benefits-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  margin-bottom: 110px;
}

.benefits-section .container {
  display: flex;
  max-width: 1200px;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.image-container {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.image-container img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-content {
  flex: 2;
  max-width: 600px;
}

.text-content h2 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

.text-content hr {
  width: 50px;
  height: 2px;
  background-color: #0072CE;
  border: none;
  margin: 10px 0;
}

.text-content h3 {
  font-size: 22px;
  color: #0072CE;
  margin: 10px 0;
}

.text-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.text-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.text-content ul li {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.text-content ul li strong {
  color: #0072CE;
  font-size: 16px;
}

.text-content ul li p {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.cta-button {
  display: inline-block;
  background-color: transparent;
  color: #0072CE;
  border: 2px solid #0072CE;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #0072CE;
  color: white;
}

/* Timeline Section */
.timeline-section h2 {
  color: #0072CE;
}

.timeline-section {
  background: #f8f8f8;
  margin-top: -80px;
  padding: 80px 0 30px;
  margin-bottom: -140px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline {
  position: relative;
  padding: 50px 0;
}

.timeline::before {
  content: '';
  background: #ffc107;
  width: 5px;
  height: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  width: 100%;
  margin-bottom: 70px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  float: right;
}

.timeline-item::after {
  content: '';
  display: block;
  clear: both;
}

.timeline-content {
  position: relative;
  width: 30%;
  margin: 0 10%;
  padding: 30px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 25px -15px rgba(0, 0, 0, .3);
  z-index: 1;
  text-align: center; /* Centraliza o texto */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza os elementos verticalmente */
}

.timeline-img {
  width: 30px;
  height: 30px;
  background: #0072CE;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 25px;
  margin-left: -15px;
  z-index: 2;
}

.timeline-item::before {
  content: '';
  width: calc(30% - 30px);
  height: 5px;
  background: #ffc107;
  position: absolute;
  top: 38px;
  z-index: 0;
}

.timeline-item:nth-child(odd)::before {
  right: 50%;
}

.timeline-item:nth-child(even)::before {
  left: 50%;
}

.timeline-content img {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
  display: block; /* Garante que a imagem seja tratada como um bloco */
  margin-left: auto;
  margin-right: auto;
}

.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #0072CE;
}

.timeline-content p {
  margin-bottom: 0;
}

.timeline::after {
  content: '\2193'; /* Código Unicode para seta para baixo */
  position: absolute;
  bottom: 15px; /* Ajuste fino para alinhar com a linha amarela */
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #0072CE;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: white;
  font-size: 20px;
  z-index: 2;
}

/* Ajuste para parar a linha amarela antes da bolinha final */
.timeline::before {
  height: calc(95% - -80px); /* Subtrai a altura da bolinha */
}

@media screen and (max-width: 768px) {
  .timeline-section .container{
    text-align: center;
  }
  .timeline::before {
      all: unset;
  }
  .timeline-item:nth-child(even) .timeline-content {
      float: none;
  }
  .timeline-img {
      all: unset;
  }
  .timeline-content {
    width: 100%;
    max-width: 380px;
    margin: auto;
  }
  .timeline-item::before {
      all: unset;
  }

  .timeline::after {  
    all: unset;
}
}

/* Estilo para o botão "QUERO VIAJAR" */
.cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0; /* Centraliza o botão e adiciona espaço acima */
  padding: 15px 30px;
  background-color: #0072CE;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Partners Section */
.partners-section {
  padding: 130px 20px 50px;
  text-align: center;
  margin-top: 80px;
}

.partners-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #0072CE;
  margin-bottom: 10px;
}

.partners-section hr {
  width: 50px;
  height: 2px;
  background-color: #0072CE;
  border: none;
  margin: 10px auto;
}

.partners-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.logo-item {
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.1);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f8f8;
  padding: 70px 0; /* Espaçamento geral da seção */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 32px;
  color: #0072CE;
  margin-bottom: 15px; /* Espaço entre o título e o parágrafo */
}

.faq-section .faq-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px; /* Espaço aumentado entre o parágrafo e as caixas do FAQ */
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-toggle {
  font-size: 24px;
  color: #0072CE;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-text {
  font-weight: bold;
  color: #0072CE;
  transition: color 0.3s ease;
}

.faq-answer {
  background-color: #fff;
  padding: 0 20px 0 59px; /* Espaçamento para alinhar a resposta com a pergunta */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: #0072CE;
}

.faq-item.active .faq-answer {
  padding: 20px 20px 20px 59px;
  max-height: 1000px; /* Ajuste conforme necessário */
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #fff;
}

.faq-item.active .faq-text {
  color: #fff;
}

.faq-item.active .faq-answer p {
  color: #333; /* Mantém o texto da resposta escuro */
}

.cta-button {
  display: block;
  margin: 50px auto 0; /* Espaço acima do botão */
  padding: 15px 30px;
  background-color: #fff;
  color: #0072CE;
  border: 2px solid #0072CE;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #0072CE;
  color: #fff;
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-title {
  background-color: #f0f0f0;
  color: #333;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-title:hover {
  background-color: #e0e0e0;
}

.accordion-title span {
  font-size: 20px;
  color: #0072CE;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

.accordion-content p {
  font-size: 14px;
  color: #666;
  padding: 15px 0;
  margin: 0;
}

/* Expanded State */
.accordion-item.active .accordion-content {
  max-height: 200px; /* Ajuste conforme o conteúdo */
  padding: 15px 15px;
}

.accordion-item.active .accordion-title span {
  transform: rotate(45deg); /* Muda o "+" para "x" */
}

/* CTA Button */
.cta-button {
  background-color: transparent;
  color: #0072CE;
  border: 2px solid #0072CE;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #0072CE;
  color: white;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  background-color: white;
  text-align: start;
}

.contact-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.contact-section hr {
  width: 90px;
  height: 2px;
  background-color: #0072CE;
  border: none;
  margin: 5px 0 10px;
}

.contact-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 1200px;
  margin: 0;
}

.contact-form-group{
  display: flex;
  column-gap: 20px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 24px;
  background-color: #f8f8f8;
  border: 2px solid #e4e4e4cb;
  margin: 5px 0;
}

.contact-form input:focus, .contact-form textarea:focus{
  background-color: #FFFFFF;
  outline: none;
  border-bottom: 2px solid #0072ce;
}
/* Footer */
.footer {
  background-color: #0072CE;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.footer p {
  margin: 5px 0;
}

#short-message{
  background-color: #f5f5f5;
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%);

  padding: 24px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  opacity: 0;
  transition: 0.2s all;
}

@media (max-width: 1024px) {
  #menu{
    display: none;
  }

  .responsive-menu-icon{
    display: block;
  }

  .benefits-section .container{
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .benefits-section .container{
    text-align: center;
  }

  .benefits-section .container hr{
    margin: auto;
  }

  .faq-section h2 {
    text-align: center;
  }

  .faq-description {
    text-align: center;
  }
}

@media (max-width: 576px) {

  .responsive-header{
    width: 260px;
  }

  .contact-section{
    text-align: center;
  }

  .contact-section hr{
    margin: auto;
  }

  .contact-form-group{
    flex-wrap: wrap;
  }
}

