/* Seção Pacotes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--color-neutral-600);
    color: #333;  
    background-image: url('../Assets/world-map-bg.png'); /* Caminho da imagem */
    background-size: cover; /* Faz a imagem cobrir toda a tela */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição */
    background-attachment: fixed; /* Mantém a imagem fixa ao rolar a página */
  }
  
    
  /* Ajusta a logo na navbar */
  .logo {
    height: 80px; /* Define a altura da logo */
    width: auto; /* Mantém a proporção */
  }
  
  /* Estilo para a lista de navegação */
  .navbar-nav {
    margin-left: auto; /* Move a lista para o lado direito */
  }
  
  .nav-link {
    color: #020f86; /* Cor dos links */
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-link :hover {
    color: #3703bb; /* Cor ao passar o mouse */
  }
  
  .navbar {
    padding: 10px 100px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para a navbar */
  }
.pacotes {
    text-align: center;
    padding: 50px;
    background-color: #fff3e0;
}

.pacotes h2 {
    color: #ff5722;
}

.pacotes p {
    font-size: 1.2rem;
}


  /* Layout principal */
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 40px;
  }
  
  /* Imagem lateral */
  .image-container {
    flex: 1;
    max-width: 500px;
  }
  
  .image-container img {
    width: 90%;
    height: 90%;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Formulário */
  .form-container {
    flex: 1;
    max-width: 400px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
  }
  
  .form-container h2{
    font-size: 24px;
    color: #0052cc;
    font-weight: bold;
    margin-left: 10px;
  }
  
  


  /* Banner Canais Oficiais */
.banner-canais {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Logo e título */
.info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info img {
  width: 90px;
  height: 90px;
  border-radius: 10%;
  margin-left: 30px;
}

.info h2 {
  font-size: 18px;
  color: #0052cc;
  font-weight: bold;
  margin-left: 10px;
}

/* Alerta */
.alerta {
  text-align: right;
}

.alerta p {
  font-size: 14px;
  color: #333;
}

.alerta span {
  color: #ff9800;
  font-weight: bold;
}

/* Botão Saiba Mais */
.btn-saiba-mais {
  background: none;
  border: 2px solid #0052cc;
  color: #0052cc;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 30px;
}

.btn-saiba-mais:hover {
  background: #003366;
  color: white;
}


/* FAQ */
.faq {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 20px auto;
  text-align: left;
}

/* Título */
.faq h2 {
  font-size: 22px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

/* Perguntas */
.faq-item {
  border-top: 1px solid #ddd;
  padding: 10px 0;
  cursor: pointer;
}

/* Última pergunta com borda inferior */
.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}

/* Questões */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s ease;
}

/* Ícone da seta */
.faq-question i {
  transition: transform 0.3s ease;
}

/* Respostas (inicialmente escondidas) */
.faq-answer {
  font-size: 14px;
  color: #666;
  display: none;
  margin-top: 5px;
  padding: 10px 0;
}

/* Quando a FAQ estiver ativa */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Seta com transição suave */
.faq-question i {
  transition: transform 0.3s ease;
}




  
/* Campos do formulário */
.form-control {
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  transition: border 0.3s ease-in-out;
}

.form-control:focus {
  border: 1px solid #00509E;
  box-shadow: 0px 0px 5px rgba(0, 80, 158, 0.4);
}

/* Botão */
.btn-custom {
  background: #FFD700;
  color: #003366;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
  background: #FFC107;
  transform: scale(1.05);
}

/* Banner principal */
.banner-pagamento {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ff8c00, #4d6bee, #022b68);
  color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 20px auto;
  text-align: left;
}

/* Texto da esquerda */
.texto h2 {
  font-size: 30px;
  font-weight: bold;
  margin-left: 50px;
  display: flex;
  align-items: center;
  gap: 8px; /* Espaço entre os elementos */
 
}

/* Destacando o número maior */
.texto h2 strong {
  font-size: 70px;
  line-height: 1;
}


/* Opções de pagamento */
.pagamentos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 50px;
}

.pagamentos p {
  font-size: 14px;
  margin-bottom: 10px;
  margin-right: 50px;
}

/* Ícones de pagamento */
.formas {
  display: flex;
  gap: 15px;
}

.forma {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.forma i {
  font-size: 40px;
}

  

/* Rodapé */

footer {
    text-align: center;
    background: #09084f;
    color: #fff;
    padding: 10px 0;
    text-align: center; /* Centraliza o conteúdo */
    padding: 10px 10px; /* Espaçamento interno */
    margin-top: 10px; /* Espaçamento do conteúdo acima */
  }
  
  
  @media (max-width: 768px) {
    .logo {
        height: 40px; /* Ajusta o tamanho da logo para telas menores */
    }
  }
  
  
  
/* Responsividade do Rodapé */
@media (max-width: 768px) {
  footer {
      padding: 15px 5px;
  }

  footer h3 {
      font-size: 1.2rem;
  }

  footer p {
      font-size: 0.9rem;
  }
}

  /* Responsividade */
@media (max-width: 768px) {
  .banner-canais {
      flex-direction: column;
      text-align: center;
      align-items: center;
      padding: 15px;
  }

  .alerta {
      text-align: center;
      margin-top: 10px;
  }

  .faq h2 {
      text-align: center;
  }
}


  
/* Animação do avião */
@keyframes voando {
  0% { left: -50px; opacity: 1; }
  100% { left: 100%; opacity: 0; }
}


/* Animação da trilha */
@keyframes fadeLine {
  0% { width: 0; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}


/* Responsividade */
@media (max-width: 768px) {
  .faq {
      width: 90%;
  }

  .faq h2 {
      font-size: 20px;
  }
}
