* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #faf6f1;
    color: #3e2f20;
    line-height: 1.6;
}

header {
    background: #6b4226;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8em;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    background: url('../images/foto1.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    background-attachment: fixed;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.btn {
    background: #e1b382;
    color: #3e2f20;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #c89666;
}

.galeria {
    padding: 60px 20px;
    text-align: center;
}

.galeria h2 {
    margin-bottom: 30px;
    font-size: 2em;
}

.galeria .imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.galeria img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.servicios {
    padding: 60px 20px;
    background: #f3e5d8;
}

.servicios h2 {
    text-align: center;
    margin-bottom: 30px;
}

.servicios ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.servicios li {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    background: #6b4226;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer .redes {
    margin: 20px 0;
}

footer .redes a {
    color: white;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .redes a:hover {
    color: #e1b382;
}

.cabin {
    margin-bottom: 50px;
    text-align: center;
}

.cabin h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #6b4226;
}

.cabin p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Galería de imágenes dentro de cada cabaña */
.cabin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    justify-items: center;
}

.cabin-gallery img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.cabin-gallery img:hover {
    transform: scale(1.05);
}


.hero {
    background: url('../images/volcan-choshuenco.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45); /* oscurece */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

/* Cards para cada cabaña */
.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

/* Galería de imágenes dentro de cada cabaña */
.cabin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    justify-items: center;
    margin-top: 20px;
}

.cabin-gallery img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.cabin-gallery img:hover {
    transform: scale(1.05);
}

/* Mapa */
.mapa {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

/* --- TESTIMONIOS --- */
.testimonios {
    padding: 60px 20px;
    background: #f3e5d8;
    text-align: center;
}

.testimonios h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #6b4226;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonio {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    font-style: italic;
    transition: transform 0.3s;
}

.testimonio:hover {
    transform: translateY(-5px);
}

.testimonio span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #6b4226;
    font-style: normal;
}

/* --- BOTÓN WHATSAPP --- */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    font-size: 2em;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #20b357;
}
/* Ajustes para pantallas chicas (celulares) */
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    gap: 10px;
  }

  header ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero {
    padding: 100px 20px;
    background-attachment: scroll; /* evita saltos raros en móviles */
  }

  .hero h2 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .cabin-gallery {
    grid-template-columns: 1fr; /* imágenes una debajo de otra */
  }

  .testimonios-grid {
    grid-template-columns: 1fr; /* testimonios en columna */
  }
}

/* --- MENÚ HAMBURGUESA --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8em;
  color: white;
  cursor: pointer;
}

/* Estilos móviles */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #6b4226;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
/* --- ACTIVIDADES (carrusel) --- */
.actividades {
  padding: 60px 20px;
  background: #faf6f1;
  text-align: center;
}

.actividades h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #6b4226;
}

/* Contenedor horizontal tipo carrusel */
.actividades-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.actividad {
  flex: 0 0 300px; /* ancho fijo de cada tarjeta */
  background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
  scroll-snap-align: start;
}

.actividad:hover {
  transform: translateY(-5px);
}

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

.actividad h3 {
  margin: 15px 0 10px;
  color: #6b4226;
}

.actividad p {
  padding: 0 15px 20px;
  font-size: 0.95em;
}

/* En PC que se vea centrado */
@media (min-width: 900px) {
  .actividades-carousel {
    justify-content: center;
    overflow-x: visible; /* sin scroll en PC */
    flex-wrap: wrap;
  }
  .actividad {
    flex: 0 0 280px; /* más compacto en escritorio */
  }
}
.actividad p {
  padding: 0 15px;
  font-size: 0.95em;
  margin-bottom: 10px;
}

.distancia {
  display: block;
  padding: 0 15px 15px;
  font-weight: bold;
  color: #6b4226;
  font-size: 0.9em;
}
.actividad {
  display: flex;
  flex-direction: column; /* fuerza el orden vertical */
  justify-content: flex-start;
  text-align: left; /* texto alineado a la izquierda */
}

.actividad h3 {
  margin: 15px 15px 10px;
}

.actividad p {
  padding: 0 15px;
  margin-bottom: 10px;
  font-size: 0.95em;
  line-height: 1.4;
  color: #333; /* asegura contraste con el fondo */
}

.distancia {
  display: block;
  padding: 0 15px 15px;
  font-weight: bold;
  color: #6b4226;
  font-size: 0.9em;
}
/* Ajustes generales para actividades */
.actividades-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.actividad {
  flex: 0 0 85%; /* ocupa casi toda la pantalla en móvil */
  max-width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
  scroll-snap-align: center;
}

.actividad img {
  width: 100%;
  height: 160px; /* más baja para celulares */
  object-fit: cover;
}

.actividad h3 {
  margin: 12px 15px 8px;
  font-size: 1.2em;
}

.actividad p {
  padding: 0 15px;
  margin-bottom: 8px;
  font-size: 0.95em;
  line-height: 1.4;
  color: #333;
}

.distancia {
  display: block;
  padding: 0 15px 15px;
  font-weight: bold;
  color: #6b4226;
  font-size: 0.9em;
}

/* --- Ajustes para PC --- */
@media (min-width: 900px) {
  .actividades-carousel {
    justify-content: center;
    overflow-x: visible; /* quita scroll horizontal */
    flex-wrap: wrap;
  }
  .actividad {
    flex: 0 0 280px; /* tarjetas más chicas en PC */
  }
  .actividad img {
    height: 180px;
  }
}
.galeria img {
  width: 100%;          /* que ocupen todo el ancho de su contenedor */
  height: 250px;        /* ajusta el alto a un tamaño fijo */
  object-fit: cover;    /* recorta la imagen para que no se deforme */
  border-radius: 12px;  /* esquinas redondeadas (opcional) */
}
/* 📱 Ajuste solo para celulares */
@media (max-width: 768px) {
  .cabanas-fotos {
    grid-template-columns: 1fr 1fr; /* 2 fotos por fila */
    gap: 10px;
  }

  .cabanas-fotos img {
    height: 160px;      /* más bajitas para que no ocupen toda la pantalla */
    object-fit: cover;  /* recorte elegante */
  }
}

@media (max-width: 480px) {
  .cabanas-fotos {
    grid-template-columns: 1fr; /* 1 sola foto por fila en celulares muy pequeños */
  }

  .cabanas-fotos img {
    height: 180px;
  }
}
/* 📱 Para pantallas hasta 768px */
@media (max-width: 768px) {
  .cabanas-fotos {
    display: grid; /* 👈 Aseguramos que sea grid también en móvil */
    grid-template-columns: 1fr 1fr; /* 2 columnas */
    gap: 10px;
  }

  .cabanas-fotos img {
    width: 100%;
    height: 160px;
    object-fit: cover; /* recorte elegante sin deformar */
    border-radius: 10px;
  }
}

/* 📱 Para pantallas muy pequeñas (hasta 480px) */
@media (max-width: 480px) {
  .cabanas-fotos {
    grid-template-columns: 1fr; /* 1 sola columna */
  }

  .cabanas-fotos img {
    height: 180px;
  }
}
/* 📱 Ajuste para pantallas medianas (celulares grandes y tablets) */
@media (max-width: 768px) {
  .cabanas-fotos {
    display: grid;              /* forzamos grid en móvil */
    grid-template-columns: 1fr 1fr; /* 2 fotos por fila */
    gap: 10px;
  }

  .cabanas-fotos img {
    height: 160px;
    object-fit: cover;
  }
}

/* 📱 Ajuste para pantallas pequeñas (celulares chicos) */
@media (max-width: 480px) {
  .cabanas-fotos {
    grid-template-columns: 1fr; /* 1 foto por fila */
  }

  .cabanas-fotos img {
    height: 180px;
  }
}
/* ✅ Galería base (PC y pantallas grandes) */
.cabin-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.cabin-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* 📱 Ajuste para celulares y tablets medianas */
@media (max-width: 768px) {
  .cabin-gallery {
    grid-template-columns: 1fr 1fr; /* 2 imágenes por fila */
    gap: 10px;
  }

  .cabin-gallery img {
    height: 160px;
  }
}

/* 📱 Ajuste para celulares pequeños */
@media (max-width: 480px) {
  .cabin-gallery {
    grid-template-columns: 1fr; /* 1 imagen por fila */
  }

  .cabin-gallery img {
    height: 180px;
  }
}
/* Fondo oscuro */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Imagen principal */
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Botón cerrar */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* Botones de navegación */
.lightbox .prev, 
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

.lightbox .prev:hover, 
.lightbox .next:hover, 
.lightbox .close:hover {
  background: rgba(255,255,255,0.3);
}

}
/* ===== COMENTARIOS ===== */
#comentarios {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
}

#form-comentario {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 30px auto;
}

#form-comentario textarea,
#form-comentario input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

#form-comentario button {
  padding: 10px;
  background: #6b4226;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

#form-comentario button:hover {
  background: #4e2f1c;
}

/* Estrellas */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.rating span {
  font-size: 2rem;
  color: #ccc;
  transition: color 0.2s;
}

.rating span.selected {
  color: gold;
}

/* Lista de comentarios */
#lista-comentarios {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#lista-comentarios .comentario {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

#lista-comentarios p {
  margin: 0 0 10px;
  font-style: italic;
}

#lista-comentarios .stars {
  margin-bottom: 5px;
}

#lista-comentarios .star {
  font-size: 1.2rem;
  color: #ccc;
}

#lista-comentarios .star.filled {
  color: gold;
}
html {
  scroll-behavior: smooth;
}
.menu-toggle {
  font-size: 18px;
  font-weight: bold;
  background: transparent;
  border: none;
  color: white;  /* Ajusta según tu fondo */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px; /* espacio entre el icono y el texto */
}
/* Ocultar botón en pantallas grandes */
.menu-toggle {
  display: none;
}

/* Mostrar botón en móviles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;  /* aparece en móvil */
  }
  
  .nav-links {
    display: none;  /* oculto por defecto en móvil */
    flex-direction: column;
    gap: 15px;
    background: #5a3d2b; /* color de fondo del menú */
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex; /* aparece cuando se apreta Menú */
  }
}
/* --- COMENTARIOS --- */
.comentarios {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.comentarios h2,
.comentarios h3 {
  margin-bottom: 20px;
  color: #333;
}

#form-comentario {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

#form-comentario textarea,
#form-comentario input {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

#form-comentario button {
  background: #2c7a7b;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#form-comentario button:hover {
  background: #225e5f;
}

/* ⭐ estrellas */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.rating span {
  font-size: 28px;
  color: #ccc;
  transition: 0.3s;
}

.rating span.selected,
.star.filled {
  color: gold;
}

/* 📌 lista de comentarios */
#lista-comentarios {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.comentario {
  background: #fff;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.comentario p {
  font-style: italic;
  margin-bottom: 10px;
  color: #444;
}

.comentario .stars {
  margin-bottom: 8px;
}

.comentario span {
  font-size: 14px;
  color: #666;
}
/* ✨ Animación para comentarios con delay progresivo */
.comentario {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.6s ease forwards;
}

#lista-comentarios .comentario:nth-child(1) { animation-delay: 0.1s; }
#lista-comentarios .comentario:nth-child(2) { animation-delay: 0.3s; }
#lista-comentarios .comentario:nth-child(3) { animation-delay: 0.5s; }
#lista-comentarios .comentario:nth-child(4) { animation-delay: 0.7s; }
#lista-comentarios .comentario:nth-child(5) { animation-delay: 0.9s; }
/* Puedes seguir agregando más si esperas muchos comentarios */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.lightbox .close {
  top: 20px; right: 30px;
}

.lightbox .prev {
  left: 30px; top: 50%;
  transform: translateY(-50%);
}

.lightbox .next {
  right: 30px; top: 50%;
  transform: translateY(-50%);
}
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 20px;
  padding: 12px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  background: #20b857;
}

.btn-whatsapp i {
  font-size: 24px;
}
/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #ffffff; /* fondo blanco */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #006633; /* un verde más natural, puedes cambiar */
}
/* Logo en el header */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
/* Estilo del menú */
nav {
  background-color: #6b3e23; /* Marrón más cálido */
  padding: 10px 20px;
}

.nav-links li a {
  color: #ffffff; /* Letras blancas */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffcc66; /* Dorado suave al pasar el mouse */
}
/* Ajustar logo */
.logo img {
  height: 60px;  /* antes seguro estaba en 40px o 50px */
  width: auto;
}

/* Texto junto al logo */
.logo-text {
  color: #ffffff;  /* Texto en blanco */
  font-size: 20px;
  font-weight: bold;
  margin-left: 8px;
}
.logo img {
  height: 70px;
  width: auto;
  background-color: #ffffff;  /* fondo blanco */
  border-radius: 8px;         /* bordes redondeados */
  padding: 4px;               /* espacio alrededor */
}
/* Ajustes solo para pantallas pequeñas */
@media (max-width: 768px) {
  nav {
    background-color: rgba(51, 25, 0, 0.95); /* Café oscuro semi-transparente */
    padding: 10px;
  }

  nav ul {
    text-align: center;
    padding: 0;
  }

  nav ul li {
    display: block;
    margin: 10px 0;
  }

  nav ul li a {
    font-size: 18px;
    color: white !important;
  }

  /* Logo más pequeño en móvil */
  .logo img {
    width: 40px;
    height: auto;
  }

  .logo-text {
    font-size: 18px;
  }
}
/* ===================== */
/* RESPONSIVE MENU MÓVIL */
/* ===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #6b3e1d;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    border-radius: 0 0 10px 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }

  .logo h1 {
    font-size: 14px;
  }
}
/* 📌 Contenedor de comentarios en grid */
#lista-comentarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* 📌 Cada tarjeta de comentario */
.comentario {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-style: italic;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease-in-out;
}

.comentario:hover {
  transform: translateY(-4px);
}

/* 📌 Texto del comentario */
.comentario p {
  margin-bottom: 12px;
  color: #444;
}

/* 📌 Estrellas bien alineadas */
.comentario .stars {
  color: #FFD700; /* amarillo dorado */
  font-size: 18px;
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

/* 📌 Autor y fecha */
.comentario span {
  font-size: 14px;
  color: #555;
}
/* ===== Carrusel móvil ===== */
@media (max-width: 768px) {
  #lista-comentarios {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px;
  }

  .comentario {
    flex: 0 0 85%; /* ocupa el 85% de la pantalla */
    scroll-snap-align: center;
  }

  /* ocultar scrollbar feo */
  #lista-comentarios::-webkit-scrollbar {
    display: none;
  }
}
/* === Comentarios en grid (PC) y carrusel (Móvil) === */
#lista-comentarios {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.comentario {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  font-size: 14px;
  line-height: 1.4em;
  transition: transform 0.3s;
}

.comentario:hover {
  transform: translateY(-3px);
}

.comentario .stars {
  color: gold;
  font-size: 18px;
  margin: 5px 0;
}

/* Flechas carrusel */
.carousel-btn {
  display: none; /* ocultas en PC */
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #6b3e2e; /* Marrón de tu página */
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  opacity: 0.9;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn.prev { left: 5px; }
.carousel-btn.next { right: 5px; }

@media (max-width: 768px) {
  #lista-comentarios {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .comentario {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin: 0 10px;
  }

  .carousel-btn {
    display: block; /* visibles solo en móvil */
  }
}
/* Lightbox oculto */
.lightbox {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  flex-direction: column;
}

/* Imagen dentro del lightbox */
.lightbox img {
  max-width: 90%;
  max-height: 80%;
}

/* Botones ocultos SIEMPRE al inicio */
.lightbox .close,
.lightbox .prev,
.lightbox .next {
  display: none;
  position: absolute;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 1001;
}

/* Posiciones de los botones */
.lightbox .close { top: 20px; right: 30px; }
.lightbox .prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 20px; top: 50%; transform: translateY(-50%); }

/* Cuando se abre el lightbox */
.lightbox.active {
  display: flex;
}

/* 🔹 Solo mostrar flechas/cerrar cuando está activo */
.lightbox.active .close,
.lightbox.active .prev,
.lightbox.active .next {
  display: block;
}

/* 📱 Ajuste para celulares (igual solo aparecen dentro del lightbox abierto) */
@media (max-width: 768px) {
  .lightbox.active .close,
  .lightbox.active .prev,
  .lightbox.active .next {
    font-size: 1.8rem;
  }
}

/* Ocultar flechas SOLO en celulares */
@media (max-width: 768px) {
  #comentarios .carousel-btn {
    display: none !important;
  }
}
}

}
}
/* Portada móvil → sin flechas */
@media (max-width: 768px) {
  .carousel-btn {
    display: none !important;
  }
}

/* Galería (lightbox) → flechas visibles y táctiles en móvil */
@media (max-width: 768px) {
  .lightbox .prev,
  .lightbox .next {
    display: block !important;
    font-size: 2.5rem;   /* más grandes */
    padding: 1rem;       /* más área táctil */
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
  }
}

/* Portada móvil → sin flechas */
@media (max-width: 768px) {
  .carousel-btn {
    display: none !important;
  }
}

/* Galería (lightbox) → flechas visibles y táctiles en móvil */
@media (max-width: 768px) {
  .lightbox .prev,
  .lightbox .next {
    display: block !important;
    font-size: 2.5rem;   /* más grandes */
    padding: 1rem;       /* más área táctil */
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
  }
}
.btn-whatsapp {
  font-size: 16px;       /* tamaño del texto */
  padding: 8px 14px;     /* menos espacio alrededor */
  border-radius: 30px;   /* mantiene forma ovalada */
}

.btn-whatsapp i {
  font-size: 18px;       /* icono más pequeño */
}



.ubicacion {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f5f5; /* gris claro natural */
}

.ubicacion h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2E7D32; /* verde bosque */
}

.ubicacion p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.ubicacion .mapa {
  max-width: 800px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ubicacion .indicaciones {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.mapa {
  position: relative;
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

.btn-mapa {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #25a55f; /* verde natural */
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-mapa:hover {
  background: #1d8049;
  transform: scale(1.05);
}

/* ✨ Scroll con compensación del header fijo */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* PC y pantallas grandes */
}

/* 📱 En móviles el header es más bajo → compensamos menos */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

/* 🎨 Mejora visual de la galería */
.galeria img {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer; /* da sensación interactiva */
}

.galeria img:hover {
  transform: scale(1.05); /* zoom suave */
  box-shadow: 0 6px 16px rgba(0,0,0,0.3); /* sombra más fuerte */
  opacity: 0.95; /* efecto elegante */
}

/* ============================= */
/* 🔹 SECCIÓN CONTACTO (FORZADO) */
/* ============================= */
footer.contacto {
  background: #264d3b !important; /* Verde profundo */
  color: #fff !important;
  text-align: center !important;
  padding: 50px 20px !important;
}

footer.contacto h2,
footer.contacto h3 {
  color: #ffeb3b !important; /* Amarillo */
  margin-bottom: 15px !important;
}

footer.contacto .redes {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-top: 20px !important;
}

footer.contacto .redes a {
  background: #ffeb3b !important;
  color: #264d3b !important;
  font-size: 1.5rem !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

footer.contacto .redes a:hover {
  background: #fff !important;
  color: #264d3b !important;
  transform: scale(1.1) !important;
}

footer.contacto .copyright {
  margin-top: 25px !important;
  font-size: 0.9rem !important;
  opacity: 0.8 !important;
}

.contacto a {
  color: #fff;  /* o el color que prefieras */
  text-decoration: none;
  font-weight: 500;
}

.contacto a:hover {
  text-decoration: underline;
}
