:root {
  --verde: #2d5a27;
  --verde-medio: #3d7a35;
  --verde-claro: #5a9e4f;
  --verde-palido: #e8f4e5;
  --tierra: #8b5e3c;
  --tierra-claro: #c4946a;
  --crema: #faf6ef;
  --crema-oscuro: #f0e8d8;
  --dorado: #c9a227;
  --texto: #1a2e17;
  --texto-medio: #3d5a38;
  --texto-suave: #6b8c65;
  --blanco: #ffffff;
  --sombra: 0 4px 24px rgba(45,90,39,0.12);
  --sombra-fuerte: 0 8px 40px rgba(45,90,39,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--crema);
  color: var(--texto);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,246,239,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,90,39,0.12);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--sombra); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--verde);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--verde);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--texto-suave);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--texto-medio);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--verde); }

.nav-cta {
  background: var(--verde) !important;
  color: var(--blanco) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--verde-medio) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--verde);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* HERO */
/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* El degradado oscuro va primero, luego la ruta de tu imagen */
  background: linear-gradient(rgba(26, 61, 20, 0.7), rgba(45, 90, 39, 0.8)), 
              url('Imagenes/Fondo-principal.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-circle-1 {
  position: absolute;
  width: 600px; height: 600px;
  right: -100px; top: -100px;
  border-radius: 50%;
  background: rgba(90,158,79,0.15);
}
.hero-circle-2 {
  position: absolute;
  width: 400px; height: 400px;
  right: 150px; bottom: -50px;
  border-radius: 50%;
  background: rgba(201,162,39,0.1);
}
.hero-leaf {
  position: absolute;
  left: 60%;
  top: 15%;
  font-size: 180px;
  opacity: 0.04;
  transform: rotate(-20deg);
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.4);
  color: #f0c940;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: #a8d46f;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dorado);
  color: #1a1a0a;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.45); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #a8d46f;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-info-card h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.8rem;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.location-icon {
  width: 36px; height: 36px;
  background: rgba(168,212,111,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.schedule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 0.6rem;
  text-align: center;
}
.schedule-item .day {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.schedule-item .time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #a8d46f;
}
.schedule-item.closed .time { color: rgba(255,255,255,0.3); }

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-item:hover { color: #a8d46f; }
.contact-item span { font-size: 1.1rem; }

/* SECTION BASE */
section { padding: 5rem 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde-claro);
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--verde-claro);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--texto);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--texto-suave);
  line-height: 1.8;
  max-width: 560px;
}

/* NOSOTROS */
#nosotros {
  background: var(--blanco);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: var(--verde-palido); /* Fondo de carga */
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Evita que tu foto se estire o se deforme */
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--dorado);
  color: #1a1a0a;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: var(--sombra-fuerte);
  min-width: 110px;
}
.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-float span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-feature-icon {
  width: 44px; height: 44px;
  background: var(--verde-palido);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about-feature h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 0.2rem;
}
.about-feature p {
  font-size: 0.85rem;
  color: var(--texto-suave);
  line-height: 1.6;
}

/* SERVICIOS */
#servicios {
  background: var(--crema);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(45,90,39,0.08);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-fuerte);
}

.service-card-img {
  height: 180px; /* Le subí un poquito la altura para que la comida y el local luzcan más */
  width: 100%;   /* Obliga al contenedor a usar todo el ancho de la tarjeta */
  position: relative;
  overflow: hidden;
}

/* La imagen en sí */
.service-card-img img {
  width: 100%;    /* La foto se estira para llenar el ancho... */
  height: 100%;   /* ...y también el alto */
  object-fit: cover; /* ¡El truco! Recorta la foto como un marco sin aplastarla */
  object-position: center; /* Asegura que el recorte se haga exactamente desde el centro de tu foto */
  display: block;
}

.service-card-body {
  padding: 1.5rem;
}
.service-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 0.5rem;
}
.service-card-body p {
  font-size: 0.88rem;
  color: var(--texto-suave);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-tag {
  display: inline-block;
  background: var(--verde-palido);
  color: var(--verde);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* MENÚ / GASTRONOMÍA */
#menu {
  background: var(--verde);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
}

#menu .section-label { color: #a8d46f; }
#menu .section-label::before { background: #a8d46f; }
#menu .section-title { color: #fff; }
#menu .section-desc { color: rgba(255,255,255,0.75); }

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.menu-cat-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}
.menu-cat-btn:hover, .menu-cat-btn.active {
  background: rgba(255,255,255,0.15);
  border-color: rgba(168,212,111,0.4);
}
.menu-cat-icon {
  font-size: 1.8rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.menu-cat-btn h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.menu-cat-btn p { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

.menu-items {
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.menu-items.active { display: flex; }

.menu-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.menu-item:hover { background: rgba(255,255,255,0.12); }
.menu-item-info h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.menu-item-info p { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0c940;
  white-space: nowrap;
}
.menu-note {
  margin-top: 1.5rem;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ACTIVIDADES */
#actividades {
  background: var(--blanco);
}

.actividades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.actividad-card {
  background: var(--crema);
  border-radius: 18px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(45,90,39,0.06);
}
.actividad-card:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.actividad-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.actividad-card h3 { font-size: 1rem; font-weight: 700; color: var(--texto); margin-bottom: 0.4rem; }
.actividad-card p { font-size: 0.82rem; color: var(--texto-suave); line-height: 1.6; }

/* RESERVAS */
#reservas {
  background: var(--crema-oscuro);
}

.reservas-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.reserva-form {
  background: var(--blanco);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--sombra);
}
.reserva-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 0.5rem;
}
.reserva-form p.sub {
  color: var(--texto-suave);
  font-size: 0.88rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--texto-medio);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(45,90,39,0.15);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--texto);
  background: var(--crema);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 80px; }

.btn-form {
  width: 100%;
  padding: 1rem;
  background: var(--verde);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 0.5rem;
}
.btn-form:hover { background: var(--verde-medio); transform: translateY(-1px); }

.reservas-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  background: var(--blanco);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(45,90,39,0.08);
}
.info-box h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-box h4 .ico { font-size: 1.2rem; }

.pago-methods {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pago-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--texto-medio);
}
.pago-item .dot {
  width: 8px; height: 8px;
  background: var(--verde-claro);
  border-radius: 50%;
  flex-shrink: 0;
}

.horario-table {
  width: 100%;
  border-collapse: collapse;
}
.horario-table tr {
  border-bottom: 1px solid rgba(45,90,39,0.06);
}
.horario-table tr:last-child { border-bottom: none; }
.horario-table td {
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--texto-medio);
}
.horario-table td:last-child { text-align: right; font-weight: 700; color: var(--verde); }
.horario-table .closed td:last-child { color: rgba(107,140,101,0.4); font-weight: 400; }

.wsp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.wsp-btn:hover { background: #1db954; transform: translateY(-1px); }

/* UBICACIÓN */
#ubicacion {
  background: var(--verde-palido);
}

.ubicacion-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8e6c9, #81c784);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(45,90,39,0.15);
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder h4 { font-weight: 700; color: var(--verde); font-size: 1rem; }
.map-placeholder p { font-size: 0.82rem; color: var(--verde-medio); }
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s;
}
.map-btn:hover { background: var(--verde-medio); }

.direccion-detalles {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.dir-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.dir-ico {
  width: 44px; height: 44px;
  background: var(--blanco);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45,90,39,0.1);
}
.dir-item h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--texto-suave); margin-bottom: 3px; font-weight: 700; }
.dir-item p { font-size: 0.95rem; font-weight: 600; color: var(--texto); line-height: 1.5; }

.como-llegar {
  background: var(--blanco);
  border-radius: 18px;
  padding: 1.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(45,90,39,0.08);
}
.como-llegar h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--texto);
  margin-bottom: 0.8rem;
}
.ruta-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}
.ruta-num {
  width: 24px; height: 24px;
  background: var(--verde);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ruta-step p { font-size: 0.85rem; color: var(--texto-medio); line-height: 1.6; }

/* RESEÑAS */
#resenas {
  background: var(--blanco);
}

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.resena-card {
  background: var(--crema);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(45,90,39,0.06);
}
.stars { color: var(--dorado); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.resena-text {
  font-size: 0.9rem;
  color: var(--texto-medio);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}
.resena-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av-verde { background: var(--verde); }
.av-tierra { background: var(--tierra); }
.av-dorado { background: var(--dorado); color: #1a1a0a; }
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--texto); }
.author-date { font-size: 0.75rem; color: var(--texto-suave); }

.resenas-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.resenas-cta p { color: var(--texto-suave); font-size: 0.9rem; margin-bottom: 1rem; }

/* FOOTER */
footer {
  background: var(--texto);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-ico {
  width: 40px; height: 40px;
  background: var(--verde-claro);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.footer-brand-name span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.social-link:hover { background: var(--verde-claro); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #a8d46f; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
.footer-contact-item .ico { font-size: 1rem; margin-top: 2px; }
.footer-contact-item span {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* FLOATING WHATSAPP */
.fab-wsp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
}
.fab-wsp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--crema);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(45,90,39,0.1);
    box-shadow: var(--sombra);
  }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 7rem; }
  .hero-card-side { display: none; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .menu-layout { grid-template-columns: 1fr; gap: 2rem; }
  .menu-items.active { display: flex; }
  .actividades-grid { grid-template-columns: 1fr 1fr; }
  .reservas-layout { grid-template-columns: 1fr; }
  .ubicacion-layout { grid-template-columns: 1fr; }
  .resenas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .actividades-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 0.5rem; }
  section { padding: 3.5rem 1.2rem; }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}