/    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      height: 100%;
      font-family: Arial, sans-serif;
      color: #fff;
    }

    /* Container geral */
    .header-slider {
      position: relative;
      height: 500px; /* altura do slider */
      overflow: hidden;
    }

    /* Slides */
    .slides {
      position: absolute;
      width: 100%;
      height: 100%;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .slide.active {
      opacity: 1;
      z-index: 1;
    }

/* Menu fixo transparente com blur */
header.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  display: flex;
  align-items: center;
  padding: 10px 30px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

header.topnav.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Logo à esquerda */
header.topnav .logo {
  height: 50px;
  margin-right: 30px;
}

/* Menu centralizado */
header.topnav nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

header.topnav nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

header.topnav nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

header.topnav nav ul li a:hover {
  background-color: #ff2e2e;
  color: #fff;
}

/* Dropdown moderno */
.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-content {
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(30, 30, 30, 0.95);
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.dropdown-content li a {
  padding: 12px 18px;
  text-align: left;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.dropdown-content li a:hover {
  background: rgba(255, 46, 46, 0.85);
}

/* Mostrar dropdown */
.dropdown.show .dropdown-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Pequena seta para o dropdown */
.dropdown .dropbtn::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown.show .dropbtn::after {
  transform: rotate(180deg);
}







    .logo {
      height: 50px;
      margin-right: 30px;
      cursor: pointer;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      padding: 8px 12px;
      border-radius: 6px;
      transition: background-color 0.3s ease, color 0.3s ease;
      display: block;
      white-space: nowrap;
    }

    nav ul li a:hover,
    nav ul li a:focus {
      background-color: #ff2e2e;
      color: #fff;
    }

    /* Espaço para o conteúdo abaixo do menu fixo */
    main {
      padding-top: 70px; /* mesma altura do menu fixo */
    }

/* SLIDER HERO */
.header-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: 75px; /* espaço para o menu fixo */
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* SEÇÃO SOBRE NÓS */
.sobre-nos {
  background: #fff;
  color: #333;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.sobre-nos .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.sobre-nos .texto {
  flex: 1 1 600px;
}

.sobre-nos .texto h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.sobre-nos .texto h2 span {
  font-weight: bold;
  color: #222;
}

.sobre-nos .texto h2 strong {
  color: #e3262a;
}

.sobre-nos .linha {
  width: 60px;
  height: 3px;
  background: #e3262a;
  margin: 10px 0 25px 0;
}

.sobre-nos .texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.sobre-nos .imagem {
  flex: 1 1 500px;
  text-align: center;
}

.sobre-nos .imagem img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.3));
}

/* Responsivo */
@media (max-width: 768px) {
  .topnav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .sobre-nos .container {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 10px;
  }
  /* Layout base da página */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Wrapper engloba todo o conteúdo da página */
.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Garante que o footer vá para o fim da página */
footer {
  margin-top: auto;
}
/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  height: 30px;
  width: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}






.header-slider {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .header-slider {
    height: 200px;
  }












@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
    position: fixed;      /* fixa na tela */
    top: 15px;
    left: 15px;           /* você pode ajustar para direita se quiser */
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;        /* fica no topo */
  }

.menu-toggle span {
  background-color: white; /* deixa as barrinhas brancas */
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}


  nav ul {
    display: none !important;
  }

  nav ul.active {
    display: flex !important;
    flex-direction: column;
  }
  
  
  
  
  
  
  
  
  
  .fundo-mar {
  width: 100%;
  height: 300px;
  background-image: url('/img/abc-onda-lancha.jpg'); /* ajuste o caminho se necessário */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

/* Animação flutuante */
@keyframes flutuar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Aplicar animação de flutuação nas imagens das embarcações */
.imagem-barco img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  margin-bottom: -40px;
  position: relative;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  animation: flutuar 4s ease-in-out infinite;
}


}
