*
:root {
  --primary-color: #002f6c;
  --secondary-color: #ff8c00;
  --color-black: #000000;
  --color-neutral-100: #F2F4F5;
  --color-neutral-300: #DDE1E8;
  --color-neutral-400: #C0C4CC;
  --color-neutral-600: #72777F;
  --color-neutral-700: #565A60;
  --color-neutral-800: #323439;
  --text-color: #333;
  --bg-color:  #f9f9f9;
}

*{
  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 */
  
}

/* Seção Hero */
.hero {
  background: url('../Assets/greciahero.jpeg') no-repeat center center/cover;
  min-height: 60vh; /* Mantém um tamanho mínimo sem limitar a expansão */
  text-align: left;
  padding: 4rem 1rem; /* Reduz padding em telas menores */
  flex-direction: column;
  justify-content: center;
  display: left;
  color: rgb(4, 18, 111);
  padding-bottom: 4rem; /* Ajuste conforme necessário */
  scroll-margin-top: 80px; /* Ajuste para compensar um cabeçalho fixo */
  align-items: flex-end; /* Mantém o conteúdo alinhado na parte inferior */
  position: relative; /* Garante que o próximo elemento respeite sua altura */
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-left: 50px; /* Ajuste conforme necessário */
}

.hero p {
  font-size: 1rem;
  margin: 0; /* Remove margens padrão */
  padding: 0; /* Remove qualquer preenchimento */
  margin-left: 50px; /* Ajuste conforme necessário */
}

.hero .button {
  display: inline-block;
  padding: 0.75rem 1.5rem;  
  background-color: #ffd700;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;    
  margin-top: 2rem; /* Espaço acima do botão */
  transition: background-color 0.3s ease;
  margin-left: 50px; /* Ajuste conforme necessário */
  
}

.hero .button:hover {
  background-color: #ffc107;
}

/* SEÇÃO PACOTES POPULARES */
.pacotes-exclusivos {
  max-width: 1800px;
  margin-top: 100px; /* Aumente conforme necessário */
  margin: 20px;  
  padding: 20px;
  scroll-margin-top: 80px; /* Ajuste para compensar um cabeçalho fixo */
}

.pacotes-exclusivos h1 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #555;  
  margin-left: 90px; /* Ajuste conforme necessário */
  
}

.pacotes-exclusivos::before {
  content: "";
  display: block;
  clear: both;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  scroll-behavior: smooth;
}


.card {
  width: 280px; /* Ajuste conforme necessário */
  flex: 0 0 300px; /* Garante que todos tenham o mesmo tamanho */
  text-align: left;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(52, 52, 52, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative; /* Necessário para posicionar o badge */
  
}


.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.card img {
  width: 100%;
  height: 180px; /* Mantém todas as imagens com a mesma altura */
  object-fit: cover;
  display: block; /* Remove qualquer espaço extra abaixo da imagem */
  object-fit: cover;
}


.badge-ex {  
  position: absolute;
  top: 160px;  /* Distância do topo da imagem */
  left: 10px; /* Distância da esquerda */ 
  font-weight: bold;
  border-radius: 5px;
  display: inline-block; /* Evita que o badge ocupe toda a largura */
  background: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
  text-align: center; /* Centraliza o conteúdo dentro do card */
  margin-bottom: 10px;
  max-width: fit-content; /* Faz com que o badge ocupe apenas o espaço necessário */
  margin-top: 0px;
  
}

.card-title {
  font-size: 1.2rem;  
  margin: 5px 0;
  font-weight: bold;
  color: #555;
}

.card-content{
  padding: 1.0rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin: 5px 0;
}

.rating-score {
  background-color: #1d0355;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;  /* Centraliza o grid */
  align-items: center;
  font-size: 14px;
}

.card-content p {
  font-size: 14px; /* Reduz o tamanho do texto */
  
  color: #555;  
  margin-bottom: 1px; /* Diminui a distância entre os elementos */
  margin-left: 10px; /* Ajuste conforme necessário */
  
  
}

.info {  
  padding: 8px;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 0px; /* Ajuste conforme necessário */ 
}

.price {
  font-size: 18px;
  color: #210375;
  font-weight: bold;
  margin-bottom: 15px;
  margin-left: 10px; /* Ajuste conforme necessário */
}


/* Botão Reservar */

.reserve-btn {
  text-align: center; /* Centraliza o conteúdo dentro do card */
  outline: none; /* Remove o contorno ao focar/clicar no botão */
  border: none; /* Remove a borda padrão */
  background-color: #ffd700; /* Cor de fundo */
  color: #333; /* Cor do texto */
  padding: 10px 20px; /* Tamanho do botão */
  border-radius: 5px; /* Bordas arredondadas */
  cursor: pointer; /* Aponta o cursor ao passar o mouse */
  transition: background 0.3s ease; /* Transição suave no hover */
  justify-content: center;
  align-items: left;
  margin-left: 80px; /* Ajuste conforme necessário */  
}

/* Efeito ao passar o mouse */
.reserve-btn:hover {
  background-color: #ffc107;
}

/* Remover outline ao focar */
.reserve-btn:focus {
  outline: none; /* Remove o contorno de foco */
  box-shadow: 0 0 2px #727272; /* Adiciona um efeito visual de foco */
}





/* Seção Passagens */
/* Seção Passagens Aéreas */
.passagens {
  padding: 2rem 1rem;
  width: 90%;
  max-width: 20010px;
  margin: auto;
  background-color: var(--bg-color);
  position: relative;
}
  
.passagens h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555; 
  margin-left: 70px; /* Ajuste conforme necessário */
      
}



/* Container do carrossel */
/* Garante que o carrossel ocupe toda a largura necessária */
.carousel-container {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  padding: 5px 0;
}


/* Ajustes no Carrossel */
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px; /* Reduz o espaço entre os cards */
  align-items: stretch;
  padding-right: 40px; /* Evita espaço extra no final */
}


/* Ajuste no Track para manter alinhamento */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px; /* Diminui o espaço entre os cards */
  align-items: stretch;
}

/* Estilização dos botões */
.arrow {
  width: 40px;  /* Define a largura */
  height: 40px; /* Define a altura */
  background-color: #ccc; /* Fundo cinza */
  border-radius: 50%; /* Deixa o botão circular */
  border: none; /* Remove a borda */
  font-size: 24px; /* Tamanho da seta */
  color: #555; /* Cor da seta */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  position: absolute; /* Para posicionamento */
  top: 50%; /* Centraliza verticalmente */
  transform: translateY(-50%); /* Ajuste fino para centralização */
  z-index: 10; /* Garante que fique sobre os elementos */
}
.arrow:hover {
  background-color: #999; /* Tom mais escuro ao passar o mouse */
}
.arrow:focus {
  outline: none; /* Remove a borda de foco */
  box-shadow: none; /* Remove qualquer efeito de sombra */
}
#prevBtn {  
  left: 0; /* Alinha totalmente à esquerda */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
}

/* Ajuste na seta para alinhá-la exatamente com o último card */
#nextBtn {
  width: 40px;  /* Define a largura */
  height: 40px; /* Define a altura */
  right: 10px; /* Mantém a seta dentro do carrossel */
  background-color: #ccc; /* Fundo cinza */
  border-radius: 50%; /* Deixa o botão circular */
  border: none; /* Remove a borda */
  font-size: 24px; /* Tamanho da seta */
  color: #555; /* Cor da seta */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  position: absolute; /* Para posicionamento */
  top: 50%; /* Centraliza verticalmente */
  transform: translateY(-50%); /* Ajuste fino para centralização */
  z-index: 10; /* Garante que fique sobre os elementos */
}

/* Ajuste para garantir que a seta não empurre o carrossel */
#nextBtn:focus {
  outline: none;
  box-shadow: none;
}
#nextBtn:hover{
  background-color: #999; /* Tom mais escuro ao passar o mouse */
  
}


/* Cartões de passagens */
/* Garante que os cards fiquem do mesmo tamanho */
.card-passagens {
  width: 280px; /* Garante que todos os cards tenham a mesma largura */
  max-width: 300px;
  flex: 0 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(52, 52, 52, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Garante que o último card não tenha margem extra */
.card-passagens:last-child {
  margin-right: 0;
}


/* Imagem no topo do card */
.card-passagens img {
  width: 100%;
  height: 180px; /* Mantém todas as imagens com a mesma altura */
  object-fit: cover;
}

/* Informação dentro do card */
.card-passagens .info {
  flex: 1; /* Faz com que todo o conteúdo ocupe o espaço igualmente */
  padding: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Título e texto do card */
.card-passagens h6 {
  font-size: 0.9rem;
  color: #888;
}

.card-passagens h5 {
  font-size: 1.2rem;
  margin: 5px 0;
}

.card-passagens p {
  font-size: 0.9rem;
  color: #555;
}

/* Badge */
.badge-passagens {
  display: inline-block; /* Evita que o badge ocupe toda a largura */
  background-color: #002f6c;
  color: #ffd700;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  margin-top: 5px;
  max-width: fit-content; /* Faz com que o badge ocupe apenas o espaço necessário */
}

/* Preço */
.price-passagens {
  font-size: 18px;
  color: #210375;
  font-weight: bold;
  margin: 10px 0;
}

/* Ajuste no Carrossel para garantir alinhamento */
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px;/* Reduz o espaçamento entre os cards */
  align-items: stretch; /* Faz com que todos os cards fiquem do mesmo tamanho */
  padding-right: 40px; /* Evita um espaço extra no final */
}

/* Ajuste no Track para manter alinhamento */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px; /* Diminui o espaço entre os cards */
  align-items: stretch; /* Garante que os cards tenham a mesma altura */
}

/* Ajuste no último card para remover espaçamento extra */
.card-passagens:last-child {
  margin-right: 0; /* Garante que o último card não tenha margem extra */
}


/* Contêiner do progresso */
/* Ajuste para os dots ficarem corretamente alinhados */
.carousel-pagination {
  display: flex;
  justify-content: center;
  margin-top: 15px; /* Espaço entre os cards e o progresso */
}

/* Ponto de progresso */
.dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: #ddd; /* Cor padrão dos pontos inativos */
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

/* Ponto ativo */
.dot.active {
  background-color: #0073e6; /* Cor do ponto ativo */
  width: 20px; /* Aumenta a largura do ponto ativo */
  border-radius: 10px; /* Forma oval quando ativo */
}


/* Destinos */
.destinos {
  padding: 30px 30px;
  background-color: var(--bg-color);
  background: #000080;
  text-align: center;
}

.destinos h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #ffffff;
  margin-top: 10px;
}

.cards-destinos {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap; /* Permite empilhamento em telas menores */
 
}


.card-destinos {
  position: relative;
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 
}

.card-destinos img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-text  {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: left;
}

.card-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.card-text p {
  margin: 0;
  font-size: 0.9rem;
}

.card-destinos:hover {
  transform: translateY(-5px); /* Elevação ao passar o mouse */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}



/* Seção Depoimento*/
.depoimentos {
text-align: center;
padding: 2rem;
background-color: var(--bg-color);
}

.depoimentos h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: #555;
margin-top: 10px;
}

.depoimentos-container {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
}

.depoimento-card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
width: 300px;
padding: 1.5rem;
text-align: left;
}

.depoimento-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}

.depoimento-header img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.depoimento-header h3 {
margin: 0;
font-size: 1.1rem;
color: #333;
}

.depoimento-header p {
margin: 0;
color: #777;
font-size: 0.9rem;
}

.depoimento-titulo {
font-size: 1rem;
font-weight: bold;
margin: 0.5rem 0;
color: #555;
}

.depoimento-texto {
font-size: 0.9rem;
line-height: 1.4;
color: #666;
}  

/* Seção Benefícios */

.beneficios {
background-color: #001f3f; /* Fundo escuro (azul-marinho) */
padding: 1rem 0;
}

.beneficios-lista {
display: flex;
justify-content: center;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem; /* Espaçamento entre os itens */
}

.beneficios-lista li {
color: white;
font-size: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
white-space: nowrap;
}


.banners-promocionais {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 30px;
}

.banner {
  flex: 1;
  max-width: 300px; /* Diminua o tamanho da imagem */
  transition: transform 0.3s ease-in-out;
}

.banner img {
  width: 300px; /* Faz com que a imagem ocupe todo o espaço do banner */
  height: 250px; /* Mantém a proporção da imagem */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner:hover {
  transform: scale(1.05);
}

/* Container principal */
.newsletter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5ff;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin-top: 100px; /* Aumente conforme necessário */
  margin: 20px;  
  padding: 20px;
  gap: 50px;
  margin-left: 160px;
}

/* Newsletter */
.newsletter {
  width: 50%;
}

.newsletter h2 {
  color: #000080;
  font-size: 22px;
  font-weight: bold;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.newsletter-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  flex: 1;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #ffd700;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background-color: #ffcc00;
}

/* Termos */
.termos {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}

/* Caixa de promoção */
.promo-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 50%;
}

.promo-box .desconto {
  display: inline-block;
  background-color: red;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.promo-box h3 {
  color: #000080;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

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







/* 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 */
  }

  .menu {
    display: none; /* Esconder menu grande em telas menores */
  }
  .menu-mobile {
    display: block;
  }
}



/* 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) {
  .carousel {
      gap: 10px;
  }

  .card-passagens {
      flex: 0 0 250px;
  }
  .arrow {
    font-size: 18px;
    padding: 10px;
  }


  
}

@media (max-width: 768px) {
  .card {
    width: 280px; /* Reduz a largura para caber melhor em telas menores */
  }
}

@media (min-width: 1024px) {
  .card {
    width: 450px; /* Aumenta o tamanho para telas grandes */
  }
}

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

  .newsletter, .promo-box {
      width: 100%;
  }

  .newsletter-form {
      flex-direction: column;
  }

  .newsletter-form input {
      width: 100%;
  }
}
