/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/* CSS para estilizar o ícone do menu hambúrguer */

/* CSS para estilizar o ícone do menu hambúrguer com azul escuro */
.custom-toggler .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="%230056b3" class="bi bi-list" viewBox="0 0 16 16"><path d="M1 3h14a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2zm0 4h14a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2zm0 4h14a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2z"/></svg>');
}

/* CSS para estilizar o ícone do menu hambúrguer */

.bg-orange {
    background: linear-gradient(to right, #497e9d, #1371d0); 
}

.navbar-brand img{
    width: 150px;
}

  /*** serviços ***/
.servicos-viagens {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #fefefe);
    text-align: center;
  }
  
  .titulo-servicos {
    font-size: 2.5rem;
    color: #006d77;
    margin-bottom: 10px;
  }
  
  .subtitulo-servicos {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
  }
  
  .container-servicos {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .card-servico {
  background: linear-gradient(to right, rgb(18, 162, 5), rgb(28, 178, 55));
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  }
  
  .icone-servico {
    background: #ffffff;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: background 0.3s;
  }
  
  .card-servico:hover .icone-servico {
    background: #000000;
  }
  
  .icone-servico img {
    width: 50px;
    height: 50px;
  }
  
  .card-servico h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .card-servico p {
    font-size: 1rem;
    color: #ffffff;
  }

  .fade-in-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .secao-destinos {
    background-image: url('../img/amigos-viagem.jpg'); /* ajuste se quiser outra imagem */
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .fundo-destinos {
    background-color: rgba(0, 100, 120, 0.163);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }
  
  .conteudo-destinos h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .conteudo-destinos h2 span {
    color: #0dde2c;
    font-weight: normal;
  }
  
  .conteudo-destinos p {
    color: #e0f7fa;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .botao-destinos {
    background-color: #1b1b1b;
    color: #fff;
    padding: 14px 28px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .botao-destinos:hover {
    background-color: #ed9a00;
  }
  


  .sessao-lugares {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .container-lugares {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .subtitulo-lugares {
    color: #0077b6;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .titulo-lugares {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
  }
  
  .lugares-swiper {
    padding: 20px 0;
  }
  
  .card-lugares {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    height: 100%;
  }
  
  .card-lugares img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .btn-lugares {
    margin-top: 15px;
    background-color: #ffb703;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn-lugares:hover {
    background-color: #fb8500;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #0077b6;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #0077b6;
  }
  
  @media (max-width: 768px) {
    .titulo-lugares {
      font-size: 2rem;
    }
  }
  
/* formulario */
.form-whatsapp {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.linha-campos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.linha-campos input {
  flex: 1 1 30%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-whatsapp input,
.form-whatsapp textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-whatsapp button {
  background: #023e8a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-whatsapp button:hover {
  background: #0077b6;
}
.campo-com-label {
  display: flex;
  flex-direction: column;
  flex: 1 1 30%;
  margin-bottom: 15px;
}

.campo-com-label label {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 14px;
  color: #023e8a;
}


/* formulario */

  .sessao-lugares {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .container-lugares {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .subtitulo-lugares {
    color: #0077b6;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .titulo-lugares {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
  }
  
  .grid-lugares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
  }
  
  .card-lugares {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-borda {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
  background: linear-gradient(to right, rgb(18, 162, 5), rgb(28, 178, 55));
    border-radius: 15px;
    z-index: 0;
  }
  
  .conteudo-lugares {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
  }
  
  .imagem-lugares {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
  }
  .btn-eu-quero {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background-color: #0f0f0f;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn-eu-quero:hover {
    background-color: #efab00;
  }
  
  @media (max-width: 768px) {
    .titulo-lugares {
      font-size: 2rem;
    }
  }


  @media (max-width: 768px) {
    .conteudo-destinos h2 {
      font-size: 2rem;
    }
    .conteudo-destinos p {
      font-size: 1rem;
    }
    .botao-destinos {
      font-size: 0.95rem;
      padding: 12px 22px;
    }
  }
  

  /*** serviços ***/
  .banner-viagem {
    background-image: url('../img/mundo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-servicos12 {
    background-color: #131313;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    margin-top: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
 .btn-servicos12:hover {
    background-color: #e69500;
  }
  
  .overlay-banner {
    background-color: rgba(0, 88, 101, 0.3); /* Cor com transparência */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }
  
  .conteudo-banner h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .conteudo-banner h2 span {
    color: #8bf500;
    font-weight: normal;
  }
  
  .conteudo-banner p {
    color: #e0f7fa;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-whatsapp {
    background-color: #121212;
    color: #fff;
    padding: 14px 28px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn-whatsapp:hover {
    background-color: #e69500;
  }
  
  @media (max-width: 768px) {
    .conteudo-banner h2 {
      font-size: 2rem;
    }
    .conteudo-banner p {
      font-size: 1rem;
    }
    .btn-whatsapp {
      font-size: 0.95rem;
      padding: 12px 22px;
    }

   
  }
  


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: #081282;
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
    
}



.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


.banner-via-servicos {
  background-image: url('../img/familia.jpg'); /* Substituir pelo caminho da sua imagem de viagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.overlay-via-servicos {
  background-color: rgba(4, 49, 91, 0.227);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.conteudo-via-servicos {
  max-width: 800px;
}

.conteudo-via-servicos h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: rgb(0, 240, 80);
  font-weight: bold;
}

.conteudo-via-servicos p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-via-servicos {
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-via-servicos:hover {
  background-color: #2db01e;
  color: #feffff;
}

@media (max-width: 768px) {
  .conteudo-via-servicos h2 {
    font-size: 2rem;
  }

  .conteudo-via-servicos p {
    font-size: 1rem;
  }

  .btn-via-servicos {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
}

    /*** contatos***/



    .btn-whatsapp-fixed {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      border-radius: 50%;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
      transition: background 0.3s;
    }
    
    .btn-whatsapp-fixed img {
      width: 30px;
      height: 30px;
    }
    
    .btn-whatsapp-fixed:hover {
      background-color: #128c7e;
    }
    
    /* Animação de pulsar */
    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }
    
    /* Responsividade */
    @media (max-width: 600px) {
      .btn-whatsapp-fixed {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
      }
    
      .btn-whatsapp-fixed img {
        width: 25px;
        height: 25px;
      }
    }
    

    
    .contact{

margin-top: -130px;

    }
.contact .info-box {
    color: #050505;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #ffffff;
    flex-wrap: wrap;
  }
  
  .contact .info-box i {
    font-size: 32px;
    color: #16104c;
    border-radius: 50%;
    padding: 8px;
    flex-wrap: wrap;

  }
  
  .contact .info-box h3 {
    font-size: 20px;
    color: #0b0b49;
    font-weight: 700;
    margin: 10px 0;
  }
  
  .contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    flex-wrap: wrap;
    
  }

    /*** CONTATOS***/

  /*** RESPONSIVIDADE PARA SAMSUMG GALAX 20 ULTRA***/

  @media only screen and (min-width: 412px) and (max-width: 915px) {
    
    .btn-light{
      margin-bottom: -40px;
    }
  }

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/

.serviços img{
    max-width: 100%;
}

/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: rgb(253, 112, 12);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background-color: rgb(253, 112, 12);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background-color: rgb(38, 156, 36);
    color: wheat
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background-color: rgb(253, 112, 12);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background-color: rgb(253, 112, 12);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background-color: rgb(253, 112, 12);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}



@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-color: rgb(253, 112, 12);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background-color: rgb(253, 112, 12);

    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgb(253, 112, 12);

    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/

/*** Team Start ***/

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** perguntas-faq***/
.faq-viagem {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.container-faq {
  max-width: 800px;
  margin: 0 auto;
}

.container-faq h2 {
  font-size: 2.5rem;
  color: #181818;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  border: 1px solid #dce3e8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: #156727;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-pergunta::after {
  content: "▼";
  font-size: 1rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-pergunta::after {
  transform: rotate(180deg);
}

.faq-resposta {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  text-align: left;
  color: #555;
}

.faq-item.active .faq-resposta {
  padding: 15px 20px 20px 20px;
  max-height: 300px;
}

@media (max-width: 768px) {
  .container-faq h2 {
    font-size: 2rem;
  }
  .faq-pergunta {
    font-size: 1rem;
    padding: 18px;
  }
}


/*** perguntas-faq***/

/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background-color: rgb(253, 112, 12);
}

.contact-form {
    background-color: rgb(253, 112, 12);
}


.email-link{
    display: block;
    max-width: 200px; /* Ajuste a largura máxima conforme necessário */
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #007bff; /* Cor padrão do link */
    text-decoration: none; /* Remove o sublinhado */
    font-size: 1.1rem; /* Ajuste do tamanho da fonte */
}

/*** Footer Start ***/
.bg-blue {
  background: linear-gradient(to right, rgb(15, 186, 0), rgb(28, 178, 55));
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background-color: rgb(0, 145, 255);
    border: 0;
}

/*** Footer End ***/