/* ══════════════════════════════════════════════════════════
   1. VARIABLES
══════════════════════════════════════════════════════════ */
:root {
  /* Paleta — logo Oceanic */
  --sky: #5b9ec9; /* azul Oceanic   */
  --sky-deep: #2a6fa8; /* azul CTA       */
  --sky-night: #0d3a50; /* nav / footer   */
  --sun: #f5a623; /* ámbar solar    */
  --cream: #f7f0e3; /* fondo alterno  */
  --cream-dark: #ede3d2; /* border suave   */
  --white: #ffffff;
  --text: #3c4a4d;
  --text-soft: #5c7074;
  /* Tipografía */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* Escala */
  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1rem;
  --t-lg: 1.125rem;
  --t-xl: 1.25rem;
  --t-2xl: 1.5rem;
  --t-3xl: 2rem;
  /* Espaciado */
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  /* Layout */
  --max-w: 1200px;
  --r: 6px;
  --r-lg: 14px;
  --ease: 240ms ease;
}
/* ══════════════════════════════════════════════════════════
   2. RESET
══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
/* Foco visible — accesibilidad de teclado */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
  border-radius: var(--r);
}
/* ══════════════════════════════════════════════════════════
   3. UTILIDADES
══════════════════════════════════════════════════════════ */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Firma de diseño: línea ámbar + label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--sun);
  border-radius: 2px;
  flex-shrink: 0;
}
/* ══════════════════════════════════════════════════════════
   4. TIPOGRAFÍA
══════════════════════════════════════════════════════════ */
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 300;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 400;
}
h3 {
  font-size: var(--t-xl);
  font-weight: 500;
  font-style: italic;
}
p {
  max-width: 62ch;
  line-height: 1.8;
}
/* ══════════════════════════════════════════════════════════
   5. BOTONES
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 700;
  border-radius: var(--r);
  transition: all var(--ease);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
/* WhatsApp — verde oscuro, no neon */
.btn-wa {
  background: #0a6b5f;
  color: #fff;
  will-change: transform;
}
.btn-wa:hover {
  background: #085950;
  transform: translateY(-2px);
}
/* Azul primario */
.btn-primary {
  background: var(--sky);
  color: #fff;
}
.btn-primary:hover {
  background: var(--sky-deep);
}
/* Outline blanco (sobre fondos oscuros/foto) */
.btn-outline {
  background: var(--sun);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
}
.btn-outline:hover {
  background: #f5b349;
  border-color: #fff;
}
/* Outline azul (sobre fondos claros) */
.btn-sky-outline {
  background: transparent;
  color: #1f6fa0;
  border: 1.5px solid #1f6fa0;
  padding: 0.75rem 1.5rem;
}
.btn-sky-outline:hover {
  background: #1f6fa0;
  color: #fff;
}
/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  padding-right: 1rem;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  background: rgba(10, 42, 60, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: var(--sp-sm);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--r);
  padding: 3px 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 70px;
  width: auto;
  aspect-ratio: 140 / 78;
}
.nav-links {
  display: none;
  gap: var(--sp-md);
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--sun);
}
.nav-cta {
  display: none !important;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.lang-toggle {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r);
}
.lang-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.nav-mobile {
  position: fixed;
  inset-block-start: 66px;
  inset-inline: 0;
  background: var(--sky-night);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--ease),
    opacity var(--ease);
  z-index: 199;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--t-lg);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile .btn-wa {
  margin-top: var(--sp-sm);
  justify-content: center;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex !important;
  }
  .nav-toggle {
    display: none;
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a4a5e;
  contain: layout style paint;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  contain: strict;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 22, 35, 0.74) 0%,
    rgba(5, 22, 35, 0.42) 28%,
    rgba(5, 22, 35, 0.42) 66%,
    rgba(5, 22, 35, 0.8) 100%
  );
  pointer-events: none;
  z-index: 1;
  contain: layout style;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo-wrap {
  display: inline-block;
}
.hero-logo-wrap img {
  height: 100px;
  width: auto;
}
.hero h1 {
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
}
.hero h1 .h1-en {
  display: block;
  font-size: 0.42em;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.5rem;
  padding-bottom: 2rem;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
}
.hero-rating {
  margin-top: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--t-sm);
}
.hero-stars {
  color: #f5c842;
  font-size: var(--t-xl);
  line-height: 1;
}
/* ══════════════════════════════════════════════════════════
   8. SECCIONES BASE
══════════════════════════════════════════════════════════ */
.sec {
  padding-block: var(--sp-xl);
}
.sec-cream {
  background: var(--cream);
}
.sec-night {
  background: var(--sky-night);
}
.sec-white {
  background: var(--white);
}
/* ══════════════════════════════════════════════════════════
   9. PILARES (por qué Oceanic)
══════════════════════════════════════════════════════════ */
.pillars {
  display: grid;
  gap: var(--sp-md);
  grid-template-columns: 1fr;
  margin-top: var(--sp-lg);
}
@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pillar {
  text-align: center;
  padding: var(--sp-md) var(--sp-sm);
}
.pillar-dot {
  width: 10px;
  height: 10px;
  background: var(--sun);
  border-radius: 50%;
  margin: 0 auto 1.4rem;
}
.pillar h3 {
  margin-bottom: 0.6rem;
}
.pillar p {
  font-size: var(--t-sm);
  color: var(--text-soft);
  max-width: 28ch;
  margin-inline: auto;
}
/* ══════════════════════════════════════════════════════════
   9.1 FRASES QUE SE QUEDAN — video + carrusel, lado a lado
══════════════════════════════════════════════════════════ */
.frases-wrap {
  display: grid;
  gap: var(--sp-md);
  grid-template-columns: 1fr;
  margin-top: var(--sp-lg);
}
@media (min-width: 800px) {
  .frases-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.frases-video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sky-night);
  aspect-ratio: 4/3;
}
.frases-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.frases-carousel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--cream-dark);
  touch-action: pan-y;
}
.frases-video-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 35, 50, 0.55) 0%, rgba(8, 35, 50, 0) 45%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  pointer-events: none;
}
.frases-video-caption span {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--t-sm);
  letter-spacing: 0.03em;
}

@media (min-width: 800px) {
  .frases-carousel {
    aspect-ratio: unset;
    height: 100%;
  }
}
.frases-carousel-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.frases-carousel-track::-webkit-scrollbar {
  display: none;
}
.frases-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.frases-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frases-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 58, 80, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity var(--ease),
    background var(--ease);
}
.frases-carousel:hover .frases-carousel-arrow,
.frases-carousel:focus-within .frases-carousel-arrow {
  opacity: 1;
}
.frases-carousel-arrow:hover {
  background: rgba(13, 58, 80, 0.85);
}
.frases-carousel-arrow svg {
  width: 18px;
  height: 18px;
}
.frases-carousel-arrow--prev {
  left: 0.75rem;
}
.frases-carousel-arrow--next {
  right: 0.75rem;
}
.frases-carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  pointer-events: none;
}
.frases-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  transition:
    background var(--ease),
    transform var(--ease);
}
.frases-carousel-dot.is-active {
  background: var(--sky-deep);
  transform: scale(1.3);
}
@media (hover: none) {
  .frases-carousel-arrow {
    opacity: 0.85;
  }
}
/* ══════════════════════════════════════════════════════════
   23. GALERÍA
══════════════════════════════════════════════════════════ */
.galeria-grid {
  columns: 2;
  column-gap: 0.5rem;
  margin-top: var(--sp-lg);
}
@media (min-width: 600px) {
  .galeria-grid {
    columns: 3;
  }
}
@media (min-width: 900px) {
  .galeria-grid {
    columns: 4;
  }
}
.galeria-item {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
}
.galeria-item img {
  width: 100%;
  display: block;
  transition:
    transform 400ms ease,
    opacity var(--ease);
  will-change: transform;
}
.galeria-item:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}
.galeria-cta {
  text-align: center;
  margin-top: var(--sp-lg);
}

/* ── frases: proporción portrait (Instagram) y counter ── */
.frases-carousel {
  aspect-ratio: 3/4;
  max-height: 600px;
}
@media (min-width: 800px) {
  .frases-carousel {
    aspect-ratio: unset;
    height: 100%;
    max-height: none;
  }
}
.frases-carousel-slide img {
  object-fit: cover;
  object-position: center top;
}

/* Counter en lugar de 41 puntos */
.frases-counter {
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  z-index: 3;
  background: rgba(5, 22, 35, 0.55);
  color: #fff;
  font-size: var(--t-xs);
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.frases-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
.frases-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--sky);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease);
  will-change: transform;
}
.frases-social a:hover {
  background: var(--sky);
  color: #fff;
  transform: translateY(-3px);
}
.frases-social svg {
  width: 22px;
  height: 22px;
}
/* ══════════════════════════════════════════════════════════
   10. CARDS DE HABITACIONES
══════════════════════════════════════════════════════════ */
.rooms-grid {
  display: grid;
  gap: var(--sp-md);
  grid-template-columns: 1fr;
  margin-top: var(--sp-lg);
}
@media (min-width: 600px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.room-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(61, 74, 77, 0.08);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.room-card:hover {
  transform: translateY(-5px);
}
/* ── 10.1 CARRUSEL — reemplaza la imagen única ──────────── */
.room-carousel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  /* aísla el contexto de touch del scroll vertical de la página */
  touch-action: pan-y;
  min-height: 200px;
}
.room-carousel-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* oculta scrollbar nativo, las flechas/dots son la UI */
  scrollbar-width: none;
}
.room-carousel-track::-webkit-scrollbar {
  display: none;
}
.room-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.room-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--sky-deep);
  color: #fff;
  font-size: var(--t-xs);
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
/* Flechas — visibles siempre en touch, on-hover en desktop */
.room-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(13, 58, 80, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity var(--ease),
    background var(--ease);
}
.room-carousel:hover .room-carousel-arrow,
.room-carousel:focus-within .room-carousel-arrow {
  opacity: 1;
}
.room-carousel-arrow:hover {
  background: rgba(13, 58, 80, 0.85);
}
.room-carousel-arrow svg {
  width: 16px;
  height: 16px;
}
.room-carousel-arrow--prev {
  left: 0.6rem;
}
.room-carousel-arrow--next {
  right: 0.6rem;
}
/* Dots de progreso */
.room-carousel-dots {
  position: absolute;
  bottom: 0.65rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  pointer-events: none;
}
.room-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition:
    background var(--ease),
    transform var(--ease);
}
.room-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}
/* En touch (sin hover real) las flechas siempre visibles */
@media (hover: none) {
  .room-carousel-arrow {
    opacity: 0.85;
  }
}
@media (prefers-reduced-motion: reduce) {
  .room-carousel-track {
    scroll-behavior: auto;
  }
}
.room-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-body .btn {
  align-self: flex-start;
  max-width: 100%;
}
.room-name {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-style: italic;
  margin-bottom: 0.3rem;
}
.room-cap {
  font-size: var(--t-sm);
  color: var(--text-soft);
  margin-bottom: 0.85rem;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  flex: 1;
  margin-bottom: 1rem;
  align-items: flex-start;
  align-content: flex-start;
}
.tag {
  font-size: var(--t-xs);
  background: var(--cream);
  color: var(--text);
  padding: 0.22rem 0.6rem;
  border-radius: var(--r);
  flex-shrink: 0;
}
.rooms-cta {
  text-align: center;
  margin-top: var(--sp-lg);
}
/* Presidencial: horizontal, ancho completo */
.room-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.room-card--featured .room-carousel {
  width: 46%;
  flex-shrink: 0;
  aspect-ratio: unset;
  min-height: 300px;
}
.room-card--featured .room-badge {
  top: 1rem;
  left: 1rem;
}
.room-card--featured .room-body {
  justify-content: center;
}
/* Badge ámbar para la presidencial */
.room-card--featured .room-badge {
  background: var(--sun);
  color: var(--sky-night);
}
@media (max-width: 640px) {
  .room-card--featured {
    flex-direction: column;
  }
  .room-card--featured .room-carousel {
    width: 100%;
    min-height: 220px;
    aspect-ratio: 4/3;
  }
}
/* Sub-descripción en cards */
.room-sub {
  font-size: var(--t-sm);
  color: var(--text-soft);
  margin-top: -0.2rem;
  margin-bottom: 0.9rem;
  font-style: italic;
  max-width: none;
}
/* ══════════════════════════════════════════════════════════
   11. SERVICIOS
══════════════════════════════════════════════════════════ */
.servicios-wrap {
  display: grid;
  gap: var(--sp-md);
  align-items: center;
}
@media (min-width: 768px) {
  .servicios-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.servicios-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.servicios-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.servicios-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}
.s-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--t-sm);
}
.s-item::before {
  content: '·';
  color: var(--sun);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.2;
}
/* ══════════════════════════════════════════════════════════
   12. VIDEO
══════════════════════════════════════════════════════════ */
.video-wrap {
  position: relative;
  width: 100%;
  height: clamp(260px, 65vh, 680px);
  overflow: hidden;
  background: var(--sky-night);
}
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-caption {
  position: absolute;
  inset: 0;
  background: rgba(8, 35, 50, 0.32);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-md);
  pointer-events: none;
}
.video-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--t-sm);
  letter-spacing: 0.05em;
}
/* ══════════════════════════════════════════════════════════
   13. RESTAURANTE
══════════════════════════════════════════════════════════ */
.rest-wrap {
  display: grid;
  gap: var(--sp-md);
  align-items: stretch;
}
@media (min-width: 768px) {
  .rest-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.platos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.plato {
  border-left: 2px solid var(--sun);
  padding: 0.45rem 0.75rem;
  font-size: var(--t-sm);
  background: var(--cream);
  border-radius: 0 var(--r) var(--r) 0;
}
.rest-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.rest-pdf {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.rest-pdf img {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  border: 1px solid var(--cream-dark);
  flex-shrink: 0;
}
.rest-pdf-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.rest-pdf-links a {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--sky);
  transition: color var(--ease);
}
.rest-pdf-links a:hover {
  color: var(--sky-deep);
}
.rest-pdf-links span {
  font-size: var(--t-xs);
  color: var(--text-soft);
}
.eventos-bloque {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  background: var(--cream-dark);
  display: flex;
  align-items: flex-end;
}
.eventos-bloque img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eventos-bloque::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 22, 35, 0.88) 0%,
    rgba(5, 22, 35, 0.35) 55%,
    rgba(5, 22, 35, 0.08) 100%
  );
}
.eventos-info {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  width: 100%;
}
.eventos-info h3 {
  color: #fff;
  font-size: var(--t-2xl);
  margin-bottom: 0.4rem;
}
.eventos-info p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--t-sm);
  margin-bottom: 1.1rem;
  max-width: none;
  line-height: 1.6;
}
/* ══════════════════════════════════════════════════════════
   14. TURISMO
══════════════════════════════════════════════════════════ */
.turismo-grid {
  display: grid;
  gap: var(--sp-sm);
  grid-template-columns: 1fr;
  margin-top: var(--sp-lg);
}
@media (min-width: 600px) {
  .turismo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .turismo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.t-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--ease);
  display: flex;
  flex-direction: column;
}
.t-card:hover {
  background: rgba(255, 255, 255, 0.13);
}
.t-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.t-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition:
    opacity var(--ease),
    transform 400ms ease;
  will-change: transform, opacity;
}
.t-card:hover .t-card-img img {
  opacity: 1;
  transform: scale(1.04);
}
.t-card-body {
  padding: var(--sp-md);
}
.t-card-body h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.t-card-body p {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.68);
  max-width: none;
}
/* ══════════════════════════════════════════════════════════
   15. RESEÑAS + MAPA
══════════════════════════════════════════════════════════ */
.rev-head {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}
.rev-score-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: #1f6fa0;
  line-height: 1;
}
.rev-score-stars {
  color: #f5c842;
  font-size: 1.2rem;
  margin-block: 0.2rem;
}
.rev-score-count {
  font-size: var(--t-xs);
  color: var(--text-soft);
}
.rev-grid {
  display: grid;
  gap: var(--sp-sm);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-lg);
}
@media (min-width: 600px) {
  .rev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .rev-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}
.rev-stars {
  color: #f5c842;
  font-size: var(--t-sm);
  margin-bottom: 0.5rem;
}
.rev-text {
  font-size: var(--t-sm);
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.rev-author {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rev-map-grid {
  display: grid;
  gap: var(--sp-md);
}
@media (min-width: 960px) {
  .rev-map-grid {
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
}
.map-sticky {
  position: sticky;
  top: 80px;
}
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}
.map-wrap iframe {
  width: 100%;
  height: 340px;
  display: block;
}
@media (min-width: 768px) {
  .map-wrap iframe {
    height: 420px;
  }
}
.map-note {
  font-size: var(--t-sm);
  color: var(--text-soft);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: none;
}
/* ══════════════════════════════════════════════════════════
   16. FAQ
══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 820px;
  display: grid;
  gap: 0.75rem;
  margin-top: var(--sp-lg);
}
details.faq {
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
}
details.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--t-base);
  list-style: none;
  user-select: none;
}
details.faq summary::-webkit-details-marker {
  display: none;
}
details.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform var(--ease);
}
details.faq[open] summary {
  color: var(--sky);
}
details.faq[open] summary::after {
  transform: rotate(45deg);
}
.faq-ans {
  padding: 0 1.25rem 1rem;
  font-size: var(--t-sm);
  color: var(--text-soft);
  line-height: 1.75;
}
/* ══════════════════════════════════════════════════════════
   17. CTA RESERVAR
══════════════════════════════════════════════════════════ */
.cta-sec {
  background: linear-gradient(140deg, var(--sky-night) 0%, var(--sky-deep) 100%);
  color: #fff;
  text-align: center;
  padding-block: var(--sp-xl);
}
.cta-sec h2 {
  color: #fff;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.cta-sec > .container > p {
  color: rgba(255, 255, 255, 0.82);
  margin-inline: auto;
  margin-bottom: var(--sp-md);
}
.cta-sec .eyebrow {
  color: rgba(255, 255, 255, 0.5);
  justify-content: center;
}
.cta-sec .eyebrow::before {
  background: rgba(255, 255, 255, 0.3);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
  margin-top: var(--sp-md);
}
/* ══════════════════════════════════════════════════════════
   18. FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--sky-night);
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--sp-lg);
}
.footer-grid {
  display: grid;
  gap: var(--sp-md);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-logo-wrap {
  display: inline-block;
  border-radius: var(--r);
  padding: 4px 10px;
  margin-bottom: 1rem;
}
.footer-logo-wrap img {
  height: 70px;
  width: auto;
}
.footer-brand p {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  line-height: 1.7;
}
.footer-heading {
  color: #fff;
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-sm);
  max-width: none;
  line-height: 1;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a,
.footer-contact a {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.58);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: var(--t-sm);
}
.footer-social {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}
.footer-social a {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--ease);
}
.footer-social a:hover {
  color: var(--sun);
}
.footer-bottom {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: space-between;
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--ease);
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.65);
}
/* ══════════════════════════════════════════════════════════
   19. WHATSAPP FLOTANTE
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  background: #0a6b5f;
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--t-sm);
  box-shadow: 0 4px 20px rgba(18, 140, 126, 0.35);
  transition: transform var(--ease);
  will-change: transform;
}
.wa-float:hover {
  transform: translateY(-3px);
}
.wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
/* ══════════════════════════════════════════════════════════
   20. REDUCED MOTION
══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
