/* ============================================================
   ECLIPSE V — Cinematic Nautical Landing
   Paleta: Navy #0c2340 · Gold #c49a6c · Sand #f5f3ef · Aqua #1a8a9e
   ============================================================ */

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

:root {
  --navy:        #0c2340;
  --navy-light:  #1a3a5c;
  --navy-deep:   #060f1c;
  --navy-glass:  rgba(12,35,64,0.92);
  --gold:        #c49a6c;
  --gold-dark:   #8a6537;
  --gold-light:  #d9b98a;
  --sand:        #f5f3ef;
  --sand-dark:   #e8e4dc;
  --aqua:        #1a8a9e;
  --aqua-light:  #2ab0c8;
  --text:        #1a2030;
  --text-muted:  #5a6478;
  --white:       #fafaf8;
  --shadow-sm:   0 2px 12px rgba(6,15,28,0.08);
  --shadow-md:   0 8px 40px rgba(6,15,28,0.14);
  --shadow-lg:   0 16px 64px rgba(6,15,28,0.18);
  --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;
  --radius-lg:   12px;
  --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(--sand);
  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 ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-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-dark);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold-dark);
  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;
}

.section-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-header .section-sub {
  margin: 0 auto;
}

section {
  padding: var(--section-py) 0;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 50px);
  height: 72px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
#navbar.scrolled {
  background: var(--navy-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

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

.btn-nav-book {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-nav-book:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────────────────────────── */
#inicio {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,15,28,0.4) 0%,
    rgba(6,15,28,0.2) 40%,
    rgba(6,15,28,0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-nombre {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

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

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

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SPECS BAR ───────────────────────────────────────────── */
.specs-bar {
  background: var(--navy);
  padding: 0;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.spec-item:last-child { border-right: none; }
.spec-valor {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.spec-unidad {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-left: 4px;
}
.spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ── STATEMENT ───────────────────────────────────────────── */
.statement-section {
  padding: var(--section-py) 0;
  background: var(--sand);
}
.statement-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.statement-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 400;
}
.statement-loc {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.statement-loc i {
  color: var(--gold);
  margin-right: 6px;
}

/* ── HIGHLIGHTS ──────────────────────────────────────────── */
.highlights-section {
  padding: 0 0 var(--section-py);
  background: var(--sand);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.highlight-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.highlight-card i {
  font-size: 1.6rem;
  color: var(--aqua);
  margin-bottom: 16px;
}
.highlight-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.highlight-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── EXPERIENCIAS ────────────────────────────────────────── */
#experiencias {
  background: var(--white);
}
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.exp-card.destacada {
  border: 2px solid var(--gold);
}
.exp-card-img {
  height: 220px;
  overflow: hidden;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.exp-card:hover .exp-card-img img {
  transform: scale(1.05);
}
.exp-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
}
.exp-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exp-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1rem;
  margin-bottom: 16px;
}
.exp-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.exp-horario {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.exp-precio {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.exp-precio-usd {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 2px;
}
.exp-precio-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 16px;
}
.exp-detalles {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.exp-detalles li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.exp-detalles li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.exp-opciones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.exp-opcion {
  padding: 10px 12px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
}
.exp-opcion-dur {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.exp-opcion-precio {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.exp-nota {
  font-size: 0.78rem;
  color: var(--gold);
  background: rgba(12, 35, 64, 0.06);
  border-left: 3px solid var(--gold);
  padding: 8px 12px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 12px;
  line-height: 1.4;
}
.exp-nota i {
  margin-right: 4px;
}
.exp-cta-wrap {
  margin-top: auto;
  padding-top: 16px;
}
.exp-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: background 0.25s;
}
.exp-cta:hover { background: var(--navy-light); }
.exp-opcion-usd {
  font-size: 0.75rem;
  color: var(--gold);
  margin-left: 6px;
}

/* ── RUTA ────────────────────────────────────────────────── */
#ruta {
  background: var(--navy);
  color: #fff;
}
#ruta .section-label { color: var(--gold-light); }
#ruta .section-title { color: #fff; }
#ruta .section-sub { color: rgba(255,255,255,0.6); }

/* Tabs */
.ruta-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.ruta-tab {
  padding: 14px 32px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
}
.ruta-tab:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.ruta-tab.active {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* Panels */
.ruta-panel {
  display: none;
  animation: fadeIn 0.4s var(--ease-out);
}
.ruta-panel.active { display: block; }

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

.ruta-panel-desc {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

.ruta-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.ruta-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ruta-stop {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.ruta-stop:last-child { border-bottom: none; }

.ruta-stop-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,154,108,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.95rem;
}
.ruta-stop-content h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.ruta-stop-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Route line connector */
.ruta-stop::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 68px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(196,154,108,0.15));
}
.ruta-stop:last-child::before { display: none; }

.ruta-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.ruta-map:hover {
  transform: scale(1.01);
}
.ruta-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── ESPACIOS ────────────────────────────────────────────── */
#catamaran {
  background: var(--sand);
}
.espacios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.espacio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.espacio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.espacio-card.destacado {
  grid-column: span 2;
}
.espacio-card-img {
  height: 260px;
  overflow: hidden;
}
.espacio-card.destacado .espacio-card-img {
  height: 320px;
}
.espacio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.espacio-card:hover .espacio-card-img img {
  transform: scale(1.05);
}
.espacio-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(6,15,28,0.85), transparent);
  color: #fff;
}
.espacio-card-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
}
.espacio-card-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ── GALERÍA ─────────────────────────────────────────────── */
#galeria {
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,15,28,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  padding: 16px;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-close { top: 10px; right: 20px; font-size: 3rem; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
#lb-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
}

/* ── QUÉ INCLUYE ─────────────────────────────────────────── */
#incluye {
  background: var(--sand);
}
.incluye-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.incluye-grid h3, .extras-grid h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.incluye-item, .extra-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-dark);
}
.incluye-item i, .extra-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.incluye-item span {
  font-size: 0.92rem;
  color: var(--text);
}
.extra-item .extra-text {
  flex: 1;
}
.extra-item .extra-text span {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}
.extra-item .extra-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── RESERVAR ────────────────────────────────────────────── */
#reservar {
  background: var(--navy);
  padding: var(--section-py) 0;
}
.booking-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.booking-header i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.booking-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 12px;
}
.booking-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.booking-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.booking-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.booking-info-item {
  text-align: center;
}
.booking-info-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.booking-info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.booking-info-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ── MÉTODOS DE PAGO ─────────────────────────────────────── */
.booking-pagos {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.booking-pagos h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.pagos-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pago-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.pago-item i {
  color: var(--gold);
  font-size: 1rem;
}
.pago-item span {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── CONTACTO ────────────────────────────────────────────── */
#contacto {
  background: var(--white);
}
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.contacto-item i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.contacto-item h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contacto-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contacto-item a {
  color: var(--aqua);
  font-weight: 500;
  transition: color 0.2s;
}
.contacto-item a:hover { color: var(--navy); }

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
  text-align: center;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

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

/* ── STICKY CTA MOBILE ───────────────────────────────────── */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--navy);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
  display: none;
  padding: 12px 20px;
}
.sticky-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-price {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
}
.sticky-price strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin: 0 4px;
}
.btn-sticky {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .experiencias-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .espacios-grid { grid-template-columns: 1fr 1fr; }
  .espacio-card.destacado { grid-column: span 2; }
  .ruta-layout { grid-template-columns: 1fr; }
  .ruta-map { order: -1; } /* Map first on tablet */
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: #fff; }

  .hamburger { display: flex; z-index: 999; }
  .btn-nav-book { display: none; }

  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-item { padding: 24px 12px; }
  .spec-item:nth-child(2) { border-right: none; }

  .highlights-grid { grid-template-columns: 1fr 1fr; }

  .experiencias-grid { max-width: 100%; }

  .espacios-grid { grid-template-columns: 1fr; }
  .espacio-card.destacado { grid-column: span 1; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .incluye-layout { grid-template-columns: 1fr; gap: 32px; }

  .booking-info { grid-template-columns: 1fr; gap: 16px; }
  .contacto-grid { grid-template-columns: 1fr; gap: 24px; }

  .sticky-cta-mobile { display: block; }
  .whatsapp-fab { bottom: 80px; }
}

@media (max-width: 480px) {
  .hero-nombre { font-size: 3rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .exp-opciones { grid-template-columns: 1fr; }
}

/* ── PREFERS REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .hero-slide { transition: none; }
}
