/* =========================
   style.css (com gallery)
   Substitua o arquivo atual por este
   ========================= */

/* Geral e Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Menu fixo */
header {
  background: #006064;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 50px; }
nav ul { list-style: none; }
nav li { display: inline-block; margin: 0 15px; }
nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
nav a:hover { color: #ffeb3b; }

/* Hero / capa (index) */
.hero {
  background-image: url('DJI_1457.JPG');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.hero-content {
  background: rgba(0,0,0,0.4);
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
}
.hero h1 { font-size: 48px; margin-bottom: 20px; text-shadow: 1px 1px 4px rgba(0,0,0,0.7); }
.hero p { font-size: 20px; margin-bottom: 30px; color: #f5f5f5; }
.btn-cta {
  background-color: #ff9800;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.btn-cta:hover {
  background-color: #f57c00;
  transform: scale(1.05);
}

/* Seções */
section {
  padding: 100px 0;
  text-align: center;
  background: rgba(0, 200, 150, 0.05); /* verde água claro (padrão) */
}
section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #006064;
  position: relative;
}
section h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #ff9800;
  display: block;
  margin: 10px auto 0;
}

/* Sobre */
#sobre p { max-width: 800px; margin: 20px auto; font-size: 18px; }

/* Cards gerais (hospedagens e lista) */
.grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.card-hospedagem, .card-servico {
  background: white;
  padding: 20px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease;
}
.card-hospedagem img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.card-servico h3 { font-size: 20px; margin-bottom: 10px; }
.card-servico p { font-size: 16px; }
.card-hospedagem:hover, .card-servico:hover {
  transform: translateY(-10px);
}

/* Contato */
#contato p { margin: 10px 0; font-size: 18px; }
#contato .contatos-list { display:inline-block; text-align:left; margin-top:15px; }
#contato .contatos-list p { margin:8px 0; font-size:18px; }

/* Rodapé */
footer {
  background: #006064;
  color: white;
  padding: 40px 20px;
  font-size: 16px;
}

/* Responsivo */
@media (max-width: 768px) {
  .grid { flex-direction: column; }
  nav li { display: block; margin: 10px 0; }
  .hero-content { padding: 20px; }
}

/* ===========================
   PASSEIOS: degradê + cards
   =========================== */
#passeios {
  background: linear-gradient(135deg, #00695c, #004d40); /* degradê verde escuro */
  color: #fff;
}
#passeios h2, #passeios p { color: #fff; }

/* cards para sessão passeios (glass look) */
#passeios .card-servico {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

/* ===========================
   ESTILOS PARA PÁGINAS INTERNAS (passeios/*)
   =========================== */

.passeio-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.passeio-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.passeio-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 40px;
  text-align: center;
}
.passeio-hero h1 { font-size: 40px; margin-bottom: 10px; }
.passeio-hero p { font-size: 18px; max-width: 900px; margin: 0 auto; }

/* Galeria (grid de miniaturas) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform .2s ease;
}
.gallery img:hover { transform: translateY(-6px); }

/* Modal / lightbox simples */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.show { display: flex; }
.modal img { max-width: 95%; max-height: 85%; border-radius: 6px; }

/* botão fechar do modal */
.modal .close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/* botão voltar / link */
.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #006064;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}

/* pequenos ajustes em mobile para galeria */
@media (max-width: 480px) {
  .passeio-hero { height: 40vh; }
  .gallery img { height: 110px; }
}
.contato {
  background-color: #145c44; /* verde escuro */
  color: #fff;
  padding: 50px 20px;
}

.contato .container {
  max-width: 1100px;
  margin: auto;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.contato h3 {
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid #1dd1a1;
  padding-bottom: 5px;
}

.contato p, .contato a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.contato a:hover {
  color: #1dd1a1;
}

.contato ul {
  list-style: none;
  padding: 0;
}

.contato ul li {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #1dd1a1;
  padding: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons img:hover {
  background-color: #10ac84;
  transform: scale(1.1);
}

footer {
  background-color: #0e3d2e;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}
.passeios-section {
  background-color: #d8f7f1;
  padding: 60px 0;
}

.passeios-titulo {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #004d40;
}

.passeios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.passeio-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passeio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.passeio-card h3 {
  margin: 0;
  padding: 15px;
  font-size: 18px;
  background: rgba(0, 77, 64, 0.85);
  color: white;
  text-align: center;
}

.passeio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.passeio-card:hover img {
  transform: scale(1.05);
}

.card-hospedagem {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 320px; /* aumentei um pouco */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hospedagem img {
  width: 100%;
  height: 220px; /* altura fixa para padronizar */
  object-fit: cover; /* recorta mantendo proporção */
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-hospedagem:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* HERO CARROSSEL */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide.active {
  opacity: 1;
}

/* Conteúdo em cima do carrossel */
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-whatsapp {
  display: inline-block;
  padding: 12px 24px;
  background: #f9a825;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background: #ff8f00;
}
/* Transfer Section */
#transfer {
  padding: 60px 20px;
  background: #f4fdfd;
  text-align: center;
}

#transfer h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004d40;
  position: relative;
}

#transfer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.card-transfer {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease;
}

.card-transfer:hover {
  transform: translateY(-5px);
}

.card-transfer img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card-transfer h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00695c;
}

.card-transfer p {
  font-size: 0.95rem;
  color: #555;
}
/* ========== HEADER E MENU RESPONSIVO ========== */
header {
  background: #00695c;
  color: white;
  padding: 10px 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

/* Esconde botão no desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Menu Desktop */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Menu Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #004d40;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  nav ul li a {
    font-size: 18px;
  }
}

/* Garante que o conteúdo não fique colado no topo */
body {
  margin: 0;
  padding: 0;
}

header {
  background: #00695c; /* verde da sua identidade */
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Centraliza os itens do menu */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px; /* ajuste conforme sua logo */
}

/* Espaço para o conteúdo não colar no header */
main {
  margin-top: 100px;
}



