 

      * {

      font-family: 'Poppins', sans-serif;

      box-sizing: border-box;

    }



    body {

      font-family: 'Poppins', sans-serif;

      overflow-x: hidden;

    }






@keyframes zoomEffect {

    0% {

        font-size: 14px; /* Tamanho inicial do texto */

    }

    50% {

        font-size: 16px; /* Tamanho aumentado */

    }

    100% {

        font-size: 14px; /* Volta ao tamanho inicial */

    }

}





  /* Seu código de animação existente */

  .zoomButton {
 
    animation: zoomEffect 2s ease-in-out infinite;

  }



  @keyframes zoomEffect {

    0% {

      transform: scale(1); /* Tamanho inicial */

    }

    50% {

      transform: scale(1.1); /* Tamanho aumentado */

    }

    100% {

      transform: scale(1); /* Volta ao tamanho inicial */

    }

  }



/* CSS DO MENU */



.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}


.nav-link {
  font-family: 'Poppins';
  font-weight: 500;
  color: #fff !important;
  margin-left: 15px;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
  font-size: 14px !important;
}


/* Linha padrão invisível (para evitar pulo) */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #bcaaa0;
  width: 0;
  transition: width 0.3s ease;
}

/* Ao passar o mouse */
.nav-link:hover::after {
  width: 100%;
  color: #fff !important; /* mantém a cor ativa */
}

/* Quando a página estiver ativa */
.nav-link.active::after {
  width: 100%; /* mantém o tracinho fixo */
}

.nav-link.active {
  color: #fff !important; /* mantém a cor ativa */
}



/* Estilos para a faixa de submenu */
.subnav-container {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
}

.subnav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.subnav-menu li {
  margin: 0;
}

.subnav-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.subnav-menu a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-1px);
}



/* Estilo para telas grandes */

@media (min-width: 992px) {

  .navbar-nav {

    display: flex;

    justify-content: center;

    flex-grow: 1;

    padding: 0 10px; /* Garante que o menu não ultrapasse as bordas da tela */

    

  }



  .navbar-collapse {

    justify-content: center;

    padding: 0 10px;

  }



  .navbar-brand {

    margin: 0;

  }



  .nav-link {

    font-size: 15px; /* Tamanho de fonte para computador */

    

  }

}



/* Estilo para telas pequenas */

@media (max-width: 991px) {

  .nav-link {

    margin-top: 10px;

    margin-right: 10px;

    font-size: 18px; /* Tamanho de fonte para celular */

    margin-left: 10px; /* Espaçamento menor para telas pequenas */

  }



  .nav-link:last-child {

    margin-right: 0;

  }



  .navbar-brand {

    margin: 0 auto;

  }



  .navbar-toggler {

    border: none; /* Remove a borda do botão */

    background: none; /* Remove o fundo do botão */

  }



  .navbar-toggler:focus {

    box-shadow: none; /* Remove o brilho ao clicar */

  }



  .navbar-collapse {

    background-color: #000000; /* Cor de fundo verde */

  }



  .navbar-nav .nav-link {

    color: #000000 !important; /* Cor do texto preta */

  }



  .navbar-nav .nav-link.active,

  .navbar-nav .nav-link:hover,

  .navbar-nav .nav-link:focus {

    color: #fff !important; /* Garantir que a cor preta não mude ao clicar */

    font-weight: 600;

  }

}


/* Menu lateral mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -60%; /* Escondido inicialmente */
  width: 60%;
  height: 100vh;
  background-color: #bcaaa0; /* Cor azul */
  transition: left 0.3s ease-in-out;
  padding-top: 60px;
  box-shadow: 3px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 999; /* Ficar na frente de tudo */
}

/* Botão de fechar */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Itens do menu */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .nav-item {
  padding: 5px 20px;
}

.mobile-menu .nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  display: block;
  transition: background 0.3s;
}



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
  display: none; /* Começa invisível */
  z-index: 9;
}

/* Exibir overlay quando o menu for aberto */
.overlay.show {
  display: block;
}

/* Quando o menu está aberto */
.mobile-menu.open {
  left: 0; /* Exibir o menu */
}

.overlay.show {
  visibility: visible;
  opacity: 1;
}


.carousel-inner img {

  width: 100%;

  height: auto; /* Permite que a altura seja ajustada automaticamente com base na largura */

  object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */

  

}



@media (max-width: 1199px) {

  .carousel-inner img {

    max-height: 500px; /* Menor altura para telas médias */

  }

}



@media (max-width: 767px) {

  .carousel-inner img {

    max-height: 500px; /* Menor altura ainda para telas pequenas */

  }

}

  /* Muda a cor dos ícones para preto */

  .carousel-control-prev-icon,

  .carousel-control-next-icon {

    filter: invert(1); /* Inverte a cor para preto */

  }



  /* Muda a cor do texto "Previous" e "Next" para preto */

  .carousel-control-prev .visually-hidden,

  .carousel-control-next .visually-hidden {

    color: #000000;

  }



    /* Muda a cor dos ícones para preto */

    .carousel-control-prev1-icon,

  .carousel-control-next1-icon {

    filter: invert(0); /* Inverte a cor para preto */

  }



  /* Muda a cor do texto "Previous" e "Next" para preto */

  .carousel-control-prev1 .visually-hidden,

  .carousel-control-next1 .visually-hidden {

    color: #000000;

  }





      /* Muda a cor dos ícones para preto */

      .carousel-control-prev2-icon,

  .carousel-control-next2-icon {

    filter: invert(0); /* Inverte a cor para preto */

  }



  /* Muda a cor do texto "Previous" e "Next" para preto */

  .carousel-control-prev2 .visually-hidden,

  .carousel-control-next2 .visually-hidden {

    color: #000000;

  }



  /* Ajusta a cor do texto do carousel */

  .carousel-caption h5,

  .carousel-caption p {

    color: #000000;

  }











    .letramenor {

    font-size: 12px; /* Ajuste o tamanho conforme necessário */

    margin-bottom: 5px;

    }



    footer {

        background-color: #000000;

        padding: 30px 0;

        color: #fff;

    }



    .footer-container {

        display: flex;

        justify-content: space-between;

        align-items: center;

        flex-wrap: wrap;

        text-align: center;

    }



    .footer-item {

        flex: 1;

        padding: 10px;

        

    }


    footer h5 {
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

footer a:hover {
  text-decoration: underline;
  color: #3a2c00;
}

footer hr {
  opacity: 0.5;
}


    .social-icons {

        margin-top: 10px;

        align-items: center;

        text-align: center;

        

    }



    .social-icon {

        margin: 0 5px;

        display: inline-block;

    }



    .contact-title {

        font-weight: bold;

        font-size: 16px;

        text-align: center;

        color: #000000;

    

    }







    .legal-text {

        text-align: center;

        margin-top: 30px;

        font-size: 14px;

           color: #000000;

    }



    @media (max-width: 768px) {

        .footer-container {

            flex-direction: column;

        }



        .footer-item {

            margin-bottom: 10px;

        }

    }



    .social-icons a {

        display: inline-block;

        transition: transform 0.3s ease-in-out;

    }



    .social-icons a:hover {

        transform: scale(1.5);

    }



    .footer-item img:hover {

        transform: scale(1.2);

    }











.card-img {

    width: 90%;

    height: 100px;

    object-fit: cover;

    border-radius: 20px;

    display: block;  

    margin-left: auto;

    margin-right: auto;  

}





.custom-padding {

  padding-top: 15px;

  padding-bottom: 55px;

}



.placeholder {

  min-height: 200px; /* Reserve o espaço necessário */

}





.service-cardEXCLUIR {

    display: block;

    text-decoration: none;

    color: inherit;

    text-align: center;

    padding: 20px;

    border: 1px solid #ddd;

    border-radius: 8px;

    position: relative;

    overflow: hidden;

    transition: transform 0.3s;

  }








  .service-icon {

    width: 50px;

    height: 50px;

    margin-bottom: 10px;

  }



    /* Animação de pulsação */

    @keyframes pulse {

    0% {

      transform: scale(1);

    }

    50% {

      transform: scale(1.1); /* Aumenta o botão */

    }

    100% {

      transform: scale(1); /* Retorna ao tamanho normal */

    }

  }



  /* Aplica a animação no botão */

  .pulse-button {

    animation: pulse 1.5s infinite; /* 1.5 segundos de duração e repete infinitamente */

  }



  /* Responsivo para telas pequenas */

@media (max-width: 767px) {

    .row.d-flex {

        display: flex;

        flex-wrap: wrap;  /* Permite que os cards "quebrem" para a linha seguinte */

        justify-content: space-between;

    }

    .col-6 {

        width: 48%;  /* Ocupa metade da tela, dois cards por linha */

        margin-bottom: 15px;  /* Ajuste de espaçamento entre os cards */

    }

    .custom-padding {

        padding-left: 5px;

        padding-right: 5px;

    }

}







         /* Container do WhatsApp */

         .whatsapp-container {

            position: fixed;

            bottom: 30px;

            right: 5px;

            z-index: 1100;

        }







        /* Estilo do botão flutuante */

        .whatsapp-button {

            width: 55px;

            height: 55px;

            background-color: #2aa81a;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);

            cursor: pointer;

            transition: transform 0.5s ease-in-out;

            position: relative;

            margin-bottom: 20px;

            margin-right: 40px;

        }



        /* Efeito de pulsação */

        .whatsapp-button::before {

            content: "";

            position: absolute;

            width: 70px;

            height: 70px;

            background: #2ba81a36;

            border-radius: 50%;

            animation: pulse 1.5s infinite;

            z-index: -1;

        }



       

        .whatsapp-button:hover {

            transform: scale(1.1);

        }



        .whatsapp-button img {

            width:30px;

            height: 30px;

        }



               /* Configuração inicial para ocultar os elementos e definir animação */

               .image-section, .text-section {

            opacity: 0;

            transform: translateX(-100px);

            transition: opacity 1s ease-out, transform 1s ease-out;

        }



        .text-section {

            transform: translateX(100px); /* Texto vem da direita */

        }



        /* Classe que será adicionada quando a sessão aparecer */

        .show {

            opacity: 1;

            transform: translateX(0);

        }









 /* Estilização do formulário */

 form {

    background-color: #fff;

    padding: 20px;

    border: 2px solid #041f3f;

    border-radius: 10px;

    width: 100%;

    max-width: 400px;

    margin: auto;

  }



  label {

    display: block;

    font-weight: normal;

    color: #000;

    margin-bottom: 5px;

  }



  input, textarea {

    width: 100%;

    padding: 5px;

    border: 1px solid #000;

    border-radius: 8px;

    margin-bottom: 15px;

    font-size: 16px;

    color: #000;

  }



  textarea {

    height: 50px; /* Reduzindo a altura do campo de observação */

    resize: none;

  }




/* Ajuste do cabeçalho */
header.bg-black {
  padding-top: 2px !important; /* Reduz o espaço superior */
  padding-bottom: 2px !important; /* Reduz o espaço inferior */
}


/* Ajuste do botão do menu */
.navbar-toggler {
  margin-left: 5%;
  margin-top: -10px; /* Move para cima */
  margin-bottom: 25px;
}




/* CARDS DA HOME */
.card-custom {
  background-color: #f8f9fa; /* tom próximo do branco */
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.363);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
}

.card-custom .card-title {
  font-weight: bold;
  color: #041f3f;
  margin-bottom: 12px;
  font-size: 17px;
  text-align: center;
}

.card-custom .card-text {
  color: #000000;
  font-size: 14px;
  text-align: center;
}

.card-custom img {
  border-top-left-radius: 20px;
  border-top-right-radius: 12px;
  width: 45px;
  height: 45px;
  display: block;
  margin: 15px auto 0;
}

/* 🔹 Responsividade — 2 cards por linha no celular */
@media (max-width: 767px) {
  .card-custom {
    margin-bottom: 15px;
  }

  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 120px; /* ajuste conforme a altura do seu header+faixa */
  }
}



/* sessão foto do sistema */

.titulo-sistema {
  color: #bcaaa0;
  font-weight: 600;
  font-size: 23px;
}

.texto-sistema {
  color: #333;
  font-size: 15px;
  text-align: justify;
}

/* Botão customizado */
.btn-custom {
  background-color: #041f3f;
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: #033060;
  color: #ffffff;
  text-decoration: none;
}

/* Imagem do sistema */
.sistema-img {
  max-width: 75%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.sistema-img:hover {
  transform: scale(1.03);
}

/* Responsividade */
@media (max-width: 767px) {
  .titulo-sistema {
    font-size: 22px;
    text-align: center;
  }
  .texto-sistema {
    font-size: 14px;
    text-align: center;
  }
  .btn-custom {
    display: block;
    margin: 0 auto;
  }
}


/* CSS DA SESSÃO PLANOS*/
.planos-section .plano-card {
  background-color: #f8f9fa; /* tom próximo do branco */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.planos-section .plano-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.plano-title {
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  font-size: 20px;
}

.plano-price {
  font-weight: 600;
  color: #041f3f;
  font-size: 18px;
  margin-bottom: 15px;
}

.plano-desc {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
  text-align: justify;
}

.plano-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 50px;
  background-color: #041f3f;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.plano-btn:hover {
  background-color: #033060;
  transform: translateY(-2px);
}


/* linha detalhe azul*/


.linha {
  width: 70px;
  height: 5px;
  background-color: #cdb665;
  margin-top: 2%;
  margin-bottom: 4%;
}

.linhacentral {
  width: 70px;
  height: 5px;
  background-color: #bcaaa0;
  margin: 1% auto; /* centraliza horizontalmente e mantém margens vertical */
  align-content: center;
}




/* CSS DO DEPOIMENTO*/
#depoimentos h2 {
  color: #222;
  font-weight: 700;
}

#depoimentos .line {
  width: 60px;
  height: 4px;
  margin: 0 auto 30px;
  border-radius: 2px;
}

#depoimentos .card {
  transition: all 0.3s ease;
  border-radius: 15px;
}

#depoimentos .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 50%;
}


   /* POPUP DE SAIDA DA PÁGINA*/

    /* Fundo escurecido */
    .modal-backdrop.show {
      opacity: 0.8;
    }

    /* Personalização do modal */
    .custom-modal .modal-content {
      border-radius: 20px;
      overflow: hidden;
      background-color: #ffffff;
      box-shadow: 0 0 30px rgba(0,0,0,0.3);
      animation: popIn 0.5s ease;
    }

    @keyframes popIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }


    .popup-image {
      background-image: url('img/osistema.webp');
      background-size: cover;
      background-position: center;
      height: 100%;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
    }

    /* Texto do popup */
    .popup-text {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .popup-text h3 {
      font-weight: 700;
      color: #041f3f;
      margin-bottom: 15px;
      font-size: 22px;
    }

    .popup-text p {
      color: #000000;
      margin-bottom: 25px;
      font-size: 16px;
    }

.popup-btn {
  background: linear-gradient(135deg, #041f3f, #041f3f);
  border: none;
  color: white;
  font-weight: 500;
  border-radius: 10px;
  padding: 8px 14px;
  transition: all 0.3s ease;
  font-size: 15px;
  cursor: pointer;
  animation: pulse 1.8s infinite;
}

/* Efeito ao passar o mouse */
.popup-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #041f3f, #041f3f);
}

/* Animação de pulsar */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(4, 31, 63, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(4, 31, 63, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(4, 31, 63, 0);
  }
}


    @media (max-width: 768px) {
      .popup-image {
        display: none;
      }
      .popup-text {
        padding: 30px;
      }
    }


.img-hover {
  position: relative;
  overflow: hidden;
  border: 1px solid #bcaaa0; /* tom bege claro, pode ajustar */
  transition: 0.3s ease;
}

.img-hover img {
  width: 100%;
  height: auto;
  filter: grayscale(100%); /* começa preto e branco */
  transition: filter 0.6s ease, transform 0.5s ease;
}

.img-hover:hover img {
  filter: grayscale(0%); /* fica colorida ao passar o mouse */
  transform: scale(1.05); /* leve zoom */
}

/* ANIMAÇÃO SERVIÇOS - COMPUTADOR */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    animation: fadeInUp 1s ease-in-out;
  }

  .fade-card {
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
  }

  /* Delay leve para cada card aparecer em sequência */
  .col-md-3:nth-child(1) .fade-card { animation-delay: 0.2s; }
  .col-md-3:nth-child(2) .fade-card { animation-delay: 0.4s; }
  .col-md-3:nth-child(3) .fade-card { animation-delay: 0.6s; }
  .col-md-3:nth-child(4) .fade-card { animation-delay: 0.8s; }


  /* ANIMAÇÃO SERVIÇOS - CELULAR */

    @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }

  .fade-card {
    opacity: 0;
    animation: fadeIn 1.2s ease-in-out forwards;
  }

  .fade-card:nth-child(1) { animation-delay: 0.2s; }
  .fade-card:nth-child(2) { animation-delay: 0.4s; }
  .fade-card:nth-child(3) { animation-delay: 0.6s; }
  .fade-card:nth-child(4) { animation-delay: 0.8s; }


  /* ANIMAÇÃO QUAL SEU OBJETIVO- COMPUTADOR */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    animation: fadeIn 1.2s ease-in-out forwards;
  }


    /* ANIMAÇÃO QUAL SEU OBJETIVO- CELULAR */

 @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 1s ease-out forwards;
  }


.page-location-banner {
  background-image: url('img/fundosite.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.page-location-banner span {
  display: inline-block;
  background-color: rgba(7, 32, 83, 0.7);
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 20px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .page-location-banner span {
    font-size: 17px;
    padding: 8px 20px;
  }
}

/* ==============================
   CONTAINER GERAL DE CONTATO
   ============================== */
.container-contato {
  padding: 2rem;
  border-radius: 8px;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* ==============================
   SEÇÃO DE TEXTO (ESQUERDA)
   ============================== */
.text-section {
  flex: 1;
  min-width: 280px;
  color: #000;
}

.text-section h2 {
  font-weight: bold;
  font-size: 23px;
  color: #000;
  margin-bottom: 10px;
}

.text-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

.text-section a {
  color: #000;
  text-decoration: none;
}

.text-section a:hover {
  color: #072053;
  text-decoration: underline;
}

/* Ícones de contato */
.text-section i {
  color: #072053;
  font-size: 20px;
  margin-right: 8px;
}

/* Redes sociais */
.redes-sociais {
  margin-top: 40px;
}

.redes-sociais span {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}

.redes-sociais a img {
  width: 25px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.redes-sociais a:hover img {
  transform: scale(1.1);
}

/* ==============================
   FORMULÁRIO DE CONTATO (DIREITA)
   ============================== */
.image-section {
  flex: 1;
  min-width: 280px;
}

.image-section form {
  background-color: rgba(237, 237, 237, 0.42);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.image-section label {
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
}

.image-section .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 8px 10px;
}

.image-section .form-control:focus {
  border-color: #072053;
  box-shadow: 0 0 0 0.2rem rgba(7, 32, 83, 0.2);
}

.image-section button {
  background-color: #072053;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.image-section button:hover {
  background-color: #0b2f73;
}

/* ==============================
   MOBILE (RESPONSIVO)
   ============================== */
@media (max-width: 768px) {
  .container-contato {
    flex-direction: column;
    padding: 1.5rem;
  }

  .text-section {
    text-align: justify;
  }

  .text-section h2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .text-section p {
    font-size: 0.85rem;
  }

  .redes-sociais {
    text-align: center;
    margin-top: 25px;
  }

  .image-section form {
    margin-top: 10px;
  }
}


 /* Estilização do formulário */

 form {

    background-color: #fff;

    padding: 20px;

    border: 2px solid #000000;

    border-radius: 10px;

    width: 100%;

    max-width: 400px;

    margin: auto;

  }



  label {

    display: block;

    font-weight: normal;

    color: #000;

    margin-bottom: 5px;

  }



  input, textarea {

    width: 100%;

    padding: 5px;

    border: 1px solid #000;

    border-radius: 8px;

    margin-bottom: 15px;

    font-size: 16px;

    color: #000;

  }



  textarea {

    height: 50px; /* Reduzindo a altura do campo de observação */

    resize: none;

  }




/* Ajuste do cabeçalho */
header.bg-black {
  padding-top: 2px !important; /* Reduz o espaço superior */
  padding-bottom: 2px !important; /* Reduz o espaço inferior */
}


/* Ajuste do botão do menu */
.navbar-toggler {
  margin-left: 5%;
  margin-top: -10px; /* Move para cima */
  margin-bottom: 25px;
}






/* Remover qualquer efeito de entrada ou animação */
.image-section, .text-section {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Remove a classe .show (fica igual) */
.show {
  opacity: 1 !important;
  transform: none !important;
}




/* TEXTO DO SLIDE HOME */
/* Centraliza o texto do slide */
.slide-center {
  bottom: 15%;
}

/* Tag acima do título */
.slide-tag {
  font-size: 14px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}


.slide-tag::before,
.slide-tag::after {
  content: "";
  width: 40px;
  height: 5px;
  background: #bcaaa0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}



.slide-tagfino {
  font-size: 14px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}



/* Tag pequena - acima do título */
.slide-tagpq {
  font-size: 14px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}


.slide-tagpq::before,
.slide-tagpq::after {
  content: "";
  width: 20px;
  height: 5px;
  background: #bcaaa0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}



.slide-tagpqfino {
  font-size: 7px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}



/* Título principal */
.slide-main-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
}

/* Botões */
.slide-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Esquerdo amarelo */
.slide-btn-left {
  background-color: #bcaaa0;
  padding: 12px 32px;
  font-size: 16px;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* Direito branco */
.slide-btn-right {
  background-color: #ffffff;
  padding: 12px 32px;
  font-size: 16px;
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}




/* classe usada pelo toggle para aparecer */
  #langMenu a {
    padding: 5px;
    display: block;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
  }

  #langMenu a:hover {
    background-color: #bcaaa0;
    color: #fff !important;
  }

  .showMenu {
    display: block !important;
  }



/* SOBRE NOS */
.about-section {
  border-radius: 20px;
  margin-left: 8%;
   margin-right: 8%;
   margin-top: 20px;
}

.img-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.img-over {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.img-over img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid white;
}

.year-box {
  position: absolute;
  bottom: -25px;
  left: -10px;
  background: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
}

.subtitle {
  color: #bcaaa0;
  font-weight: 600;
}

@media(max-width: 768px) {
  .img-over {
    position: absolute;
    bottom: -10px;
    right: 10px;
  }
}



/* sessão SOBRE NOS - SOMENTE COMPUTADOR */
.section-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}

.travel-section {
  text-align: center;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 6px;
}

.section-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #bcaaa0;
}

.section-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.section-text1 {
  font-size: 15px;
  color: #333;
  margin-bottom: 0px;
}

.section-text2 {
  font-size: 15px;
  color: #333;
  margin: 0;
}



/* sessão SOBRE NOS - SOMENTE MOBILE */
@media (max-width: 768px) {

  /* Container geral */
  .travel-section-mobile {
    padding: 20px 15px !important;
    text-align: center;
  }

  /* Imagem */
  .section-img-mobile {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }

  /* Subtítulo */
  .section-subtitle-mobile {
    font-size: 14px;
    font-weight: 600;
    color: #000;
        text-align: center;
        
  }

  /* Título */
  .section-title-mobile {
    font-size: 22px;
    font-weight: 700;
    color: #bcaaa0;
    margin-bottom: 12px;
  }

  /* Texto */
  .section-text-mobile {
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 25px;
  }

  /* Botão */
  .section-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #bcaaa0;
    padding: 5px 40px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .section-btn-mobile:active {
    transform: scale(0.97);
  }
}


/* CARDS SERVIÇOS - computador */

/* CARDS SERVIÇOS  */

/* CARD */
.card-luxo {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    transition: .4s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    background: #fff;
}

/* imagem escura inicialmente */
.card-luxo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    transition: .45s;
    display: block;
}

/* overlay azul (invisível por padrão) */
.card-luxo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #bcaaa0;
    opacity: 0;
    transition: .45s;
    z-index: 2;
}

/* badge mantém acima do overlay */
.card-luxo .tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: #bcaaa0;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
}

/* ÁREA DO TEXTO - PADRÃO: fixado embaixo, sem interferir no fluxo */
.card-luxo .texto-area {
    position: absolute;
    bottom: 20px;              /* sempre embaixo quando sem hover */
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 6;                /* acima do overlay */
    padding: 0 15px;
    transition: all .45s ease;
    pointer-events: none;      /* evitar que o texto capture hover separado */
}

/* TÍTULO - sempre visível na base */
.card-luxo .texto-area h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;               /* garante legibilidade sobre a imagem escura */
}

/* PARÁGRAFO: oculto por padrão (não ocupa espaço) */
.card-luxo .texto-area p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .35s ease, max-height .45s ease;
    pointer-events: none;
}

/* HOVER — animação mais limpa, suave e fluida */
.card-luxo:hover img {
    filter: grayscale(100%) brightness(45%);
    transform: scale(1.03);
    opacity: 1;
}

.card-luxo:hover::before {
    opacity: .88;
}

/* texto sobe suavemente */
.card-luxo:hover .texto-area {
    bottom: 50%;
    transform: translateY(50%);
}

/* parágrafo aparece com fade suave */
.card-luxo:hover .texto-area p {
    opacity: 1;
    max-height: 300px;
    transition: opacity .55s ease, max-height .55s ease;
}

/* Remove o sombreamento/escurecimento somente deste card */
.card-luxo.no-dark img {
    filter: brightness(100%) !important;
}



/* MOBILE — apenas para as seções com .passeios-grid */
@media(max-width: 576px) {

    .passeios-grid .row > div {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50%;
    }

    .passeios-grid .card-luxo {
        height: 260px;
    }

    .passeios-grid .texto-area h3 {
        font-size: 14px;
    }

    .passeios-grid .texto-area p {
        font-size: 11px;
    }

    .passeios-grid .tour-badge {
        font-size: 11px;
        padding: 3px 7px;
        top: 10px;
        right: 10px;
    }
}




/* --- Estilo Clean Premium para Depoimentos --- */
/* ===================== ESTILOS ISOLADOS PARA #reviewCarousel ===================== */

/* cards e layout */
#reviewCarousel .depo-card{
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 20px;
  box-shadow: 0 6px 8px rgba(33, 33, 33, 0.301);
  transition: transform .28s ease, box-shadow .28s ease;
  text-align: center;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

#reviewCarousel .depo-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(33,33,33,0.09);
}

/* texto do depoimento (acima) */
#reviewCarousel .depo-text{
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* metadados: nome e passeio */
#reviewCarousel .depo-meta strong{
  display:block;
  color:#111;
  font-size:15px;
  margin-bottom:4px;
}
#reviewCarousel .depo-trip{
  color:#7a7a7a;
  font-size:13px;
  margin-bottom:8px;
}

/* estrelas */
#reviewCarousel .depo-stars{
  width: 50px !important;
  max-width: 110px !important;
  height: auto;
  flex-shrink: 0;
  transform: none !important;
}


/* setas externas (fora do container do slide) */
#reviewCarousel .review-prev-outside,
#reviewCarousel .review-next-outside{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 34px;
  color: #333;
  width: 48px;
  height: 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, opacity .18s;
  z-index: 10;
}
#reviewCarousel .review-prev-outside:hover,
#reviewCarousel .review-next-outside:hover{ transform: translateY(-50%) scale(1.06); }

/* posicionamento das setas */
#reviewCarousel .review-prev-outside{ left: -28px; }
#reviewCarousel .review-next-outside{ right: -28px; }

/* responsividade: 3 por vez no desktop, 1 por vez no mobile */
@media (min-width: 992px) {
  /* desktop: cada coluna ocupa 1/3 conforme .col-lg-4 */
}
@media (max-width: 991.98px) {
  /* tablet/mobile: força 1 por vez */
  #reviewCarousel .carousel-inner .row > .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #reviewCarousel .review-prev-outside { left: 8px; }
  #reviewCarousel .review-next-outside { right: 8px; }
}

/* evita que algum CSS global mude o .carousel-item dentro deste ID:
   NÃO definimos display aqui — deixamos o Bootstrap controlar a visibilidade. */

/* limpeza visual */
#reviewCarousel { position: relative; padding: 12px 36px; }
#reviewCarousel .carousel-inner { padding-bottom: 10px; }





/* --- Estilo Clean Premium para Depoimentos --- */
/* ===================== ESTILOS ISOLADOS PARA #reviewCarousel ===================== */

/* cards e layout */
#reviewCarouselmobile .depo-card{
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 26px;
  box-shadow: 0 6px 8px rgba(33, 33, 33, 0.301);
  transition: transform .28s ease, box-shadow .28s ease;
  text-align: center;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

#reviewCarouselmobile .depo-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(33,33,33,0.09);
}

/* texto do depoimento (acima) */
#reviewCarouselmobile .depo-text{
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* metadados: nome e passeio */
#reviewCarouselmobile .depo-meta strong{
  display:block;
  color:#111;
  font-size:15px;
  margin-bottom:4px;
}
#reviewCarouselmobile .depo-trip{
  color:#7a7a7a;
  font-size:13px;
  margin-bottom:8px;
}

/* estrelas */
#reviewCarouselmobile .depo-stars{
  width:110px;
  height:auto;
  margin: 6px auto 0;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12));
}

/* setas externas (fora do container do slide) */
#reviewCarouselmobile .review-prev-outside,
#reviewCarouselmobile .review-next-outside{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 34px;
  color: #333;
  width: 48px;
  height: 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, opacity .18s;
  z-index: 10;
}
#reviewCarouselmobile .review-prev-outside:hover,
#reviewCarouselmobile .review-next-outside:hover{ transform: translateY(-50%) scale(1.06); }

/* posicionamento das setas */
#reviewCarouselmobile .review-prev-outside{ left: -28px; }
#reviewCarouselmobile .review-next-outside{ right: -28px; }

/* responsividade: 3 por vez no desktop, 1 por vez no mobile */
@media (min-width: 992px) {
  /* desktop: cada coluna ocupa 1/3 conforme .col-lg-4 */
}
@media (max-width: 991.98px) {
  /* tablet/mobile: força 1 por vez */
  #reviewCarouselmobile .carousel-inner .row > .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #reviewCarouselmobile .review-prev-outside { left: 8px; }
  #reviewCarouselmobile .review-next-outside { right: 8px; }
}

/* evita que algum CSS global mude o .carousel-item dentro deste ID:
   NÃO definimos display aqui — deixamos o Bootstrap controlar a visibilidade. */

/* limpeza visual */
#reviewCarouselmobile { position: relative; padding: 12px 36px; }
#reviewCarouselmobile .carousel-inner { padding-bottom: 10px; }





/* PÁGINA SOBRE NOS VENICE */

.about-subtitle{
    font-size: 14px;
    font-weight:600;
    color:#bcaaa0;
    letter-spacing:2px;
}

.about-title{
    font-size:36px;
    font-weight:700;
}

.about-text{
    color:#555;
    font-size:15px;
    line-height:1.6;
}

/* TAG BRANCA SOBRE A IMAGEM */
.tag-box{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#fff;
    border:2px solid #ddd;
    padding:10px 20px;
    font-size:17px;
    font-weight:600;
    line-height:1.3;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

/* CARDS DE SERVIÇOS */
.service-card{
    height:230px;
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    border-radius:6px;
    overflow:hidden;
    cursor:pointer;
}

.service-card h4{
    color:#fff;
    font-weight:700;
    z-index:2;
}

.service-overlay{
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.26);
    transition:.3s;
}

.service-card:hover .service-overlay{
    background:rgba(0, 0, 0, 0.884);
}




/* Fade suave - SOBRE NOS COMPUTADOR E CELULAR*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom de entrada */
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1.2s ease;
}
.zoom-in.appear {
  opacity: 1;
  transform: scale(1);
}

/* Slide lateral exclusivo */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1.3s ease;
}
.slide-left.appear {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1.3s ease;
}
.slide-right.appear {
  opacity: 1;
  transform: translateX(0);
}




/* slides - NOSSA TOUR */

    /* Mantém o design original dos cards */
    .service-cardslide {
        height: 300px;
        width: 25%;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: end;
        justify-content: center;
        padding-bottom: 15px;
        color: #fff;
        font-size: 25px;
        font-weight: 800;
        transition: 0.2s;
        margin-top: 20px;
    }
    .service-card:hover { transform: scale(1.04); }

    .service-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(0, 0, 0, 0.226), transparent);
    }

    /* Ajuste para caber 4 por vez no computador e 2 no mobile */
    .carousel-item .row > div {
        padding:10px;
    }





    /* --- PÁGINA TRANSFERÊNCIAS --- */



    /* ---BANNER EM VIDEO --- */
/* Carousel */
#carouselExampleDark {
  width: 100%;
  overflow: hidden;
}

/* Item do banner */
#carouselExampleDark .carousel-item {
  position: relative;
  width: 100%;
  aspect-ratio: 2625 / 824; /* proporção real do vídeo */
  max-height: 260px;        /* limite elegante */
}

/* Vídeo centralizado */
#carouselExampleDark video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop grande */
@media (min-width: 1600px) {
  #carouselExampleDark .carousel-item {
    max-height: 400px;
  }
}

/* Desktop pequeno / notebook */
@media (max-width: 1366px) {
  #carouselExampleDark .carousel-item {
    max-height: 300px;
  }
}




/* Banner principal */
/* HERO VIDEO */
/* Banner */
/* BANNER */
.hero-video {
  position: relative !important;
  width: 100%;
  height: 300px;              /* altura REAL */
  overflow: hidden;
  background: #000;
}

/* VÍDEO */
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* TEXTO */
.hero-text {
  position: absolute !important;
  inset: 0;
  z-index: 2;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* TAG */
.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
}

.hero-tag::before,
.hero-tag::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #bcaaa0;
  margin: 0 10px;
  vertical-align: middle;
}

/* TÍTULO */
.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
  
  background: #bcaaa0;
}

/* BOTÃO */
.hero-btn {
  background: #bcaaa0;
  color: #fff;
  padding: 12px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
}

.hero-btn:hover {
  background: #bcaaa0;
  color: #fff;
}

/* NOTEBOOK */
@media (max-width: 1366px) {
  .hero-video {
    height: 260px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}



/* CONTAINER DO TEXTO */
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 20px;
}

/* TAG */
.slide-tag {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* TÍTULO */
.slide-main-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* BOTÃO */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 45px;
  border-radius: 10px;
  background-color: #bcaaa0;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #29282831;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.btn-gold:hover {
  background-color: #bcaaa0;
  color: #fff;
}

/* NOTEBOOK */
@media (max-width: 1366px) {
  .slide-main-title {
    font-size: 38px;
  }
}


/* SLIDES DE TRANSFERENCIAS */

.venice-section {
  width: 100%;
  overflow: hidden;
}

/* TEXTO */
.content-text {
  padding: 80px 6vw;
  background-color: #fff;
}

.content-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b2c55;
  margin-bottom: 30px;
}

.content-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* SLIDE */
.content-carousel {
  height: 100%;
}

.carousel-inner img {
  object-fit: cover;
}

/* ALTURA IGUAL ENTRE TEXTO E SLIDE */
@media (min-width: 992px) {
  .content-text,
  .content-carousel {
    min-height: 100vh;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .content-text {
    padding: 50px 20px;
  }

  .content-carousel {
    height: 320px;
  }
}





/* CONTAINER DOS BOTÕES */
/* GRID CONTAINER */
.passeio-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* MOBILE: 2 por linha */
  gap: 10px;
  width: 100%;
  max-width: 900px;
}

/* DESKTOP: 3 por linha */
@media (min-width: 768px) {
  .passeio-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* BOTÕES */
.passeio-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  height: 40px;           /* MAIS FINO */
  padding: 0 10px;
  line-height: 1.2;

  background-color: #fff;
  color: #000;
  border: 1px solid #bcaaa0;
  font-size: 14px;
  font-weight: 400;

  white-space: normal;
  transition: all 0.25s ease;
}

/* HOVER */
.passeio-btn:hover {
  background-color: rgba(38, 105, 120, 0.08);
  color: #bcaaa0;
}

/* ATIVO */
.btn-check:checked + .passeio-btn {
  background-color: #bcaaa0;
  color: #bcaaa0;
  border-color: #bcaaa0;
}

/* REMOVE PADRÃO BOOTSTRAP */
.passeio-btn:focus,
.btn-check:focus + .passeio-btn {
  box-shadow: none;
}



  /* Ajuste fino para mobile */
@media (max-width: 767px) {
  #content-p1 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p1 .section-text,
  #content-p1 p {
    text-align: justify;
  }
}


@media (max-width: 767px) {
  #content-p2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p2 .section-text,
  #content-p2 p {
    text-align: justify;
  }
}



@media (max-width: 767px) {
  #content-p3 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p3 .section-text,
  #content-p3 p {
    text-align: justify;
  }
}



@media (max-width: 767px) {
  #content-p4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p4 .section-text,
  #content-p4 p {
    text-align: justify;
  }
}



@media (max-width: 767px) {
  #content-p5 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p5 .section-text,
  #content-p5 p {
    text-align: justify;
  }
}



@media (max-width: 767px) {
  #content-p6 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p6 .section-text,
  #content-p6 p {
    text-align: justify;
  }
}



@media (max-width: 767px) {
  #content-p7 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p7 .section-text,
  #content-p7 p {
    text-align: justify;
  }
}



@media (max-width: 767px) {
  #content-p8 {
    padding-left: 16px;
    padding-right: 16px;
  }

  #content-p8 .section-text,
  #content-p8 p {
    text-align: justify;
  }
}

/* /////// HOME /////// */

.whisper-regular {
  font-family: "Whisper", cursive;
  font-weight: 400;
  font-style: normal;
}