/* ============================================================
   GRUPO PLATANERAS — SETRA Holdings
   Paleta: Verde Selva #1b6b3a · Dorado #d4a843 · Crema #f0f8f2
   ============================================================ */

/* ── RESET & VARIABLES ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #1b6b3a;
  --teal-dark:   #145230;
  --teal-deep:   #0a2016;
  --teal-glass:  rgba(27,107,58,0.92);
  --gold:        #d4a843;
  --gold-light:  #e0bf72;
  --cream:       #f0f8f2;
  --cream-dark:  #d8ede0;
  --text:        #1a2820;
  --text-muted:  #4a6858;
  --white:       #f6fbf7;
  --shadow-sm:   0 2px 12px rgba(10,30,18,0.08);
  --shadow-md:   0 8px 40px rgba(10,30,18,0.14);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --section-py:  clamp(80px, 10vw, 130px);
  --container:   1200px;
  --radius:      4px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── TIPOGRAFÍA BASE ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-in-out),
              box-shadow 0.4s var(--ease-in-out);
}

#navbar.solid {
  background: var(--teal-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(10,30,18,0.18);
  height: 64px;
}

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

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 4px 10px;
  transition: height 0.3s;
}
#navbar.solid .nav-logo img { height: 38px; }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1px;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: var(--radius);
  min-height: 36px;
}
.nav-back:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }
.nav-back i { font-size: 0.65rem; }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-nav-book {
  background: var(--gold);
  color: #0a2016;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-book:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ───────────────────────────────────────────────────── */
#inicio {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 14s var(--ease-out) forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,32,22,0.22) 0%,
    rgba(10,32,22,0.48) 60%,
    rgba(10,32,22,0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.55s forwards;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  line-height: 1.6;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.75s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.95s forwards;
}

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

.btn-primary {
  background: var(--gold);
  color: #0a2016;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(24px, 4vw, 60px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

/* ── STATEMENT ───────────────────────────────────────────────── */
.statement-section {
  padding: var(--section-py) 0;
  text-align: center;
  background: var(--white);
}
.statement-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.statement-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--teal-deep);
  line-height: 1.4;
  position: relative;
  padding-top: 32px;
}
.statement-section blockquote::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.statement-section .statement-loc {
  margin-top: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── HIGHLIGHTS ──────────────────────────────────────────────── */
.highlights-section {
  background: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.highlight-item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}
.highlight-item:last-child { border-right: none; }
.highlight-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.highlight-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.highlight-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── ROOMS ───────────────────────────────────────────────────── */
#habitaciones {
  padding: var(--section-py) 0;
  background: var(--cream);
}
#habitaciones .section-header {
  padding: 0 clamp(20px, 5vw, 60px);
  margin-bottom: 64px;
}

.room-card {
  display: flex;
  min-height: 500px;
  overflow: hidden;
}
.room-card:nth-child(even) { flex-direction: row-reverse; }
.room-card + .room-card { border-top: 1px solid var(--cream-dark); }

.room-gallery {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
}
.room-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s var(--ease-in-out);
}
.room-slide.active { opacity: 1; }
.room-gallery:hover .room-slide.active {
  transform: scale(1.03);
  transition: opacity 0.6s, transform 6s var(--ease-out);
}

.rslide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  background: rgba(10,32,22,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
}
.room-gallery:hover .rslide-btn { opacity: 1; }
.rslide-btn:hover { background: rgba(10,32,22,0.8); }
.rslide-btn.prev { left: 12px; }
.rslide-btn.next { right: 12px; }

.room-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  background: var(--gold);
  color: #0a2016;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.room-badge.featured-badge { background: var(--teal); color: var(--white); }

.room-body {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  background: var(--white);
}

.room-body .room-meta {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.room-body .room-meta i { color: var(--gold); margin-right: 5px; }

.room-body h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 16px;
}

.room-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 420px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.room-amenities span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(27,107,58,0.08);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.room-amenities i { font-size: 0.7rem; }

.room-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--cream-dark);
  padding-top: 24px;
}

.room-prices { display: flex; flex-direction: column; gap: 4px; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price-row span {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 56px;
}
.price-row strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--teal-deep);
  font-weight: 700;
}

.btn-book {
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--teal-dark); transform: translateY(-1px); }

.rooms-note {
  padding: 28px clamp(20px, 5vw, 60px);
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--cream-dark);
  background: var(--white);
}
.rooms-note i { color: var(--gold); margin-right: 6px; }

/* ── BOOKING (WhatsApp) ───────────────────────────────────────── */
#reservar {
  background: var(--teal-deep);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
#reservar::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
}

.booking-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
}
.booking-header { margin-bottom: 40px; }
.booking-header i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.booking-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}
.booking-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.booking-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1dbd5a; transform: translateY(-2px); }

.btn-tel {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.25);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-tel:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.booking-note {
  margin-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.booking-note i { color: var(--gold); margin-right: 4px; }

/* ── SERVICES ────────────────────────────────────────────────── */
#servicios {
  padding: var(--section-py) 0;
  background: var(--cream);
}
#servicios .section-header { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream-dark);
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.25s;
}
.service-card:hover { background: var(--cream); }
.service-card .service-icon {
  width: 44px; height: 44px;
  background: rgba(27,107,58,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card .service-icon i { color: var(--teal); font-size: 1rem; }
.service-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.service-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── GALLERY ─────────────────────────────────────────────────── */
#galeria {
  padding: var(--section-py) 0;
  background: var(--white);
}
#galeria .section-header { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
  padding: 0 clamp(20px, 5vw, 60px);
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--cream-dark);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,32,22,0.72), transparent);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 20px 16px 12px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,32,22,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
#lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--white); }
.lb-close { top: 20px; right: 24px; font-size: 1.6rem; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── REVIEWS ─────────────────────────────────────────────────── */
#resenas {
  padding: var(--section-py) 0;
  background: var(--teal-deep);
}
#resenas .section-header .section-label { color: var(--gold-light); }
#resenas .section-header .section-title { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 60px);
  margin-bottom: 44px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.review-source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-cta { text-align: center; padding: 0 clamp(20px, 5vw, 60px); }
.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212,168,67,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  min-height: 48px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-reviews:hover { border-color: var(--gold-light); background: rgba(212,168,67,0.1); }

/* ── LOCATION ────────────────────────────────────────────────── */
#ubicacion {
  padding: var(--section-py) 0;
  background: var(--cream);
}
#ubicacion .section-header { margin-bottom: 48px; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.contact-block { display: flex; align-items: flex-start; gap: 16px; }
.contact-block i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}
.contact-block strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-block p, .contact-block a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-block a:hover { color: var(--teal); }

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 24px;
  min-height: 44px;
  transition: transform 0.2s, opacity 0.2s;
}
.social-pill:hover { transform: translateY(-1px); opacity: 0.9; }
.social-pill.ig  { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: var(--white); }
.social-pill.wa  { background: #25d366; color: var(--white); }
.social-pill.tel { background: var(--teal); color: var(--white); }

.location-map { position: relative; }
.location-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius);
  display: block;
}
.map-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal);
  padding: 10px 0;
  transition: color 0.2s;
}
.map-open-btn:hover { color: var(--teal-dark); }

/* ── POLICIES ────────────────────────────────────────────────── */
.policies-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}
.policies-section .section-header { margin-bottom: 48px; }
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.policy-item i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; width: 18px; }
.policy-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--teal-deep);
  margin-bottom: 3px;
}
.policy-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── ALIADOS (otros hoteles del grupo) ───────────────────────── */
#aliados {
  padding: var(--section-py) 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}
#aliados .section-header { margin-bottom: 48px; }
.aliados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.aliado-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}
.aliado-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.aliado-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--teal-deep);
}
.aliado-photo-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aliado-photo-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.3); }

.aliado-ciudad {
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(10,32,22,0.7);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.aliado-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.aliado-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--teal-deep);
}
.aliado-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.aliado-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.aliado-link i { font-size: 0.7rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-col a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  transition: color 0.2s;
  min-width: 36px; min-height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { color: var(--gold); }

/* ── WHATSAPP FAB ────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-fab i { font-size: 1.6rem; color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card, .room-card:nth-child(even) { flex-direction: column; }
  .room-gallery { flex: none; height: 340px; }
  .room-body { flex: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--teal-glass);
    backdrop-filter: blur(12px);
    padding: 16px 0;
  }
  .nav-links.open a {
    padding: 14px clamp(20px, 5vw, 60px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-back { display: none; }
  .hamburger { display: flex; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .policies-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .aliados-grid { grid-template-columns: 1fr; }
}
