/* ═══════════════════════════════════════
   ORO APARTA-HOTEL — Styles
   Palette: Gold #C9A227 / Dark #1A1209 / Cream #F8F3E8
   ═══════════════════════════════════════ */

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

/* ── WHATSAPP MOBILE BTN ── */
.wa-mobile-btn {
  display: none;
}
@media (max-width: 768px) {
  .wa-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .wa-widget { display: none !important; }
}

/* ── TOUCH GLOBAL FIX ──
   Elimina lag de 300ms, tap highlight gris de iOS, y sticky hover */

/* 1. Quita el flash gris de iOS al tocar cualquier cosa */
* { -webkit-tap-highlight-color: transparent; }

/* 2. touch-action: manipulation — respuesta inmediata al toque */
a, button, [role="button"], input, select, textarea, label,
.faq-q, .faq-item, .filter-btn, .card-nav, .card-zoom-hint,
.map-tab, .factura-btn, .lang-toggle, .nav-toggle,
.nav-links a, .nav-drawer a, .galeria-item, .review-card,
.rg-prev, .rg-next, .rg-close, .rg-dot,
.wa-fab, .wa-fab-btn, .back-to-top, .lightbox-close,
.room-card .btn, .porque-card, .nosotros-pills span {
  touch-action: manipulation;
  -webkit-touch-callout: none;
}

/* 3. cursor:pointer en divs clickeables — OBLIGATORIO en iOS Safari
   para que disparen el evento click */
.faq-item, .galeria-item, .review-card, .card-zoom-hint,
.porque-card, .nosotros-pills span, .slogan-strip-inner span {
  cursor: pointer;
}

/* 4. user-select: none en botones — evita selección de texto en doble tap */
button, .filter-btn, .faq-q, .card-nav, .map-tab,
.factura-btn, .lang-toggle, .nav-toggle, .back-to-top,
.rg-prev, .rg-next, .rg-close {
  user-select: none;
  -webkit-user-select: none;
}

/* 5. Tamaño mínimo de toque 44px (guía Apple/Google) */
button, .filter-btn, .faq-q, .map-tab, .factura-btn,
.card-nav, .rg-prev, .rg-next, .rg-close, .back-to-top,
.nav-toggle, .lang-toggle {
  min-height: 44px;
}

/* 6. En touch: quitar hover que en iOS "se pega" en el primer tap
   y bloquea el segundo tap real */
@media (hover: none) and (pointer: coarse) {
  .room-card:hover { transform: none; box-shadow: none; z-index: 0; }
  .btn:hover { transform: none; }
  .filter-btn:hover { background: transparent; color: var(--text-muted); }
  .nav-links a:hover::after { width: 0; }
}

:root {
  --gold:       #C9A227;
  --gold-dark:  #A8861C;
  --gold-light: #DEB84A;
  --dark:       #080603;
  --dark-2:     #110E08;
  --dark-3:     #1C1710;
  --cream:      #F9F7F4;
  --cream-2:    #EDEAE4;
  --text:       #1C1710;
  --text-muted: #6B6355;
  --white:      #FFFFFF;
  --radius:     6px;
  --transition: 0.28s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── SPLASH ── */
#splash {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-inner { text-align: center; }
.splash-wordmark { margin-bottom: 32px; }
.splash-oro {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 12vw, 100px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1;
}
.splash-sub {
  display: block;
  font-size: clamp(10px, 2vw, 14px);
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 6px;
}
.splash-bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}
.splash-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.05s linear;
}

/* ── NAV ── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#mainNav.scrolled {
  background: rgba(26, 18, 9, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  display: block;
}
.logo-oro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.logo-apt {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-links a.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,162,39,0.35); }

/* ── LANG TOGGLE ── */
.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  background: rgba(26, 18, 9, 0.98);
  padding: 20px 24px;
  gap: 16px;
  border-top: 1px solid rgba(201,162,39,0.2);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 2px 16px rgba(201,162,39,0.25);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.45); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost-white:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,0.06); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--dark); }
.btn-sm { padding: 11px 22px; font-size: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── BTN GROUP ── */
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION COMMONS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.light { color: var(--gold); }
.section-label.light::before { background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.section-title mark {
  background: none;
  color: var(--gold);
  font-style: italic;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.75;
  font-weight: 400;
}
.section-sub.light { color: rgba(255,255,255,0.55); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 16px auto 0; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8,6,3,0.90) 0%, rgba(8,6,3,0.60) 55%, rgba(8,6,3,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 20px;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

.hero-badges {
  position: absolute;
  right: 48px;
  bottom: 100px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8,6,3,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 12px 18px;
  border-radius: 4px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── SLOGAN STRIP ── */
.slogan-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.slogan-strip-inner {
  display: inline-flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
}
.slogan-strip-inner span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.slogan-strip-inner .sep { color: var(--gold); opacity: 0.6; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── NOSOTROS ── */
.section-nosotros {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.nosotros-text .section-title { color: var(--dark); }
.nosotros-text p { margin-top: 20px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.nosotros-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.nosotros-pills span {
  background: transparent;
  border: 1px solid var(--cream-2);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  transition: border-color var(--transition), color var(--transition);
}
.nosotros-pills span:hover { border-color: var(--gold); color: var(--gold-dark); }
.nosotros-photo {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 32px 32px 0 var(--cream-2);
}
.nosotros-photo img { position: absolute; inset: 0; }
.nosotros-quote {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(8,6,3,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 2px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
  font-weight: 400;
}

/* ── STATS ── */
.section-stats {
  background: var(--dark);
  padding: 80px 24px;
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(201,162,39,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--gold-dark);
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ── ROOM FILTER ── */
.rooms-filter {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  border: 1px solid var(--cream-2);
  border-radius: 4px;
  padding: 4px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--dark); }
.filter-btn.active { background: var(--dark); color: var(--gold); }
.filter-count {
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
}
.filter-btn.active .filter-count { background: rgba(201,162,39,0.15); }
.room-card.hidden { display: none; }

/* ── ROOMS ── */
.section-rooms {
  padding: 120px 0;
  background: var(--white);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-2);
  border: 1px solid var(--cream-2);
}
.room-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), z-index 0s;
  position: relative;
  z-index: 0;
}
.room-card:hover { transform: scale(1.02); box-shadow: 0 24px 64px rgba(8,6,3,0.18); z-index: 2; border-radius: 2px; }
.room-card--featured { outline: 1px solid var(--gold); outline-offset: -1px; }
.room-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-card-img img { transition: transform 0.6s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(8,6,3,0.75);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0;
}
.room-card-body {
  padding: 24px 22px 28px;
}
.room-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.room-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}
.room-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.room-features svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── AMENIDADES ── */
.section-amenidades {
  padding: 120px 0;
  background: var(--dark);
}
.section-amenidades .section-header .section-title { color: var(--white); }
.section-amenidades .section-header .section-sub { color: rgba(255,255,255,0.45); }
.amenidades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.08);
}
.amenidad-card {
  background: var(--dark-2);
  border: none;
  border-radius: 0;
  padding: 36px 28px;
  transition: background var(--transition);
}
.amenidad-card:hover { background: var(--dark-3); }
.amenidad-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.amenidad-icon svg { width: 20px; height: 20px; color: var(--gold); }
.amenidad-card h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.amenidad-card p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* ── GALERÍA ── */
.section-galeria {
  padding: 100px 0;
  background: var(--dark);
}
.section-galeria .section-header .section-title { color: var(--white); }
.galeria-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.galeria-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.galeria-item--wide {
  grid-row: span 2;
}
.galeria-item img { transition: transform 0.5s ease; }
.galeria-item:hover img { transform: scale(1.05); }
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

/* ── TESTIMONIOS ── */
.section-testimonios {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--cream-2);
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonio-card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: 0;
  padding: 36px 32px;
  border-top: 2px solid var(--gold);
}
.testimonio-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonio-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
}
.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonio-avatar {
  width: 38px;
  height: 38px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonio-autor strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); letter-spacing: 0.03em; }
.testimonio-autor span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── RESERVA ── */
.section-reserva {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.reserva-bg {
  position: absolute;
  inset: 0;
}
.reserva-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.reserva-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,7,3,0.92) 0%, rgba(26,18,9,0.80) 100%);
}
.reserva-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.reserva-text .section-label { color: var(--gold); opacity: 1; }
.reserva-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
  border-radius: 2px;
}
.reserva-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.rcontact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  text-decoration: none;
}
.rcontact-link:hover { color: var(--gold); }
.rcontact-link svg { color: var(--gold); flex-shrink: 0; }
.rcontact-link--plain { cursor: default; }
.rcontact-link--plain:hover { color: rgba(255,255,255,0.6); }

/* Form card */
.reserva-form {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: 4px;
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

/* ── FORM FIELDS ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--cream-2);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(28,23,16,0.25); }
.form-field select option { background: var(--white); color: var(--text); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-field input.error,
.form-field select.error { border-color: #e53e3e; }
.form-field textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* Section dividers inside form */
.form-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 6px;
}
.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-2);
}

/* Radio chips */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--cream-2);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.2s ease;
}
.radio-opt:hover { border-color: var(--gold); color: var(--text); }
.radio-opt:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201,162,39,0.06);
  color: var(--gold-dark);
}
.radio-opt input[type="radio"] {
  accent-color: var(--gold);
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── ¿OCUPA FACTURA? TOGGLE ── */
.factura-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: 4px;
  margin: 8px 0 20px;
}
.factura-toggle-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.factura-toggle-btns {
  display: flex;
  gap: 3px;
  background: var(--cream-2);
  padding: 3px;
  border-radius: 4px;
}
.factura-btn {
  padding: 6px 18px;
  border-radius: 2px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.factura-btn:hover { color: var(--text); }
.factura-btn.active {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 1px 6px rgba(201,162,39,0.3);
}

/* Submit button */
.reserva-form .btn-gold {
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 4px 20px rgba(201,162,39,0.3);
  margin-top: 8px;
}
.reserva-form .btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.45);
}

/* Gold rule divider on left column */
.reserva-divider {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.3));
  border-radius: 2px;
  margin: 24px 0;
}

/* ── FAQ ── */
.section-faq {
  padding: 120px 0;
  background: var(--dark);
}
.section-faq .section-header .section-title { color: var(--white); }
.faq-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 0;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid rgba(201,162,39,0.1); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-align: left;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.02em;
}
.faq-q:hover { background: rgba(201,162,39,0.04); color: var(--white); }
.faq-q[aria-expanded="true"] { color: var(--gold); background: rgba(201,162,39,0.05); }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); opacity: 1; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 28px 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid rgba(201,162,39,0.12); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.logo-apt-sm {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-inner a { color: var(--gold-dark); transition: color var(--transition); }
.footer-bottom-inner a:hover { color: var(--gold); }

/* ══════════════════════
   LUGARES CERCANOS
══════════════════════ */
.section-lugares {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--cream-2);
}
.lugares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-2);
  border: 1px solid var(--cream-2);
}
.lugar-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--transition);
}
.lugar-card:hover { background: var(--cream); }
.lugar-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lugar-icon svg { width: 18px; height: 18px; color: var(--gold-dark); }
.lugar-info { flex: 1; }
.lugar-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 4px;
}
.lugar-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.lugar-info p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.lugar-dist {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-left: 12px;
  border-left: 1px solid var(--cream-2);
}
.lugar-min {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.lugar-min-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════
   CORPORATIVA
══════════════════════ */
.section-corporativa {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-corporativa::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.corporativa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.corp-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 40px;
}
.corp-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.corp-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.corporativa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.corp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.corp-card--highlight {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.3);
}
.corp-card--highlight svg { color: var(--gold); }
.corp-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.corp-card-num small {
  font-size: 22px;
  color: var(--gold-dark);
  margin-left: 2px;
}
.corp-card-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ══════════════════════
   POLÍTICAS
══════════════════════ */
.section-politicas {
  padding: 120px 0;
  background: var(--cream);
}
.politicas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.politica-card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-top: 2px solid var(--gold);
  padding: 32px 24px;
}
.politica-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.politica-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.politica-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
}
.politica-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.politica-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-2);
}
.politica-list li:last-child { border-bottom: none; padding-bottom: 0; }
.politica-list li span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.politica-list li strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* ══════════════════════
   WA CHAT WIDGET
══════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  /* El contenedor no intercepta toques — solo los hijos visibles sí */
  pointer-events: none;
}
.wa-widget > * {
  pointer-events: auto;
}

/* ── Popup ── */
.wa-popup {
  width: 340px;
  background: #ECE5DD;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.34,1.56,0.64,1), transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  transform-origin: bottom right;
}
.wa-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Header */
.wa-header {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-header-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #C9A227, #8B6914);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0;
}
.wa-header-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #075E54;
}
.wa-header-info { flex: 1; }
.wa-header-info strong {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.wa-header-info span {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.wa-restart-btn,
.wa-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.wa-restart-btn:hover,
.wa-close-btn:hover { background: rgba(255,255,255,0.1); color: white; }

/* Chat area */
.wa-chat {
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
  max-height: 420px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a22720' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-chat::-webkit-scrollbar { width: 4px; }
.wa-chat::-webkit-scrollbar-track { background: transparent; }
.wa-chat::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

.wa-date-stamp {
  text-align: center;
  font-size: 10px;
  color: rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.6);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  margin: 0 auto 4px;
  align-self: center;
}

/* Message rows */
.wa-msg-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.wa-msg-row--out { justify-content: flex-end; }
.wa-msg-row--hidden {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-msg-row--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Message bubbles */
.wa-msg {
  max-width: 82%;
  padding: 9px 12px 6px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  position: relative;
}
.wa-msg--in {
  background: white;
  border-radius: 0 8px 8px 8px;
}
.wa-msg--out {
  background: #DCF8C6;
  border-radius: 8px 8px 0 8px;
}
.wa-msg p {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.55;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.wa-msg-meta {
  font-size: 10px;
  color: #999;
  display: block;
  text-align: right;
}

/* Typing indicator */
.wa-typing-bubble {
  background: white;
  border-radius: 0 8px 8px 8px;
  padding: 12px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  width: fit-content;
}
.wa-typing-bubble span {
  width: 7px;
  height: 7px;
  background: #aaa;
  border-radius: 50%;
  display: block;
  animation: wa-bounce 1.2s infinite ease-in-out;
}
.wa-typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes wa-bounce {
  0%, 60%, 100% { transform: translateY(0); background: #bbb; }
  30% { transform: translateY(-5px); background: #25D366; }
}

/* Quick replies */
.wa-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-quick-replies.visible {
  opacity: 1;
  transform: translateY(0);
}
.wa-qr-hint {
  font-size: 10px;
  color: rgba(0,0,0,0.45);
  text-align: center;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
}
.wa-qr-btn {
  background: white;
  border: 1.5px solid #25D366;
  color: #075E54;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 20px;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, transform 0.15s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  width: 100%;
}
.wa-qr-btn:hover {
  background: #f0fdf4;
  transform: translateX(-2px);
}
.wa-qr-btn:active { transform: scale(0.98); }

/* Footer note */
.wa-footer-note {
  padding: 10px 16px;
  background: white;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #888;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ── FAB button ── */
.wa-fab-btn {
  position: relative;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.wa-fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.15);
}
.wa-fab-icon-wrap { display: flex; align-items: center; }
.wa-fab-label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.wa-fab-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #ff3b30;
  border-radius: 50%;
  border: 2px solid white;
  animation: wa-pulse-red 2s infinite;
}
@keyframes wa-pulse-red {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,59,48,0.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(255,59,48,0); }
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Preview bubble */
.wa-preview-bubble {
  position: absolute;
  bottom: 66px;
  right: 0;
  background: white;
  border-radius: 16px 16px 4px 16px;
  padding: 12px 36px 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  max-width: 240px;
  animation: wa-preview-in 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  cursor: pointer;
}
.wa-preview-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 0px solid transparent;
  border-top: 8px solid white;
}
.wa-preview-bubble p {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  margin: 0;
}
.wa-preview-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 11px;
  color: #aaa;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
}
.wa-preview-close:hover { color: #555; }
.wa-preview-bubble.hiding {
  animation: wa-preview-out 0.25s ease forwards;
}
@keyframes wa-preview-in {
  from { opacity: 0; transform: translateY(10px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wa-preview-out {
  to { opacity: 0; transform: translateY(8px) scale(0.94); }
}

/* Blue read ticks */
.wa-msg-meta.read { color: #53bdeb; }

/* ── Date picker widget ── */
.wa-date-widget {
  background: white;
  border-radius: 0 12px 12px 12px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 92%;
}
.wa-date-widget p {
  font-size: 13px;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}
.wa-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.wa-date-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  font-family: 'Inter', sans-serif;
}
.wa-date-label input[type="date"] {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  outline: none;
  background: #fafafa;
  transition: border-color 0.15s;
}
.wa-date-label input[type="date"]:focus { border-color: #25D366; }
.wa-date-confirm {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.wa-date-confirm:hover { background: #1ebe5d; }
.wa-date-confirm:disabled { background: #ccc; cursor: default; }
.wa-date-nights {
  text-align: center;
  font-size: 11px;
  color: #25D366;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
  min-height: 16px;
}

/* ── Gallery ── */
.wa-gallery-bubble {
  background: white;
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 96%;
}
.wa-gallery-track-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.wa-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}
.wa-gallery-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}
.wa-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 2;
}
.wa-gallery-nav:hover { background: rgba(0,0,0,0.65); }
.wa-gallery-prev { left: 8px; }
.wa-gallery-next { right: 8px; }
.wa-gallery-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.wa-gallery-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.wa-gallery-dots span.active { background: white; }
.wa-gallery-info {
  padding: 12px 14px 10px;
}
.wa-gallery-room-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}
.wa-gallery-room-price {
  font-size: 12px;
  color: #25D366;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin: 2px 0 6px;
}
.wa-gallery-room-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.wa-gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.wa-gallery-tags span {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.wa-gallery-meta {
  padding: 0 14px 10px;
  font-size: 10px;
  color: #999;
  text-align: right;
  font-family: 'Inter', sans-serif;
}

/* ── Star rating ── */
.wa-stars-widget {
  background: white;
  border-radius: 0 12px 12px 12px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 90%;
}
.wa-stars-widget p {
  font-size: 13px;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
  line-height: 1.5;
}
.wa-stars-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.wa-stars-row button {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #ddd;
  transition: color 0.15s, transform 0.1s;
  line-height: 1;
  padding: 2px;
}
.wa-stars-row button:hover,
.wa-stars-row button.hover { color: #f5a623; transform: scale(1.15); }
.wa-stars-row button.selected { color: #f5a623; }
.wa-stars-meta {
  font-size: 10px;
  color: #999;
  text-align: right;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}

/* ── Connecting to agent ── */
.wa-connecting-bubble {
  background: white;
  border-radius: 0 12px 12px 12px;
  padding: 14px 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 88%;
}
.wa-connecting-label {
  font-size: 13px;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}
.wa-progress-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.wa-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #25D366, #1ebe5d);
  border-radius: 4px;
  transition: width 1.8s ease;
}
.wa-agent-ready {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f0fdf4;
  border: 1.5px solid #25D366;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #075E54;
  text-decoration: none;
  transition: background 0.15s;
}
.wa-agent-ready:hover { background: #dcfce7; }
.wa-agent-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 1.5s infinite;
}

/* Input bar */
.wa-input-bar {
  background: #f0f0f0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wa-input-field {
  flex: 1;
  background: white;
  border: none;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  outline: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-input-field::placeholder { color: #aaa; }
.wa-input-field:disabled { background: #f5f5f5; color: #bbb; cursor: default; }
.wa-input-icon {
  background: none;
  border: none;
  color: #8696a0;
  cursor: default;
  padding: 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wa-input-send {
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.wa-input-send:hover { background: #1ebe5d; }
.wa-input-send:disabled { background: #ccc; cursor: default; }
.wa-input-mic { cursor: default; }

/* ── WA FLOAT (old — keep for back-to-top spacing) ── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5); }
.wa-fab svg { width: 22px; height: 22px; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--dark);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 8px;
  color: var(--gold);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: all var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── DEMO WATERMARK ── */

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 3, 0.96);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img-wrap {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev:hover  { background: rgba(255,255,255,0.18); transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover  { background: rgba(255,255,255,0.18); transform: translateY(-50%) scale(1.05); }

.lightbox-dots {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.lightbox-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── UBICACIÓN ── */
.section-ubicacion {
  padding: 120px 0 0;
  background: var(--white);
  border-top: 1px solid var(--cream-2);
}
.section-ubicacion .section-sub { margin: 16px auto 0; }
.map-wrap {
  margin-top: 56px;
  width: 100%;
  line-height: 0;
}
.map-wrap iframe { display: block; width: 100%; height: 480px; }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1024px) {
  .amenidades-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lugares-grid { grid-template-columns: repeat(2, 1fr); }
  .politicas-grid { grid-template-columns: repeat(2, 1fr); }
  .corporativa-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-badges { display: none; }
  .hero-content { padding-top: 100px; }

  .section-nosotros {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 24px;
  }
  .nosotros-photo { max-height: 380px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-grid .room-card:last-child { grid-column: span 1; max-width: none; }

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

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeria-item--wide { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/7; }

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

  .reserva-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0; }
  .footer-brand { grid-column: span 2; }

  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .amenidades-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item--wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .lugares-grid { grid-template-columns: 1fr; }
  .politicas-grid { grid-template-columns: 1fr; }
  .corporativa-cards { grid-template-columns: 1fr 1fr; }
  .wa-fab-label { display: none; }
  .wa-fab-btn { border-radius: 50%; padding: 16px; }
  .wa-popup { width: calc(100vw - 40px); }
}

/* ── PAGE TRANSITION ── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.page-transition.active {
  opacity: 1;
  pointer-events: all;
}
.pt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pt-logo {
  width: 160px;
  filter: invert(1);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}
.page-transition.active .pt-logo {
  opacity: 1;
  transform: scale(1);
}
.pt-line {
  width: 0px;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s ease 0.15s;
}
.page-transition.active .pt-line {
  width: 120px;
}

/* ── MAP TABS & INTERACTIVE MAP ── */
.map-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 0 28px;
}
.map-tab {
  border: 1px solid var(--cream-2);
  background: var(--cream);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.map-tab.active, .map-tab:hover {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}
.map-panel { width: 100%; }
.custom-map-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.custom-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Pulse animation for hotel marker */
@keyframes mapPulse {
  0%   { r: 22; opacity: 0.7; }
  70%  { r: 38; opacity: 0; }
  100% { r: 38; opacity: 0; }
}
.pulse-ring {
  animation: mapPulse 2.2s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Map location hover */
.map-location circle:first-of-type {
  transition: r 0.2s, filter 0.2s;
}
.map-location:hover circle:first-of-type {
  filter: brightness(1.3);
}
.map-hotel circle:nth-child(2) {
  transition: r 0.2s;
}
.map-hotel:hover circle:nth-child(2) {
  r: 18;
}

/* Map tooltip */
.map-tooltip {
  position: fixed;
  z-index: 9998;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.map-tooltip strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 3px;
}
.map-tooltip span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── POR QUÉ ELEGIRNOS ── */
.section-porque {
  background: var(--cream);
  padding: 100px 0;
}
.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.porque-card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.porque-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.porque-icon {
  width: 52px; height: 52px;
  background: var(--dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.porque-icon svg { width: 24px; height: 24px; }
.porque-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.porque-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .porque-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .porque-grid { grid-template-columns: 1fr; }
}

/* ── REVIEWS ── */
.section-reviews {
  background: var(--white);
  padding: 100px 0 80px;
}
.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.reviews-score-box {
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.rsb-g-logo { margin-bottom: 4px; }
.rsb-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.rsb-stars {
  font-size: 22px;
  color: #F4B400;
  letter-spacing: 2px;
}
.rsb-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.rsb-link {
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.rsb-link:hover { color: var(--gold-dark); }

.reviews-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.reviews-track-wrap::-webkit-scrollbar { display: none; }
.reviews-track-wrap.grabbing { cursor: grabbing; }
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-bottom: 8px;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-meta strong { font-size: 14px; color: var(--text); }
.review-meta span { font-size: 12px; color: var(--text-muted); }
.review-g { margin-left: auto; flex-shrink: 0; }
.review-stars {
  font-size: 16px;
  color: #F4B400;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .reviews-top { flex-direction: column; align-items: flex-start; }
  .reviews-score-box { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 20px; }
  .rsb-number { font-size: 40px; }
  .review-card { width: 280px; }
}

/* ── ROOM CARD CAROUSEL ── */
.room-card-img {
  position: relative;
  overflow: hidden;
}
.card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.card-nav svg { width: 16px; height: 16px; }
.card-nav--prev { left: 8px; }
.card-nav--next { right: 8px; }
.room-card-img:hover .card-nav { opacity: 1; }
.card-nav:hover { background: rgba(0,0,0,0.7); }

.card-counter {
  position: absolute;
  bottom: 46px;
  right: 10px;
  z-index: 4;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  padding: 2px 8px;
  border-radius: 20px;
  pointer-events: none;
}

.card-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
  cursor: zoom-in;
  z-index: 3;
}
.card-zoom-hint svg {
  width: 36px; height: 36px;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.room-card-img:hover .card-zoom-hint { background: rgba(0,0,0,0.15); }
.room-card-img:hover .card-zoom-hint svg { opacity: 1; transform: scale(1); }

/* ── ROOM GALLERY MODAL ── */
.room-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.room-gallery-modal.open {
  opacity: 1;
  pointer-events: all;
}
.rg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
.rg-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rg-img-wrap img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: opacity 0.2s;
}
.rg-close {
  position: fixed;
  top: 20px; right: 24px;
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.rg-close:hover { background: rgba(255,255,255,0.25); }
.rg-close svg { width: 18px; height: 18px; }
.rg-prev, .rg-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.rg-prev { left: 20px; }
.rg-next { right: 20px; }
.rg-prev:hover, .rg-next:hover { background: rgba(255,255,255,0.25); }
.rg-prev svg, .rg-next svg { width: 22px; height: 22px; }
.rg-footer {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rg-counter {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}
.rg-dots {
  display: flex;
  gap: 6px;
}
.rg-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.rg-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE — COMPLETO
═══════════════════════════════════════ */

/* ── NAV ── */
@media (max-width: 768px) {
  .nav-logo-img { height: 54px; }
  .nav-inner { padding: 0 20px; height: 64px; }
  #mainNav { height: 64px; }
  .lang-toggle { padding: 6px 12px; font-size: 11px; }
}

/* ── HERO ── */
@media (max-width: 768px) {
  .hero-content { padding: 110px 24px 80px; }
  .hero-content h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-content p { font-size: 15px; }
  .btn-group { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-group .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-scroll-hint { bottom: 100px; }
}

/* ── SECCIONES — padding ── */
@media (max-width: 768px) {
  .section-nosotros  { padding: 60px 24px; }
  .section-stats     { padding: 40px 0; }
  .section-rooms     { padding: 60px 0; }
  .section-amenidades { padding: 60px 0; }
  .section-galeria   { padding: 60px 0; }
  .section-ubicacion { padding: 60px 0; }
  .section-lugares   { padding: 60px 0; }
  .section-porque    { padding: 60px 0; }
  .section-reviews   { padding: 60px 0 48px; }
  .section-testimonios { padding: 60px 0; }
  .section-corporativa { padding: 60px 0; }
  .section-politicas { padding: 60px 0; }
  .section-reserva   { padding: 60px 0; }
  .section-faq       { padding: 60px 0; }
  .container         { padding: 0 20px; }
  .section-header    { margin-bottom: 40px; }
  .section-title     { font-size: clamp(30px, 8vw, 48px); }
}

/* ── NOSOTROS ── */
@media (max-width: 768px) {
  .section-nosotros { grid-template-columns: 1fr; gap: 40px; }
  .nosotros-photo { max-height: 320px; border-radius: 8px; }
  .nosotros-pills { flex-wrap: wrap; gap: 8px; }
  .nosotros-pills span { font-size: 12px; padding: 6px 14px; }
}

/* ── STATS ── */
@media (max-width: 480px) {
  .stat-num { font-size: 44px; }
  .stat-plus { font-size: 28px; }
  .stat-label { font-size: 12px; }
}

/* ── ROOMS FILTER ── */
@media (max-width: 768px) {
  .rooms-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 20px 12px;
    scrollbar-width: none;
    gap: 8px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .rooms-filter::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; white-space: nowrap; }
}

/* ── ROOM CARDS ── */
@media (max-width: 768px) {
  .room-card-img { height: 220px; }
  .room-card-body { padding: 20px; }
  .card-nav { opacity: 1; width: 32px; height: 32px; }
  .card-counter { bottom: 40px; }
}

/* ── ROOM GALLERY MODAL mobile ── */
@media (max-width: 768px) {
  .rg-img-wrap img { max-height: 68vh; max-width: 96vw; }
  .rg-prev { left: 6px; width: 40px; height: 40px; }
  .rg-next { right: 6px; width: 40px; height: 40px; }
  .rg-prev svg, .rg-next svg { width: 18px; height: 18px; }
  .rg-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .rg-footer { bottom: 16px; }
}

/* ── GALERÍA ── */
@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .galeria-item--wide { grid-column: span 2; }
  .galeria-item { height: 160px; }
}

/* ── MAP TABS + SVG MAP ── */
@media (max-width: 768px) {
  .map-tabs { padding: 0 20px 20px; justify-content: flex-start; }
  .map-tab { padding: 8px 18px; font-size: 12px; }
  .custom-map-wrap { border-radius: 0; }
}

/* ── POR QUÉ ELEGIRNOS ── */
@media (max-width: 560px) {
  .porque-grid { grid-template-columns: 1fr; gap: 16px; }
  .porque-card { padding: 24px 20px; }
}

/* ── REVIEWS ── */
@media (max-width: 768px) {
  .reviews-top { flex-direction: column; align-items: flex-start; gap: 28px; margin-bottom: 32px; }
  .reviews-score-box {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    gap: 10px 20px;
  }
  .rsb-number { font-size: 42px; }
  .review-card { width: 272px; padding: 20px; }
}

/* ── SECCIÓN CORPORATIVA ── */
@media (max-width: 768px) {
  .corporativa-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .corp-card { padding: 20px 16px; }
  .corp-card-num { font-size: 28px; }
}

/* ── POLÍTICAS ── */
@media (max-width: 480px) {
  .politica-card { padding: 20px 16px; }
  .politica-list li { flex-direction: column; gap: 2px; align-items: flex-start; }
}

/* ── RESERVA / FORM ── */
@media (max-width: 768px) {
  .reserva-inner { grid-template-columns: 1fr; gap: 36px; }
  .reserva-form { padding: 24px 20px; border-radius: 8px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .radio-group { flex-wrap: wrap; gap: 8px; }
  .radio-opt { font-size: 13px; }
  .reserva-text { text-align: center; }
  .reserva-contact { flex-direction: column; gap: 12px; align-items: center; }
  .reserva-divider { display: none; }
}

/* ── FAQ ── */
@media (max-width: 768px) {
  .faq-q { font-size: 15px; padding: 16px 0; }
  .faq-a p { font-size: 14px; }
}

/* ── LUGARES CERCANOS ── */
@media (max-width: 768px) {
  .lugar-card { padding: 16px; gap: 12px; }
  .lugar-icon { width: 40px; height: 40px; }
}

/* ── FOOTER ── */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; padding: 40px 20px; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 12px; }
}

/* ── WHATSAPP WIDGET mobile ── */
@media (max-width: 480px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-popup {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 72px;
    max-height: 75vh;
  }
  .wa-fab-btn { padding: 14px 18px; border-radius: 50px; }
  .wa-fab-label { display: none; }
  .wa-preview-bubble { right: 0; max-width: calc(100vw - 80px); }
}

/* ── PAGE TRANSITION ── */
@media (max-width: 768px) {
  .pt-logo { width: 120px; }
  .pt-line { display: none; }
}

/* ── BACK TO TOP ── */
@media (max-width: 480px) {
  .back-to-top { bottom: 88px; right: 16px; width: 40px; height: 40px; }
}

/* ── SLOGAN STRIP ── */
@media (max-width: 768px) {
  .slogan-strip-inner { gap: 20px; font-size: 12px; }
}

/* Touch: make hover effects always visible on mobile */
@media (hover: none) {
  .card-nav { opacity: 1; }
  .galeria-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
  .galeria-overlay span { opacity: 1; }
  .room-card:hover { transform: none; }
  .porque-card:hover { transform: none; }
  .review-card:hover { transform: none; }
}
