*
: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;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f9;
  color: #333;
}



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

/* Fundo com imagens */
.background-container {
  background:url('../Assets/world2.jpeg'); /* Substitua pelo caminho correto */
  background-size: cover;
  background-position: center; 
  width: 100%;
  height: 450px; /* Ajuste conforme necessário */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}



/* Texto principal */
h2 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

h2 span {
  color: #0017AA;
}

/* Caixa de busca */
.search-box { 
  padding: 40px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9); /* Fundo mais visível */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0 auto;

}

/* Abas de opções */
.tab-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tab {
  background: none;
  border: 2px solid #1e40af;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.tab.active {
  background: #1e40af;
  color: white;
}


.tab:hover {
  background: #1e40af;
  color: white;
}

/* Campos de busca */
.search-fields {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

input, select {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Botão de pesquisa */
.search-btn {
  background: #0017AA;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  background: #000F7A;
}

/* Dropdown de viajantes */
.dropdown2 {
  position: relative;
  display: inline-block;
}

.dropdown2-toggle {
  padding: 10px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown2-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: left;
}

.option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.counter {
  display: flex;
  align-items: center;
  gap: 5px;
}

.counter button {
  background: none;
  border: 2px solid #0017AA;
  color: #0017AA;
  border-radius: 50%;
  font-size: 18px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.actions {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.clear-btn {
  background: none;
  border: none;
  color: #0017AA;
  cursor: pointer;
}

.apply-btn {
  background: #FFD900;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}





/* Botão de Troca de Origem/Destino */
.swap-btn {
  background: #1e40af;
  color: white;
  border: none;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swap-btn:hover {
  background: #163375;
}

/* Botão Buscar */
.search-btn {
  background: #1e40af;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  padding: 12px 20px;
  min-width: 160px;
  border-radius: 8px;
}




/* SEÇÃO PACOTES EXCLUSIVOS */
.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: 50px;
  margin-bottom: 5px;
  color: #555;  
  margin-left: 95px; /* Ajuste conforme necessário */
}

.pacotes-exclusivos h5 {
  font-size: 20px;
  color: #555;    
  font-weight: bold;
  margin-bottom: 15px;    
  text-align: left;
  margin-left: 95px; /* Ajuste conforme necessário */
}

.card-content p {
  font-size: 14px; /* Reduz o tamanho do texto */
  margin: 2px 0; /* Diminui os espaços acima e abaixo */
  color: #555;  
  margin-bottom: 6px; /* Diminui a distância entre os elementos */
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.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 img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

/* Linha HR estilizada */
.separator {
  border: none;
  height: 2px;
  background-color: #ccc;
  width: 100%;
  position: relative;
  margin: 20px 0;
}

/* Badge sobreposto à linha */
.badge-discount {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:#002f6c;
  background: #ffd700;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}



.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;

}



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

.rating {
  font-size: 14px;
  color: #ff9800;
  font-weight: bold;
  margin-bottom: 5px;
}
.info {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}
.offer {
  background: #5e2ca5;
  color: white;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 5px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #210375;
}
.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
}

/* Botão de carregar mais ofertas */
.botao-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}

.btn:hover {
  background: #0056b3;
}






/* PACOTES MAIS BUSCADOS */
.pacotes-section {
  padding: 2rem 1rem;
  width: 90%;
  max-width: 20010px;
  margin: auto;
  background-color: var(--bg-color);
  position: relative;
  
}
  
.pacotes-section h1 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 5px;
  color: #555;  
  margin-left: 65px; /* Ajuste conforme necessário */
      
}

.pacotes-section h5{
  font-size: 20px;    
  font-weight: bold;
  margin-bottom: 10px;    
  text-align: left; 
  font-size: 20px;
  margin-left: 70px; /* Ajuste conforme necessário */
  color: #555;
}

/* Container do carrossel */

.carousel-container {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  padding: 5px 0;
  justify-content: center;
  
}


/* 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: 20px; /* Evita espaço extra no final */
}


/* Ajuste no Track para manter alinhamento */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px; /* 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 {
    position: absolute;
    top: 50%;
    right: 10px; /* Mantém a seta dentro do carrossel */
    transform: translateY(-50%); /* Centraliza verticalmente */
    background-color: #ccc; /* Fundo cinza */
    color:#555 (0, 0, 0); /* Cor do ícone */
    border: none;
    border-radius: 50%; /* Deixa redonda */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; /* Garante que fique acima dos cards */
}

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

.card-pacotes {
  width: 280px; /* Largura fixa para todos os cards */
  max-width: 300px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden; /* Impede que a imagem ultrapasse os limites */
  box-shadow: 0 4px 4px rgba(52, 52, 52, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Mantém os itens no topo */
  text-align: left;
  padding: 0; /* Remove padding que pode criar espaços indesejados */
  max-height: 500px; /* Limita a altura total do card */
  line-height: 1.1; /* Reduz o espaçamento entre as linhas */
  position: relative; /* Necessário para posicionar o badge */
}

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


/* Imagem no topo do card */
.card-pacotes img {
  width: 100%; /* Faz a imagem ocupar toda a largura do card */
  height: 180px; /* Altura fixa para todas as imagens */
  display: block; /* Remove espaços extras ao redor da imagem */
  border-top-left-radius: 10px; /* Mantém o arredondamento da borda superior */
  border-top-right-radius: 10px;
}

/* Informação dentro do card */
.card-pacotes .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-pacotes h6 {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0; /* Remove espaço acima*/
  margin-bottom: 2px; /* Diminui a distância entre os elementos */
}

.card-pacotes h5 {
  font-size: 1.2rem;
  margin: 5px 0;
  color: #555;
  margin-top: 0; /* Remove espaço acima*/
  margin-bottom: 4px; /* Diminui a distância entre os elementos */
}

.card-pacotes p {
  font-size: 14px; /* Reduz o tamanho do texto */
  margin: 2px 0; /* Diminui os espaços acima e abaixo */
  color: #555;  
  margin-bottom: 6px; /* Diminui a distância entre os elementos */
}

/* Badge */
.badge-pacotes {
  display: inline-block; /* Evita que o badge ocupe toda a largura */
  background-color: #acacac;
  color: #333;
  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 */
  
}


/* Badge */
.badge-pacotes2 {
  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-pacotesh h3{
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2px; /* Diminui a distância entre os elementos */
}


.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;
}

.details {
  font-size: 14px;
  color: #555;
  margin-top: 0; /* Remove o espaço extra no segundo parágrafo */
}


/* Preço */
.price-pacotes {
  font-family: Arial, sans-serif;
  font-weight: bold;
  display: inline-flex; /* Mantém na mesma linha */
  align-items: center; /* Alinha verticalmente */
  gap: 4px; /* Espaço entre "R$" e o valor */
  color: #210375;
  font-weight: bold;
  margin-top: 0; /* Remove espaço acima do preço */
  margin-bottom: 2px; /* Pequeno espaço abaixo do preço */
}

.price-pacotes .moeda {
  font-size: 14px; /* Tamanho menor para "R$" */
 
}

.price-pacotes .valor {
  font-size: 22px; /* Tamanho maior para o preço */
}



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




/*SEÇÃO PACOTES NACIONAIS */
.pacotes-nacionais {
  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-nacionais h1 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 5px;
  color: #555;  
  margin-left: 95px; /* Ajuste conforme necessário */
}

.pacotes-nacionais h5 {
  font-size: 20px;
  color: #555;    
  font-weight: bold;
  margin-bottom: 20px;    
  text-align: left; 
  font-size: 20px;
  margin-left: 95px; /* Ajuste conforme necessário */
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  width: 270px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative; /* Necessário para posicionar o badge */
}

.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;
}

.card-content {
  padding: 15px;
}

.separator {
  border: none;
  height: 2px;
  background-color: #ccc;
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.badge-discount {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:#002f6c;
  background: #ffd700;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-nacionais {
  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;
}

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

.rating {
  font-size: 14px;
  color: #ff9800;
  font-weight: bold;
  margin-bottom: 5px;
}

.info {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.offer {
  background: #5e2ca5;
  color: white;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 5px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #210375;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
}

.botao-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}

.btn:hover {
  background: #0056b3;
}


/*SEÇÃO PACOTES INTERNACIONAIS */
.pacotes-internacionais {
  max-width: 1800px;
  margin-top: 100px; /* Aumente conforme necessário */
  margin: 20px;  
  padding: 20px;
  
}

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

.pacotes-internacionais h5 {
  font-size: 20px;
  color: #555;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  margin-left: 20px;
  margin-left: 90px; /* Ajuste conforme necessário */
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  width: 270px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative; /* Necessário para posicionar o badge */

}

.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;
}

.card-content {
  padding: 15px;
}

.separator {
  border: none;
  height: 2px;
  background-color: #ccc;
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.badge-discount {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #002f6c;
  background: #ffd700;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-int {
  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;
}

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

.rating {
  font-size: 14px;
  color: #ff9800;
  font-weight: bold;
  margin-bottom: 5px;
}

.info {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #210375;

}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
}

.botao-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}

.btn:hover {
  background: #0056b3;
}

/* Container principal */
.agente-container {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 1200px;
  margin-top: 100px; /* Aumente conforme necessário */
  margin: 20px;  
  padding: 20px;  
  gap: 50px;
  margin-left: 155px;
}

/* Banner do Photoshop */
.banner2 img {
  width: 100%;
  max-width: 600px; /* Ajuste o tamanho conforme necessário */
  height: auto;
  border-radius: 15px;
}

/* Opções de Atendimento */
.agente-opcoes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  
}

.opcao {
  flex: 1;
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #ddd;  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 120px;
  box-shadow: 0 4px 5px -2px rgba(27, 1, 100, 0.6); /* Sombra azul na parte inferior */
}

.opcao:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
}

/* Ícones */
.opcao i {
  font-size: 24px;
  color: #270073;
  margin-bottom: 5px;
}

.opcao h4 {
  font-size: 14px;
  color: #270073;
  margin: 5px 0;
}

.opcao p {
  font-size: 12px;
  color: #666;
  margin-bottom: 0px;
}

/* 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) {
  .agente-container {
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .banner img {
      max-width: 100%;
  }

  .agente-opcoes {
      justify-content: space-around;
      width: 100%;
  }

  .opcao {
      flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .opcao {
      flex: 1 1 100%;
  }
}


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

  .pagamentos {
      align-items: center;
      margin-top: 15px;
  }

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

