/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
  text-decoration: none;

}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: rgb(243, 231, 231);
}

/* Estilo do nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  color: rgb(4, 2, 121);
  padding: 10px 20px;
  position: relative;
}

nav .logo img {
  display: block;
  width: 170px;
}

nav .icons i {
  margin: 0 10px;
  font-size: 18px;
  cursor: pointer;
  color: #010361;
}

nav .icons i:hover{
  color: rgb(204, 55, 10);
}

.icons{
  margin-left: 32%;
}
nav a{
  color: black;
}

nav .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index:5 !important;
}

nav .menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: rgb(1, 2, 95);
  
}

nav .nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  position: relative;
  z-index:5 !important;
}

nav .nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 22%; /* Ajuste o valor conforme necessário */
  background-color: #fefeff;
  list-style: none;
  padding: 10px;
  z-index: 10;
}

nav .nav-links .dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #444 transparent;
  z-index: 0;
}

nav .nav-links li:hover .dropdown {
  display: block;
}

nav .nav-links a {
  text-decoration: none;
  color: rgb(56, 55, 55);
  padding: 5px 10px;
}

.nav-links a:hover{
  color: rgb(255, 255, 255);
  border: 1px solid white;
  border-radius: 8px;
  background-color: #020466;
}
header {
  background: url('/imagens/cidade1\ -\ Copia.jpg') center/cover no-repeat;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0  10px 30px rgba(102, 57, 7, 0.822);

}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;

}

header .header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}


/* ________________Ícones de fundo azul______________________________________ */
.azul {
  margin-top:5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001b48; /* Azul escuro */
  padding: 20px;
  color: white;
  text-align: center;
  flex-wrap: wrap; /* Permite que os elementos fiquem em linhas diferentes */
}

.azul .service {
  flex: 1; /* Cada item ocupa o mesmo espaço */
  margin: 10px;
  max-width: 150px; /* Largura máxima para evitar que fiquem muito largos */
}

.size{
  width:80px;
}

.azul .service i {
  font-size: 80px; /* Tamanho do ícone */
  color: white;
  margin-bottom: 10px;
}

.azul .service p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.pol{
  font-size: 1.6em;
  margin-bottom: 2%;
}

.azul .service strong {
  font-size: 16px;
  color: #ffffff;
}

/* ____________________________________________________________________________________________ */

.lista-servicos {
  font-family: 'Montserrat',sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.lista-servicos > .lista-servicos-item {
  position: relative;
}

.main-link {
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
  margin-left: 2%;
}

.main-link:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #333;
}

.lista-servicos-links {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #505050d0;
  border: 1px solid #cccccc00;
  padding: 10px 0;
  display: none;
  width: 150px;
  z-index: 1000;
}

.lista-servicos-links li {
  padding: 5px 10px;
}

.lista-servicos-links li a {
  color: white;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.lista-servicos-links li a:hover {
  background-color: #fde61800;
}

.lista-servicos-item:hover .lista-servicos-links {
  display: block;
}
/* ____________________________________________________________________________________________ */


.menu a, .social-icons .icon {
  font-family: 'Abril Fatface', serif; /* Fonte para títulos de destaque */
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
}

.social-icons {
  display: flex;
  align-items: center;
}

.home-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}

.home-link i {
  height: 12px;
  margin-left: 9px;
  margin-right: 9px;  
  padding-bottom: 22px;
}

.social-icons a:hover {
  color: #ffd700; /* Cor dourada ao passar o mouse */
}

.menu a:hover {
  color: #ffd700; /* Cor dourada ao passar o mouse */
}


.hamburger {
  margin-right: 12%;
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------missão visão e valores--------- */

/* Seção Missão, Visão e Valores */
.mission-vision-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}

/* Estilos das seções */
.section2 {
  background-color: #f8f5f5;
  color: #312f2f;
  border-radius: 8px;
  padding: 30px;
  margin: 30px 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de aproximação ao passar o mouse */
.section2:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.header-title {
  font-family: 'Abril Fatface', serif; /* Fonte para títulos de destaque */
  animation: subirSuavemente 2s ease-out forwards; /* Início da animação */
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 2.4em;
  margin-top: 5%;
  z-index: 1;
  position: relative;
  text-shadow: 
    -1px -1px 0px rgb(0, 0, 0), /* Sombra para cima à esquerda */
     1px -1px 0px rgb(0, 0, 0), /* Sombra para cima à direita */
    -1px  1px 0px rgb(0, 0, 0), /* Sombra para baixo à esquerda */
     1px  1px 0px rgb(3, 3, 3); /* Sombra para baixo à direita */
}
/* -------------------------------------Outras configs------------------------------------------------------ */

/* Estilo do botão de rolagem pra baixo */

.scroll-button {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 1;
}

.scroll-button i {
  font-size: 1.5em;
  color: #000;
}

.scroll-button:hover {
  background-color: rgba(196, 177, 8, 0.562);
}


/* Animação suave para o H1 */
@keyframes subirSuavemente {
  0% {
      transform: translateY(100px); /* Começa abaixo */
      opacity: 0; /* Invisível no início */
  }
  100% {
      transform: translateY(0); /* Fica na posição original */
      opacity: 1; /* Totalmente visível */
  }
}

/* ---------------------------------------Botão de rolagem para o topo ---------------------------------------*/
.scroll-top-button {
    position: fixed;
    bottom: 100px;
    right: 27px;
    width: 50px;
    height: 50px;
    background-color: rgba(6, 21, 160, 0.979);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
    opacity: 0; /* Escondido inicialmente */
    visibility: hidden; /* Invisível inicialmente */
    z-index: 1;
}

.scroll-top-button i {
    font-size: 1.5em ;
    color: white ;
    z-index: 1 ;
    cursor: pointer ;
    z-index: 1;
}

/* Aparece quando visível */
.scroll-top-button.show {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}


/* ------------------------Transições das logos--------------------------------- */
.logo-slider-container {
  margin-top: 12px;
  padding: 54px;
  background-color: #1104bd;
  overflow: hidden; /* Para esconder as logos fora da visualização */
  position: relative;
}

.logo-slider {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 240px;
  animation: slide 20s linear infinite;
}

.logo-slider img {
  max-width: 190px;
  display: block;
  margin: 0 auto;
}

@keyframes slide {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Estilo para seções adicionais */
main section {
  padding: 40px 20px;
  text-align: center;
}

.parceiros {
  display: flex;
  justify-content: center;
  margin: 12px;
  padding: 2px;
  gap: 30px;
}

.text-center {
  text-align: center;
}

/* Estilo para o container */
.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

/* Estilo para o conteúdo */
.SEO {
  width: 60%; /* Ajuste conforme necessário */
  padding-top: 23px;
  flex: 1;
  text-align: justify;
  font-family: 'Playfair Display', serif; /* Fonte especial para títulos */
}

.h1{
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
}

p{
  padding: 12px;
}

.blog-subpost{
  padding: 65px;
  font-size: 1.8em;
  font-family: 'Playfair Display', serif; 
}

.SEO2 {
  padding: 12px;
  flex: 1;
  text-align: justify;
}

.image {
  margin-top: 20%;
  width: 35%; 
  margin-left: 20px;
  margin-right: 20px;
}

.image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* -------------------Configuração do blog---------------------------------- */

.blog{

  background-image: url('/imagens/paris-neve.jpg'); 
  background-size: cover; 
  background-position: center;
  background-attachment: fixed; 
  background-repeat: no-repeat; 

  background-color: rgba(255, 255, 255, 0.8); 
  border-radius: 8px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 87px;
  padding: 43px;
}

.box {
  flex: 1 1 22%; /* Cada div ocupará 22% da largura, ajustando para 4 por linha */
  min-width: 200px; /* Largura mínima para manter o layout */
  padding: 20px;
  background-color: #f0f0f0;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.map-color {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* Estilização do vídeo como fundo */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-iframe {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none; /* Evita que o vídeo interfira na interação */
}

/* Overlay com blur e filtro azul escuro */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.712); 
  backdrop-filter: blur(8px); 
  z-index: 1;
}


.lista {
  font-size: 16pt;
}

/* Estilo para a seção de contato e mapa */
.contact-map {
  display: flex;
  gap: 90px;
  padding: 20px;
  flex-direction: row;
}

/* Estilo para o formulário de contato */
.contact-form {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: white;
}

.contact-form h2 {
  margin-bottom: 39px;
}

p{
    font-size: 23px;
}
.AFILIADOS{
  padding: 45px;
  font-variant: small-caps;
  text-align: center;
  font-size: 1.67em;
}

#know:hover{
  text-decoration: blanchedalmond;
}

/* Container das postagens */

.instagram-posts {
  justify-content: center;
  display: grid;
  gap: 20px;
  padding-left: 180px;
  width: 100%;
  max-width: 1200px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
/* Estilo das postagens */

.Pacotes{
  cursor: pointer;
}
a:hover{
  text-decoration: none;
}
.post {
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.post img {
  width: 100%;
  height: auto;
}

.post p {
  padding: 15px;
  text-align: center;
  color: #333;
}

/* Efeito ao passar o mouse */
.post:hover {
  transform: scale(1.05);
}

.Vantagens{
  font-size: 2.9em;
  padding-bottom: 29px;
  text-align: center;
}

.advantage {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-box {
  background-color: #f5f5f500;
  border: none;
  border-radius: 8px;
  padding: 0px;
  text-align: center  ;
  width: calc(33.333% - 50px); /* Três colunas no layout padrão */
  margin: 10px;
  transition: transform 0.3s ease; /* Transição suave para o efeito de escala */
}

.info-box i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 20px;
  margin: 10px 0;
}

.info-box p {
  font-size: 16px;
  color: #666;
}

#contato{
  font-variant: small-caps;
  font-size: 2.68em;
  padding-bottom: 39px;
  text-align: center;
}

.viagem{
  text-align: center;
  font-variant: small-caps;
  font-weight:bolder;
  font-size: 1.8em;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
}

.whatsapp-float:hover {
  background-color: #20b954;
  transform: scale(1.1);
  transition: transform 0.2s, background-color 0.2s;
  display: pointer;
}

/* ------------------------Seta para voltar para o topo------------------------------------ */

.scroll-to-top {
  position: fixed;
  bottom: 90px; /* Posicione acima do botão do WhatsApp */
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #007bff; /* Cor azul */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Efeito de hover no botão da seta */
.scroll-to-top:hover {
  background-color: #0057b373; /* Cor mais escura ao passar o mouse */
}

/* Estilo para o mapa */
.map {
  margin-top: 20px;
}

.map iframe {
  display: flex;
  border: 0;
  width: 99%;
  height: 450px;
  text-align: left;
}

.link-contato{
  color: white;
}

.footer {
  background-color: #8b2d07; /* Fundo azul escuro */
  color: #fff;
  padding: 20px;
}

.footer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

.footer-logo {
  position: absolute;
  left: 20px;
}

.footer-logo img {
  width: 100px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover {
  color: #1e90ff; /* Azul claro ao passar o mouse */
}

.footer-links i {
  margin-right: 5px;
}

.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 2em;
  color: #ccc;
}

/*--------------------- Responsividade------------------------- */
@media (min-width:601px) and (max-width: 868px) {

header{
  height: 400px;
}

.header-title{
  font-size: 1.9em;
  margin-top: 9%;
}

nav #odara img{
  width: 180px;
  }

  nav .menu-toggle {
    display: flex;
}

nav .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

nav .nav-links.show {
    display: flex;
}

nav .nav-links .dropdown {
    position: static;
    background-color: transparent;
    box-shadow: none;
    left: 0;
}

.nav .nav-links a{
  color: black;
}

  .header-content {
      justify-content: space-between;
  }

  .scroll-button {
    bottom: 70px;
  }
  .footer-copy {
    margin-top: 10px;
    font-size: 12px;
  }  
}

@media (min-width:320px) and (max-width:600px){

header{
  height: 300px;
}


#logo{
  width: 1px !important;
  }

nav .menu-toggle {
    display: flex;
}

nav .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

nav .nav-links.show {
    display: flex;
}

nav .nav-links .dropdown {
    position: static;
    background-color: transparent;
    box-shadow: none;
    left: 0;
}

/* ------------Serviços Ícone------------------- */
.lista-servicos {
  font-variant: small-caps;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-link {
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}
/* -------------------------------------------- */

.header-content {
    justify-content: space-between;
}

  .social-icons {
    font-size: 12px !important;
    margin-left: 42%;
    display: flex;
    align-items: center;
  }
  .header-title{
    font-size: 1.46em;
    margin-top: 10%;
  }

  .scroll-button {
    width: 30px;
    height: 30px;
    bottom: 50px;
  }
  .pol{
    font-size: 1.1em;
    margin-bottom: 4%;
  }


  .container {
    display: block; /* Empilha o conteúdo */
    text-align: center; /* Centraliza o conteúdo, opcional */
  }

  .SEO, .image {
    width: 100%; /* Cada elemento ocupa toda a largura */
  }

  .image {
    margin-top: 20px; /* Espaço entre o texto e a imagem */
  }

  .instagram-posts{
    padding-left: 29%;
    padding-right: 29%;
  }
  .instagram-posts .post {
    width: 100%; /* Exibe cada post em uma linha */
}
.advantage {
  flex-direction: column;
  align-items: center;
}

.info-box {
  width: 100%;
  margin-bottom: 15px;
}

.blog{
width: 95% !important;
}

.box {
width: 95% !important; /* Largura aumentada para telas menores */
margin: 10px auto !important; /* Centralização com espaçamento automático */

}
.contact-map {
flex-direction: column; /* Altera a direção para coluna */
}

.map {
order: 2; /* Coloca o mapa no final */
}

.contact-form {
order: 1; /* Coloca o formulário acima */
}

.viagem{
  font-size: 2.12em;
  padding-top: 12%;
  padding-bottom: 14px;
}

.Vantagens{
  font-size: 1.9em;
  padding: 0;

}

.blog-subpost{
  margin-top: 1px;
  margin-bottom: 1%;
  font-size: 2.12em;

}
#contato{
  font-size: 2.12em;
}
.AFILIADOS{
  font-size: 1.5em;
}

.footer-copy {
  margin-top: 10px;
  font-size: 12px;
}

}
