body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    box-sizing: border-box;
}

.top-bar {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0; /* adiciona */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  z-index: 10;
  background-color: transparent;
  /* remova width: 100%; */
}


 .logo {
  position: fixed;  /* muda de absolute para fixed */
  left: 45px;
  top: 71px;         /* define a altura fixa que preferir */
  transform: translateY(-50%); /* centraliza verticalmente */
  z-index: 1000;    /* para ficar acima de outros elementos */
}


    .logo img {
      max-width: 80px;
      height: auto;
    }

    .nav-links {
      display: flex;
      gap: 40px;
    }

    .nav-links a {
      font-family: 'Poppins', sans-serif;
      font-weight: 510;
      color: #eef0be;
      text-decoration: none;
      font-size: 1.25em;
      text-transform: uppercase;
      transition: transform 0.3s ease, color 0.3s;
      padding: 5px 10px;

}

    .nav-links a:hover {
      transform: scale(1.10);
      color: #ffffff;
    }



.nav-links a {
    font-family: 'Poppins', sans-serif;
    font-weight: 510;
    color: #eef0be;
    text-decoration: none;
    font-size: 1.25em;
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s;
    padding: 5px 10px;
}

.nav-links a:hover {
    transform: scale(1.10);
    color: #ffffff;
}

/* Redes sociais */
.social-links {
    position: absolute;
    top: 35px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    color: #eef0be;
    z-index: 100;
}

.social-links a img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.2);
    filter: brightness(0) invert(1);
}

/* Banner */
.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner video {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* Ajuste do texto no banner */
.banner .content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 2.5em;
    text-transform: uppercase;
    color: hsl(62, 62%, 84%);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.banner .content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.7em;
    margin: 0;
}

.banner .content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.63em;
    color: white;
    margin-top: -9px;
    font-style: italic;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links a {
        font-size: 1em;
        padding: 5px;
    }

    .logo img {
        max-width: 80px;
    }

    .banner .content h1 {
        font-size: 3em;
    }

    .banner .content p {
        font-size: 0.8em;
    }
}
.banner .content h1 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-out forwards;
}

.banner .content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-out forwards;
}

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


.button-container {
    text-align: center;
    margin-top: 10px;
}

.book-now-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8em;
    font-weight: 500;
    color: #eeefbd;
    border: 2px solid #eeefbd;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: transparent;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-button:hover {
    color: #000000;
    background-color: #eeefbd;
    border: 2px solid #eeefbd;
    transform: scale(1.0);
}

/* Seção Invisível ou em Branco */
.blank-section {
    height: 500px;
    background-color: transparent;
}

.banner-moving .content {
    transform: translateY(-150%); /* Move o conteúdo completamente para cima */
    transition: transform 0.5s ease; /* Adiciona uma transição suave */
}


/* Classe para esconder o botão */
.hidden {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* Evita que o botão seja clicado quando invisível */
}

/* Classe para exibir o botão novamente */
.book-now-button {
    opacity: 1;
    transition: opacity 0.5s ease;
}


/* Fundo escuro com overlay para a seção Experiences */
.experiences-section {
    position: relative;
    text-align: center;
    padding: 50px 20px;
    background: url('img/experiences-bg.webp') no-repeat center center/cover;
    color: #333;
}

.experiences-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Escurece ligeiramente o fundo */
    z-index: 1;
}

/* Remover o título */
.section-title {
    display: none; /* Esconde o título */
}

/* About Section */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Garante que a seção ocupe a altura da tela */
    padding: 0 20px;
}

.section-sub {
    font-size: 1.5rem; /* Tamanho do subtítulo */
    font-weight: 600; /* Negrito */
    color: #00FF26; /* Verde vibrante */
    text-transform: uppercase; /* Texto em maiúsculas */
    margin-bottom: 10px; /* Espaço abaixo do subtítulo */
}

.section-title {
    font-size: 4rem !important;
    font-weight: 1000 !important;
    color: #eeefbd !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0px !important;
    line-height: 0.2 !important;
}

.section-box {
    margin: auto;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Bordas claras */
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
}
.left-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px; /* Espaçamento entre os elementos */
    transform: translateY(-30px); /* Sobe ligeiramente o conteúdo */
}


.content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr; /* Ajusta a proporção das colunas */
    gap: 30px; /* Reduz um pouco o espaço entre as colunas */
    align-items: center; /* Centraliza verticalmente */
    padding: 0 30px; /* Adiciona um pouco de espaço nas laterais */
}

.right-grid {
    display: flex;
    justify-content: flex-start; /* Move a imagem um pouco para dentro */
    align-items: center; /* Centraliza verticalmente */
    padding-right: 20px; /* Adiciona espaço da borda direita */
}

.right-grid img {
    width: 100%;
    max-width: 380px; /* Ajusta o tamanho máximo da imagem */
    border-radius: 15px; /* Bordas arredondadas */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra leve */
}



.left-grid h3.section-sub {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff; /* Verde vibrante */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.left-grid h2.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #eeefbd; /* Título branco */
    margin-bottom: 20px;
}


.left-grid p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 3px;
}

.action-btn {
    font-size: 1rem; /* Tamanho da fonte */
    font-weight: 600; /* Peso da fonte */
    color: #eeefbd; /* Cor do texto */
    background-color: transparent; /* Fundo transparente */
    border: 2px solid #eeefbd; /* Borda com cor amarelada */
    border-radius: 25px; /* Borda arredondada */
    padding: 12px 30px; /* Espaçamento interno */
    cursor: pointer; /* Cursor em formato de mão ao passar */
    transition: all 0.3s ease; /* Efeito de transição suave */
    box-shadow: none; /* Sem sombra */
    margin-top: 2px; /* Margem superior */
    text-transform: uppercase; /* Texto em maiúsculas */
    font-family: 'Montserrat', sans-serif;
}



.action-btn:hover {
    background-color: #eeefbd; /* Cor mais escura ao hover */
    color:#000000;
    transform: scale(1.05);
}


.right-grid img {
    width: 100%;
    max-width: 350px; /* Ajusta a largura máxima */
    border-radius: 15px; /* Bordas arredondadas */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra leve */
}

/* Destaque temporário na caixa */
.section-box.highlight {
    animation: popIn 0.5s ease-in-out;
}

@keyframes popIn {
    from {
        transform: scale(0.95);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Esconde o vídeo quando não está no Home */
.video-hidden {
    display: none;
}

/* Estilo da seção de contato */
#contact-us {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0px 30px;
    position: relative;
    z-index: 1;
    background: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

#contact-us .section-box {
    padding: 50px;
    max-width: 800px;
    width: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/* Título e subtítulo */
#contact-us .section-title {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #eeefbd !important;
    margin-bottom: 5px !important;   /* Reduz o espaço depois do título */
    line-height: 1.1 !important;     /* Mais compacto visualmente */
}
#contact-us .section-sub {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1em;
    color: #ffffff;
    margin-top: 5px;
    margin-bottom: 30px;
    text-transform: none !important; /* ← remove o caps lock */
}
/* Formulário */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;  /* Aumentando o espaçamento entre os elementos do formulário */
    align-items: center;
    font-family: 'Poppins', sans-serif;
    width: 100%;  /* Certificando que o formulário ocupa toda a largura disponível */
    max-width: 100%; /* Garantindo que o formulário pode se expandir sem limite de largura */
}

.contact-form input,
.contact-form textarea {
    padding: 16px 25px;  /* Aumentando o preenchimento das caixas */
    font-size: 1em;  /* Aumentando o tamanho da fonte nas caixas */
    font-family: 'Poppins', sans-serif;  /* Igual às outras caixas */
    line-height: 1.5;                    /* Melhor legibilidade */
    color: #333;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 100% !important;  /* As caixas de texto vão ocupar 100% da largura disponível */
    box-sizing: border-box;
    min-width: 70px !important;  /* Garantindo que a largura mínima seja maior */
    max-width: 80% !important;  /* Garantindo que as caixas possam ocupar toda a largura disponível */
    resize: vertical;  /* Permitindo que o usuário redimensione as caixas de texto (especialmente a área de texto) */
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

/* Botão */
.contact-form button {
    font-size: 0.9rem; /* Tamanho da fonte reduzido */
    font-weight: 600; /* Peso da fonte */
    color: #eeefbd; /* Cor do texto */
    background-color: transparent; /* Fundo transparente */
    border: 2px solid #eeefbd; /* Borda com cor amarelada */
    border-radius: 25px; /* Borda arredondada */
    padding: 10px 30px; /* Aumentando um pouco o espaçamento interno */
    cursor: pointer; /* Cursor em formato de mão ao passar */
    transition: all 0.3s ease; /* Efeito de transição suave */
    box-shadow: none; /* Sem sombra */
    margin-top: 10px; /* Margem superior */
    text-transform: uppercase; /* Texto em maiúsculas */
    font-family: 'Montserrat', sans-serif;
    width: auto; /* Largura automática */
    max-width: 250px; /* Aumentando o limite máximo de largura */
    align-self: center; /* Centralizando o botão */
}

.contact-form button:hover {
    background-color: #eeefbd; /* Cor de fundo amarelada no hover */
    color: #333; /* Cor do texto no hover */
}

/* Footer */
.contact-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;  /* Aumentando o espaçamento no footer */
    border-top: 1px solid #bfe2e2;
    padding-top: 30px;
    margin-top: 40px;
}

.contact-footer h4 {
    margin-bottom: 10px;
    font-size: 1.5em;  /* Aumentando o tamanho da fonte dos títulos do footer */
    color: #f3efe3;
    font-weight: bold;
}

.contact-footer p {
    margin: 0;
    color: #f3efe3;
    font-size: 1.2em;  /* Aumentando o tamanho da fonte das descrições */
    line-height: 1.5;
}

.footer-logo {
    width: 60px;  /* Aumentando o tamanho do logo */
    margin-bottom: 10px;
}

/* Vídeo de fundo não interativo */
#background-video,
.banner video {
    pointer-events: none;

    
}

#contact-us .section-sub {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1em !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-transform: none !important;
}



.background-video-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);  /* Mesmo overlay da homepage */
    z-index: 0;
}

.background-video-page video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.background-video-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}
.top-bar {
    z-index: 10;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.thumbnail-row {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.thumb {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  border: 2px solid #eeefbd;
  transform: scale(1.05);
}

/* =========================
   BOAT TOURS SECTION CSS
   ========================= */

/* =========================
   BOAT TOURS SECTION CSS
   ========================= */

#boat-tours {
  margin-top: 80px;
  text-align: center;
  padding: 160px 20px 100px;
  background: none;
  color: #ffffff;
}

#boat-tours .section-title {
  font-size: 3rem;
  color: #eeefbd;
  margin-bottom: 40px;
}

#boat-tours .section-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #eeeeee;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-wrapper {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 0;
}

.carousel-viewport {
  overflow: hidden;
}

.boat-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.boat-carousel .taxi-card {
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  background: rgba(255, 255, 255, 0.1); /* fundo translúcido claro */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.boat-carousel .taxi-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}


.boat-carousel .taxi-card img {
  width: 100%;
  height: 50%;
  max-height: 200px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}



.boat-carousel .taxi-card:hover img {
  filter: brightness(1.05);
}

#boat-tours .taxi-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex-grow: 1;
}

#boat-tours .taxi-card-body h4 {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  color: #eeefbd;
  margin: 5px 0 0;
}

#boat-tours .taxi-card-body p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
}

#boat-tours .taxi-price {
  margin-top: 5px;          /* menos espaço do parágrafo acima */
  margin-bottom: 15px;      /* mais espaço até o botão */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;                 /* espaço entre "from" e valor */
}


#boat-tours .taxi-price .from-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#boat-tours .taxi-price .price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

#boat-tours .taxi-card-footer {
  padding: 0px 15px 25px;
  margin-top: -5px;
}

.taxi-book-btn {
  display: inline-block;
  padding: 10px 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  border: 2px solid #eeefbd;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-color: transparent;
}

.taxi-book-btn:hover {
  background-color: #eeefbd;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(238, 239, 189, 0.6);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #eeefbd;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  padding: 0;
}



.carousel-btn.left {
  left: -60px;
}

.carousel-btn.right {
  right: -60px;
}

.carousel-btn {
  color: #eeefbd; /* Cor da seta antes do hover */
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: #eeefbd; /* Fundo amarelo */
  color: #1f1f1f; /* Seta escura visível por cima do fundo */
}


@media (max-width: 1024px) {
  .boat-carousel .taxi-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .boat-carousel .taxi-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-btn {
    display: none;
  }
}

/* Corrige corte nos cards ao fazer hover sem alterar overflow */
.boat-carousel .taxi-card {
  margin-top: 5px; /* Adiciona espaço interno para permitir a subida */
}

.boat-carousel .taxi-card:hover {
  transform: translateY(-5px); /* Mantém o efeito de destaque */
}

.carousel-btn svg {
  display: block;
  margin: auto;
}

.carousel-btn .arrow-icon {
  stroke: #eeefbd;
  transition: stroke 0.3s ease;
}

.carousel-btn:hover .arrow-icon {
  stroke: #1f1f1f; /* ou #333, conforme o contraste desejado */
}

#taxi-boat-section {
  margin-top: 80px;
  text-align: center;
  padding: 160px 20px 100px;
  background: none;
  color: #ffffff;
}

.taxi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#taxi-boat-section .taxi-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease;
}

#taxi-boat-section .taxi-card:hover {
  transform: translateY(-5px);
}

#taxi-boat-section .taxi-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

#taxi-boat-section .taxi-card-body {
  padding: 15px;
  text-align: center;
}

#taxi-boat-section .taxi-card-body h4 {
  font-size: 1.4rem;
  color: #eeefbd;
  margin: 0;
}

#taxi-boat-section .taxi-card-body p {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 10px;
}

#taxi-boat-section .taxi-price {
  display: flex;
  flex-direction: column; /* ← empilha o texto "from" e o preço */
  align-items: center;
  gap: 2px;
  margin-top: 10px;
}


#taxi-boat-section .taxi-price .from-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

#taxi-boat-section .taxi-price .price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

#taxi-boat-section .taxi-card-footer {
  padding: 0px 15px 25px;
  margin-top: -5px;
}

#taxi-boat-section .taxi-book-btn {
  display: inline-block;
  padding: 10px 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  border: 2px solid #eeefbd;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-color: transparent;
}

#taxi-boat-section .taxi-book-btn:hover {
  background-color: #eeefbd;
  color: #000;
}


.boat-carousel .taxi-card,
#taxi-boat-section .taxi-card {
  will-change: backdrop-filter;
  transform: translateZ(0);
}



#taxi-boat-section .section-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #eeeeee;
  margin-top: -10px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-align: center;
}

.floating-lang-switcher {
    position: fixed;
    top: 50px; /* ajusta para alinhar com o baseline da navegação */
    right: 45px; /* espaçamento mais coeso com o final da top bar */
    z-index: 999;
    font-family: 'Poppins', sans-serif;
    font-weight: 510;
    font-size: 1.25em;
    line-height: 1;
    color: #eef0be;
    background: none;
    padding: 0;
}

.floating-lang-switcher .lang-btn {
    color: #eef0be;
    text-decoration: none;
    margin: 0 4px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.floating-lang-switcher .lang-btn:hover {
    color: #ffffff;
    transform: scale(1.05);
}

.related-tours {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.related-title {
  font-size: 2rem;
  color: #1f1f1f;
  font-weight: 800;
  margin-bottom: 40px;
  font-family: 'Montserrat', sans-serif;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.related-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  max-width: 280px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.related-body {
  padding: 20px 15px 30px;
}

.related-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.related-body p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.related-price {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  display: block;
  margin-bottom: 15px;
}

.related-btn {
  display: inline-block;
  padding: 10px 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #eeefbd;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.related-btn:hover {
  background-color: #d6d88e;
  transform: scale(1.05);
}
.taxi-card-body h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  white-space: nowrap;
}


.content-wrapper {
  position: relative;
  z-index: 1;
}
.info-column h1 {
  color: #eef0be;
}

.price {
  color: #ffffff !important;
}

.quick-details {
  font-size: 0.9rem;
  color: #ffffff !important;
  line-height: 1.4;
}

.passenger-select {
  color: #eef0be;
}

.review-count {
  font-size: 0.9rem;
  color: #ffffff !important;
}

.background-video-page .banner::before {
  background: none !important;
}



.info-column h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  color: #eeefbd;
}

.quick-details strong {
  color: #eeefbd;
}

.styled-dropdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  width: 100%;
  max-width: 220px;
}

.styled-dropdown label {
  color: #eeefbd;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.dropdown-wrapper {
  position: relative;
}

.styled-dropdown select {
  appearance: none;
  width: 100%;
  background: rgba(0, 61, 92, 0.55);
  border: 1px solid #eeefbd;
  padding: 8px 32px 8px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #eeefbd;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s ease;
  box-shadow: 0 0 6px rgba(238, 239, 189, 0.05);
}

.styled-dropdown select:hover {
  border-color: #ffaa00;
  box-shadow: 0 0 6px rgba(255, 170, 0, 0.25);
}


.dropdown-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #eeefbd;
  transition: transform 0.3s ease;
}

.styled-dropdown select:focus + .dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}


    .floating-lang-switcher {
      position: fixed;
      top: 57px;
      right: 45px;
      z-index: 999;
      font-family: 'Poppins', sans-serif;
      font-weight: 510;
      font-size: 1.25em;
      line-height: 1;
      color: #eef0be;
    }
    .container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
      padding: 140px 20px 40px;
      position: relative;
      z-index: 2;
      backdrop-filter: blur(5px);
    }


    @media screen and (max-width: 1120px) {
  .floating-lang-switcher {
    position: absolute !important;   /* mantemos absolute para mobile */
    top: 68px !important;            /* ajuste de top para alinhar com a top bar */
    right: 19px !important;          /* ajuste de right para ficar perto da borda */
    transform: none !important;      /* removemos translateY para evitar deslocamento estranho */
    font-size: 1rem !important;      /* tamanho um pouco menor se quiser */
    z-index: 1000 !important;        /* garantir que fique acima */
  }
   }
   


.menu-toggle {
  display: none;
}

@media screen and (max-width: 1120px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0e0e0e;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    gap: 18px;
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    transition: transform 0.3s ease;
  }

  .menu-toggle:active {
    transform: scale(0.9);
  }
  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    left: 35px;
    top: 32%;
    transform: translateY(-50%);
  }

  .logo {
    position: relative;
    left: 0px;
    top: -24.5px;
    transform: none;
    margin: 0 auto;
  }
    .top-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 80px;
  }

  .nav-links a {
    font-size: 1rem;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  
  text-decoration: none;
}

  .nav-links.active {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0e0e0e;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    gap: 18px;
    z-index: 1000;
  }

  }

  @media screen and (max-width: 1120px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0e0e0e;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    gap: 18px;
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
.menu-toggle {
  display: block;
  font-size: 2rem;
  background: none;
  border: none;
  color: #eeefbd; /* mesmo tom do site */
  cursor: pointer;
  z-index: 1001;
  position: fixed; /* fixo como o logo */
  top: 71px;        /* mesmo nível do logo */
  left: 14px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .banner {
    height: 100vh;
    position: relative;
  }

  .banner .content {
    position: absolute;
    top: 25%; /* ✅ Sobe o conteúdo */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .banner .content h1 {
    font-size: 2.9rem !important;
    white-space: nowrap;
    text-align: center;
    margin: 0;
  }

  .banner .content p {
    font-size: 0.8rem !important;
    text-align: center;
    margin: 0;
    max-width: 90%;
    line-height: 1.4;
  }

  .book-now-button {
    font-size: 0.75rem;
    padding: 10px 24px;
    border-radius: 30px;
    border-width: 1.5px;
  }

  .button-container {
    text-align: center;
    margin-top: 5px;
  }
}
.banner .content h1 {
  margin-bottom: -7px; /* ou 2px */
}

.banner .content p {
  margin-bottom: -7px; /* reduzido também */
}

.button-container {
  margin-top: -7px; /* em vez de 15px ou 20px */
}

}

@media screen and (max-width: 1120px) {
  .menu-toggle {
    position: fixed;
    top: 49px;  /* mais próximo do topo */
    left: 14px;
    z-index: 1100; /* garantir sobreposição */
    transform: none; /* evitar translateY que pode complicar */
  }

  .nav-links {
    position: fixed; /* fixo para acompanhar o toggle */
    top: 60px;       /* logo abaixo do toggle */
    left: 0;
    width: 100%;
    background-color: #0e0e0e;
    padding: 24px 20px;
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 1050;
    overflow-y: auto;  /* permitir scroll interno se necessário */
    max-height: calc(100vh - 60px); /* evitar extrapolar viewport */
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }
.nav-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 110px;  /* posição abaixo da top bar */
  right: 20px; /* alinhado à direita */
  background: rgba(14, 14, 14, 0.95); /* um pouco mais escuro e opaco */
  border-radius: 12px; /* cantos mais arredondados */
  box-shadow: 0 12px 24px rgba(0,0,0,0.6); /* sombra mais suave e ampla */
  padding: 20px 30px; /* padding maior para espaçamento mais confortável */
  width: 220px; /* ligeiramente maior */
  z-index: 1000;
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(8px); /* efeito blur de fundo moderno */
}

.nav-links.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 700;
  color: #eeefbd;
  padding: 12px 0;
  border-bottom: 1px solid rgba(238, 239, 189, 0.25);
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 6px;
}

.nav-links a:last-child {
  border-bottom: none;
}

.nav-links a:hover {
  color: #fff;
  background-color: rgba(238, 239, 189, 0.15);
  padding-left: 12px;
  font-weight: 800;
}

.no-scroll {
  overflow: hidden;
  height: 100vh; /* previne que o conteúdo exceda a viewport */
}

}

/* Carousel base já tem flex display, etc. */

/* Ajuste para mobile: mostrar 1 card por vez */
@media (max-width: 600px) {
  .boat-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .boat-carousel .taxi-card {
    flex: 0 0 100%;
    max-width: 80%;
    scroll-snap-align: start;
    margin-right: 20px; /* espaço entre cards */
  }

  /* Esconder setas para mobile se quiser, ou deixar */
  .carousel-btn {
    display: flex; /* deixa visível */
    position: fixed; /* fixa para ficar no canto */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(238, 239, 189, 0.3);
    color: #1f1f1f;
  }

  .carousel-btn.left {
    left: 10px;
  }

  .carousel-btn.right {
    right: 10px;
  }
}

@media (max-width: 600px) {
  .carousel-wrapper {
    position: relative;
    padding: 0 60px; /* espaço para as setas */
  }

  .carousel-viewport {
    overflow: hidden;
  }

  .boat-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }

  .boat-carousel .taxi-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    margin: 0 15px; /* margem lateral para separar os cards */
    border-radius: 20px;
    font-size: 0.9rem;
    min-height: 440px; /* aumenta a altura do card */
  }

  .boat-carousel .taxi-card-body h4 {
    font-size: 1.1rem; /* título menor */
    white-space: normal; /* permite quebra de linha */
  }

  .boat-carousel .taxi-card-body p {
    font-size: 0.85rem; /* texto menor */
  }

  .boat-carousel .taxi-price .price-value {
    font-size: 1.3rem; /* preço menor */
  }
.carousel-btn {
  position: absolute !important;  /* sobrescreve fixed para absolute */
  top: 50% !important;
  transform: translateY(-50%) !important;
    background-color: rgba(238, 239, 189, 0.4);
    color: #1f1f1f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
  }

.carousel-btn.left {
  left: 10px !important;
}

.carousel-btn.right {
  right: 10px !important;
}


  .boat-carousel .taxi-card img {
    height: 240px; /* aumenta a altura da imagem */
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 768px) {
  #boat-tours .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem !important; /* maior e mais impactante */
    text-align: center;
    margin: 0 0 15px 0;
    white-space: nowrap; /* evita quebra de linha */
    color: #eeefbd;
  }

  #boat-tours .section-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem !important;
    max-width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
    color: #eeeeee;
  }
}
@media (max-width: 768px) {
  #boat-tours {
    padding-top: 160px; /* reduz um pouco o espaçamento superior */
    transform: translateY(-60px); /* move todo o bloco para cima */
  }
}

@media (max-width: 768px) {
  #taxi-boat-section {
    position: relative;       /* para conter as setas absolutas */
    overflow: visible;        /* evitar corte das setas */
    padding-top: 150px;
    transform: translateY(-60px);
    text-align: center;
  }

  #taxi-boat-section .section-title {
    font-size: 2rem !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-align: center;
    margin: 0 0 15px 0;
    white-space: nowrap;
    color: #eeefbd;
  }

  #taxi-boat-section .section-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem !important;
    max-width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
    color: #eeeeee;
  }

  /* Container dos cards: largura limitada e centralizado */
  #taxi-boat-section .taxi-grid {
    position: relative;
    overflow: visible !important; /* importante para as setas não serem cortadas */
    width: 100%;
    max-width: 280px; /* reduzido para ficar mais compacto */
    margin: 0 auto;
    display: flex;
    justify-content: center; /* centra horizontalmente os cards */
  }

  /* Cards ocultos por padrão, exceto o ativo */
  #taxi-boat-section .taxi-card {
    display: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    min-height: 300px; /* altura reduzida */
    font-size: 0.85rem; /* texto um pouco menor */
    transition: transform 0.5s ease-in-out;
  }

  #taxi-boat-section .taxi-card.active {
    display: block;
  }

  /* Setas ocultas no desktop */
  #taxi-boat-section .carousel-btn {
    display: none;
  }
}

/* Setas visíveis no mobile menor que 600px, idênticas ao Boat Tours */
@media (max-width: 600px) {
  #taxi-boat-section .carousel-btn {
position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
 background-color: rgba(238, 239, 189, 0.4);
    color: #1f1f1f;
    font-size: 2.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    padding: 0;
    transition: all 0.3s ease;
  }

  /* Mesma distância lateral das setas do boat tours (mais próximas) */
  #taxi-boat-section .carousel-btn.left {
    left: 20px !important; /* distância igual da borda */
  }

  #taxi-boat-section .carousel-btn.right {
    right: 20px !important; /* distância igual da borda */
  }

  @media (max-width: 600px) {
  #taxi-boat-section .carousel-btn {
    top: auto !important;              /* desativa o centro */
    bottom: 40% !important;            /* aproxima do fundo do card */
    transform: none !important;        /* remove centralização automática */
  }
}

  #taxi-boat-section .carousel-btn:hover {
    background-color: #eeefbd;
    color: #1f1f1f;
  }
  #taxi-boat-section .carousel-btn svg,
  #taxi-boat-section .carousel-btn .arrow-icon {
    stroke: #eeefbd;
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: stroke 0.3s ease;
  }
  #taxi-boat-section .carousel-btn:hover svg,
  #taxi-boat-section .carousel-btn:hover .arrow-icon {
    stroke: #1f1f1f;
  }
}


#about {
  margin-top: 60px; /* ajusta conforme necessário */
  position: relative;
  z-index: 1;
}
body {
  overflow-x: hidden;
    overflow-y: hidden;
}
@media (max-width: 768px) {
  #about {
    flex-direction: column;
    padding: 60px 20px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .left-grid {
    align-items: center;
    text-align: center;
    transform: none;
  }

  .left-grid h3.section-sub {
    font-size: 1.3rem;
  }

  .left-grid h2.section-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .left-grid p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .action-btn {
    display: none; /* remove o botão no mobile */
  }

  .right-grid {
    display: none; /* remove a imagem no mobile */
  }
}

@media (max-width: 768px) {
  .left-grid h2.section-title {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .left-grid h3.section-sub {
    font-size: 1.7rem !important;
    color: #eeefbd !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .left-grid h3.section-sub {
    font-size: 1.7rem !important;
    color: #eeefbd !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    margin-bottom: 5px !important; /* ← reduzido */
  }

  .left-grid p {
    margin-top: 5px !important;  /* ← aproxima do título */
  }
}
@media (max-width: 768px) {
  .right-grid {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
  }

  .right-grid img {
    width: 50%;
    max-width: 320px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 768px) {
  #about {
    padding-top: 10px !important; /* ↓ estava provavelmente com muito */
  }
}
@media (max-width: 768px) {
  .section-box {
    margin: 0 auto !important;      /* centra horizontalmente */
    padding: 30px 20px;
    max-width: 340px;               /* opcional, para controlar largura */
    display: flex;
    flex-direction: column;
    align-items: center;            /* garante conteúdo centrado dentro */
  }

}

@media (max-width: 768px) {
  .contact-form input,
  .contact-form textarea {
    padding: 10px 16px !important;     /* menos espaçamento */
    font-size: 0.9rem !important;      /* fonte mais fina */
    border-radius: 12px !important;    /* cantos mais suaves */
  }

  .contact-form textarea {
    min-height: 100px;                 /* reduz altura do campo de mensagem */
  }

  .contact-form button {
    font-size: 0.85rem !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    max-width: 200px !important;
  }
}

.legal-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
  background-color: #0d0d0d;
  padding: 20px 10px;
  margin-top: 40px;
}

.legal-disclaimer {
  margin-top: 30px;
}

#contact-us {
  padding-top: 20px !important; /* ou outro valor */
}

@media (max-width: 768px) {
.contact-us {
  padding-top: 50px !important; /* ou outro valor */
}
}

@media (max-width: 768px) {
  .legal-disclaimer {
    font-size: 0.45rem !important;
    line-height: 1.4;
    max-width: 90%;
    margin: 20px auto 40px;
    color: #bbbbbb;
  }
}

@media (max-width: 768px) {
  #contact-us .section-title {
    font-size: 2rem !important;
  }
}
.contact-form input,
.contact-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 70px !important;
}


@media (max-width: 768px) {
  .logo {
    position: fixed !important;
    top: 32.5px;
    left: 50%;           /* posiciona no meio da largura */
    transform: translateX(-50%); /* ajusta pra que o centro do logo fique no meio */
    z-index: 1000 !important;
  }
}
.floating-lang-switcher {
  position: fixed !important;
  z-index: 1000 !important;
}



@media (max-width: 768px) {
  .boat-carousel .taxi-card-body p {
    font-size: 0.75rem !important;
    line-height: 1.3;
  }
}
@media (max-width: 600px) {
  .boat-carousel .taxi-card {
    min-height: 360px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* garante que o botão fique no fundo */
    padding-bottom: 10px;
  }

  .boat-carousel .taxi-card img {
    height: 160px !important; /* imagem menor */
    object-fit: cover;
  }

  .boat-carousel .taxi-card-body {
    padding: 8px 10px !important;
    flex-grow: 1; /* ocupa o espaço restante */
  }

  .boat-carousel .taxi-card-body h4 {
    font-size: 1rem !important;
    margin: 5px 0;
  }

  .boat-carousel .taxi-card-body p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin: 4px 0 0;
  }

  .boat-carousel .taxi-price .price-value {
    font-size: 1.2rem !important;
  }

  .boat-carousel .taxi-card-footer {
    padding: 0 10px 10px;
    margin-top: auto; /* força o botão para o final */
  }

  .boat-carousel .taxi-book-btn {
    font-size: 0.75rem !important;
    padding: 8px 20px;
  }
}
@media (max-width: 600px) {
  /* Só define largura e altura idênticas aos Boat Tours */
  #taxi-boat-section .taxi-card {
    width: 100%;         /* cada card enche a tela */
    max-width: 100%;     /* sem ultrapassar */
    height: 140px;       /* mesma altura do Boat Tours mobile */
  }

  /* Ajusta a imagem interna */
  #taxi-boat-section .taxi-card img {
    height: 200px;       /* mesma altura de imagem do Boat Tours */
    object-fit: cover;
  }
  
}

@media (max-width: 600px) {
  #taxi-boat-section .taxi-card-body h4 {
    font-size: 1.1rem;
  }
  #taxi-boat-section .taxi-card-body p {
    font-size: 0.65rem;
  }
    #taxi-boat-section .taxi-price .price-value {
    font-size: 1.3rem; /* preço menor */
  }
}
@media (max-width: 600px) {
  #taxi-boat-section .taxi-book-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  #taxi-boat-section .taxi-card {
    max-width: 240px !important;
    min-height: 400px !important;
  }
}
@media (max-width: 600px) {
  #taxi-boat-section .taxi-card img {
    height: 160px;      /* ajuste específico para celular */
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  #taxi-boat-section .section-title {
    font-size: 1.8rem !important;  /* copia o mobile de #boat-tours */
    font-weight: 800;
    white-space: nowrap;
  }
  #taxi-boat-section .section-description {
    font-size: 0.8rem !important;  /* copia o mobile de #boat-tours */
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto 30px;
  }

}
@media (max-width: 600px) {
  /* força o font-size menor no botão Taxi Boat */
  #taxi-boat-section .taxi-book-btn {
    font-size: 0.75rem !important;   /* arredonda para ~12px */
    padding: 8px 20px !important;    /* ajusta o padding se quiseres deixar mais compacto */
  }
}
@media (max-width: 600px) {
  #taxi-boat-section .taxi-card-body .taxi-book-btn {
    margin-top: 16px !important;
  }
}
@media (max-width: 600px) {


  /* 2) Empurra o footer (botão) para o fundo do cartão */
  #taxi-boat-section .taxi-card-footer {
    margin-top: auto !important;    /* joga todo o espaço sobrando para cima */
    padding-bottom: 100px !important;/* ajusta o acolchoamento inferior */
  }
}
/* ===========================
   Sobre Nós – Estilos Mobile
   =========================== */

/* Regras para ecrãs até 768px */
@media (max-width: 768px) {
  /* Container principal */
  #about {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    padding-top: 10px !important;
  }

  /* Passa o grid para 1 coluna */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  /* Caixa interior centralizada */
  .section-box {
    margin: 0 auto !important;
    padding: 30px 20px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Subtítulo (“section-sub”) */
  .left-grid h3.section-sub,
  #about .section-box .section-sub {
    display: block !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.7rem !important;
    font-weight: 800 !important;
    color: #eeefbd !important;
    text-transform: uppercase !important;
    margin-bottom: 5px !important;
  }

  /* Título (“section-title”) */
  .left-grid h2.section-title,
  #about .section-box .section-title {
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #eeefbd !important;
    margin-bottom: 15px !important;
  }

  /* Texto de parágrafo */
  .left-grid p,
  #about .section-box p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-top: 5px !important;
    margin-bottom: 0 !important;
  }

  /* Esconde o botão de ação */
  .action-btn {
    display: none;
  }

  /* Mostra a imagem em baixo */
  .right-grid {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
  }
  .right-grid img {
    width: 50%;
    max-width: 320px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
}

/* Ajustes adicionais para ecrãs até 600px */
@media (max-width: 600px) {
  /* Texto e margens ligeiramente menores */
  #about .section-box p {
    font-size: 0.7rem !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
  }
  #about .section-box .section-sub {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }
  #about .section-box .section-title {
    font-size: 2rem !important;
    margin-bottom: 12px !important;
  }
}
@media (max-width: 768px) {
  /* Sobre Nós – mesmo font-family do “SAILING VIBES” no banner */
  #about .left-grid h3.section-sub,
  #about .left-grid h2.section-title {
    font-family: 'Montserrat', sans-serif !important;
  }
}
/* Esconde o “SAILING VIBES” (h2.section-title) apenas em mobile */
@media (max-width: 768px) {
  /* Seleciona o título “SAILING VIBES” dentro da secção About Us */
  #about .left-grid h2.section-title {
    display: none !important;
  }
}
/* Aproxima o texto do parágrafo ao título em mobile */
@media (max-width: 768px) {
  /* Reduz o espaçamento abaixo do subtítulo */
  #about .left-grid h3.section-sub,
  #about .section-box .section-sub {
    margin-bottom: 2px !important;
  }

  /* Reduz o espaçamento acima do parágrafo */
  #about .left-grid p,
  #about .section-box p {
    margin-top: 4px !important;
  }
}
/* Move a imagem para cima, aproximando-a do título em mobile */
@media (max-width: 768px) {
  /* Reduz o espaçamento acima do container da imagem */
  #about .right-grid {
    margin-top: 5px !important;
  }

  /* Ajusta a própria imagem para subir ainda mais */
  #about .right-grid img {
    margin-top: -10px !important;
    /* ou usar transform, se preferir:
    transform: translateY(-10px) !important;
    */
  }
}
@media (max-width: 768px) {
  /* Só sobe o conteúdo dentro do About Us, sem tocar no fluxo das outras secções */
  #about .section-box {
    /* Ajusta este valor até ficar onde queres */
    transform: translateY(10px) !important;
    /* ou, se preferires, usar margin instead:
    margin-top: -100px !important;
    */
  }
}
@media (max-width: 768px) {
  /* Centrar e reduzir ligeiramente a imagem no About Us */
  #about .right-grid {
    display: flex !important;
    justify-content: center !important;
  }

  #about .right-grid img {
    width: 60% !important;       /* ajusta este valor para o tamanho desejado */
    max-width: 240px !important; /* limite máximo de largura */
    margin: 0 auto !important;   /* centra horizontalmente */
    height: auto !important;     /* mantém proporção */
  }
}
@media (max-width: 768px) {
  /* Faz a content-grid comportar-se como uma coluna centrada */
  #about .content-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 20px !important;
  }

  /* Remove o padding que empurrava a imagem para a esquerda */
  #about .right-grid {
    padding: 0 !important;
    margin-top: 20px !important;
  }

  /* Já não é preciso mexer muito na imagem, mas refina o tamanho se quiser */
  #about .right-grid img {
    width: 60% !important;       /* ajusta este valor se quiser maior/menor */
    max-width: 240px !important;
    margin: 0 auto !important;
    height: auto !important;
  }
}
@media (max-width: 768px) {
  /* Sobe a imagem About Us mais um pouco */
  #about .right-grid img {
    /* opção 1: transform */
    transform: translateY(-25px) !important;
    /* opção 2: margin negativa
    margin-top: -15px !important;
    */
  }
}
@media (max-width: 768px) {
  /* Estica os campos full-width e mantêm-nos finos */
  #contact-us .contact-form input,
  #contact-us .contact-form textarea {
    width: 100% !important;           /* ocupa toda a largura possível */
    margin: 0 !important;             /* sem margens laterais */
    padding: 6px 14px !important;     /* menos padding vertical e horizontal */
    font-size: 0.85rem !important;
    min-height: 32px !important;
    border-width: 1px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  /* Ajusta só o textarea para ficar compactado verticalmente */
  #contact-us .contact-form textarea {
    min-height: 80px !important;
  }
}
@media (max-width: 768px) {
  /* Deixa o textarea de mensagem mais estreito verticalmente */
  #contact-us .contact-form textarea {
    min-height: 60px !important;   /* reduz a altura mínima */
    max-height: 120px !important;  /* evita ficar gigante */
    height: auto !important;       /* permite conteúdo expandir até o max-height */
    padding: 6px 14px !important;  /* mantém o padding compacto */
  }
}
@media (max-width: 768px) {
  /* Texto de mensagem mais compacto */
  #contact-us .contact-form textarea {
    /* Define uma altura fixa em vez de min/max */
    height: 80px !important;      /* ajusta para o valor que preferires */
    max-height: 80px !important;  /* impede expansão além disso */
    padding: 6px 14px !important; /* mantém o padding reduzido */
    box-sizing: border-box !important;
    overflow-y: auto !important;  /* scroll interno se necessário */
  }
}
@media (max-width: 768px) {
  /* Ajusta o tamanho da letra nos inputs e textarea */
  #contact-us .contact-form input,
  #contact-us .contact-form textarea {
    font-size: 0.7rem !important;  /* define o tamanho da fonte */
    line-height: 1.3 !important;   /* ajusta a altura da linha para melhor leitura */
  }

  /* Se quiseres um tamanho ainda menor no textarea especificamente */
  #contact-us .contact-form textarea {
    font-size: 0.85rem !important;
  }
}
@media (max-width: 768px) {
  /* Inputs e textarea com fonte mais pequena */
  #contact-us .contact-form input,
  #contact-us .contact-form textarea {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }

  /* Footer de reservas mais afastado e fonte reduzida */
  .legal-footer {
    margin-top: 80px !important;
    font-size: 0.6rem !important;
  }
}
@media (max-width: 768px) {
  /* Encolhe os textos do footer de reservas */
  .contact-footer h4,
  .contact-footer p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }

  /* Aumenta o espaço antes do footer */
  .contact-footer {
    margin-top: 80px !important;
  }
}
@media (max-width: 768px) {
  /* Título “CONTACTO” mais pequeno em telemóvel */
  #contact-us .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.4rem !important;
  }

  /* Subtítulo “Embarca connosco.” mais pequeno em telemóvel */
  #contact-us .section-sub {
    font-size: 0.8rem !important;
    margin-bottom: 1.5rem !important;
  }
}
/* Esconde o input date em todas as resoluções */
#contact-us .contact-form input[type="date"] {
  display: none;
}
@media (max-width: 768px) {
  /* reduz o espaçamento abaixo do título */
  #contact-us .section-title {
    margin-bottom: 4px !important;
  }
  /* remove a margem extra em cima do subtítulo */
  #contact-us .section-sub {
    margin-top: 0 !important;
    margin-bottom: 12px !important; /* ajusta o espaço abaixo do subtítulo, se quiseres */
  }
}
@media (max-width: 768px) {
  /* Empurra toda a secção de Contacto para baixo no mobile */
  #contact-us {
    margin-top: 100px !important;  /* ou padding-top, conforme preferires */
  }
}
#contact-us {
  margin-top: 10px;
  padding-top: 0px;  /* valor a afinar */
}

@media (min-width: 769px) {
  /* Inputs e textarea menos largos no desktop */
  #contact-us .contact-form input,
  #contact-us .contact-form textarea {
    max-width: 400px;    /* largura máxima de 400px */
    width: 60%;          /* ocupa 60% da largura do container */
    margin: 0 auto;      /* centraliza */
  }
}
/* sobe os cards no desktop */
#boat-tours .carousel-wrapper {
  /* diminui o padding superior ou mesmo acrescenta margin negativa */
  padding-top: 20px;    /* antes era 40px, ajusta a gosto */
  margin-top: -30px;    /* puxa todo o carrossel 20px para cima */
}

#boat-tours .section-title,
#boat-tours .section-sub,
#taxi-boat-section .section-title,
#taxi-boat-section .section-sub {
  position: relative;
  z-index: 1;
}

#boat-tours .section-description,
#taxi-boat-section .section-description {
  position: relative;
  z-index: 1;
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}



/* Garante que o container de cards do Taxi Boat não receba nenhum transform */
#taxi-boat-section .taxi-grid {
  transform: none !important;
}
#about .left-grid .action-btn {
  transform: translateY(30px);  /* idem, desloca 20px para baixo */
}
/* ─── Remove underline e outline do action-btn ─── */
a.action-btn,
a.action-btn:visited {
  text-decoration: none !important;
}

a.action-btn:focus,
a.action-btn:focus-visible,
a.action-btn:active {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .contact-form input,
  .contact-form textarea {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto;
  }
}
/* Estilo da mensagem de sucesso após envio do formulário */
.thank-you-message {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px); /* 💡 Aumentado */
  -webkit-backdrop-filter: blur(12px); /* Para Safari */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #eeefbd;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 0.6s ease-in-out;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.thank-you-message h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #eeefbd;
}

.thank-you-message p {
  font-size: 1rem;
  color: #dddddd;
  line-height: 1.5;
}

/* Animação suave ao aparecer */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#thank-you-message {
  display: none;
}
