/* ============================================================
   Motel El Castillo — Sistema visual "Calm" (tema oscuro)
   Tipografía: Epilogue (display) + Inter (cuerpo)
   ============================================================ */

:root {
  /* Superficies */
  --bg: #121009;
  --bg-elevated: #1b1812;
  --bg-soft: #232019;
  --overlay: rgba(10, 9, 6, 0.55);

  /* Acentos */
  --gold: #c9a227;
  --gold-soft: #e0c56d;
  --whatsapp: #1f8f4e;
  --whatsapp-hover: #26a35d;

  /* Texto */
  --text: #f3efe7;
  --text-muted: #aaa093;
  --text-faint: #7d756a;

  /* Líneas y sombras (Calm: suaves, poco ruido) */
  --line: rgba(255, 255, 255, 0.09);
  --line-accent: rgba(201, 162, 39, 0.28);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.22);

  /* Forma */
  --radius: 20px;
  --radius-sm: 14px;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 1.75rem);
  --space-block: clamp(3.5rem, 8vw, 6rem);

  /* Tipografía */
  --font-display: "Epilogue", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding: var(--space-block) 0;
}

.section-sm {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

/* ---------- Tipografía Calm ---------- */

.eyebrow {
  color: var(--gold-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 58ch;
}

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
}

.btn-outline {
  border-color: var(--line-accent);
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
}

.btn-sm {
  min-height: 2.5rem;
  padding-inline: 1.1rem;
  font-size: 0.9rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(18, 16, 9, 0.82);
  border-bottom: 1px solid var(--line);
}

/* Home: header transparente sobre el hero; barra sólida al pasar la cinta */
.page-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease,
    box-shadow 0.28s ease;
}

.page-home .site-header.is-scrolled,
.page-home .site-header.is-nav-open {
  background: rgba(18, 16, 9, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  color: var(--gold);
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.65rem;
  max-width: min(12.5rem, 48vw);
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav .nav-link-label {
  min-width: 0;
}

.site-nav .nav-link-icon {
  flex-shrink: 0;
  opacity: 0.88;
  color: var(--gold-soft);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.site-nav a.nav-link--promo {
  color: #ff8a1a;
  font-weight: 700;
}

.site-nav a.nav-link--promo:hover,
.site-nav a.nav-link--promo[aria-current="page"] {
  color: #ffb45c;
}

.site-nav a.nav-link--promo .nav-link-icon {
  color: #ff8a1a;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--gold);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle-bar::before {
  transform: translateY(-6px);
}

.nav-toggle-bar::after {
  transform: translateY(4px);
}

/* ---------- Hero full viewport (día / noche) ---------- */

.hero-full {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.hero-full-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0c0a06;
}

.hero-full-media img,
.hero-full-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-full-poster {
  z-index: 0;
  transition: opacity 0.35s ease;
}

.hero-full-media.is-playing .hero-full-poster {
  opacity: 0;
  visibility: hidden;
}

.hero-full-media video {
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.7s ease;
  background: #0c0a06;
}

.hero-full-media video.is-fading {
  opacity: 0;
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(12, 10, 6, 0.78) 0%, rgba(12, 10, 6, 0.28) 26%, rgba(12, 10, 6, 0.06) 48%, rgba(12, 10, 6, 0.55) 78%, rgba(12, 10, 6, 0.88) 100%);
}

.hero-full-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(5.5rem, 12vh, 7rem);
  padding-bottom: clamp(1.1rem, 3vh, 2rem);
  min-height: 0;
}

.hero-full-top {
  max-width: 36rem;
}

.hero-full h1 {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(1.85rem, 5.5vw, 3.4rem);
  max-width: 14ch;
}

.hero-full .hero-lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  max-width: 42ch;
}

.hero-full-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-suite-tag {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-muted);
  font-size: 0.78rem;
}

.hero-suite-tag strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.hero-marquee {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  border-block: 1px solid rgba(230, 192, 120, 0.22);
  background: rgba(10, 9, 6, 0.55);
  backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .hero-full {
    height: 100svh;
    min-height: 100svh;
    max-height: none;
  }

  .hero-full h1 {
    font-size: clamp(1.42rem, 6vw, 1.85rem);
    margin: 0.2rem 0 0.35rem;
    max-width: 13ch;
  }

  .hero-full .hero-lead {
    font-size: 0.86rem;
    line-height: 1.35;
    max-width: 32ch;
  }

  .hero-full-inner {
    padding-top: 4.35rem;
    padding-bottom: 0.4rem;
    gap: 0.45rem;
  }

  .hero-full-bottom {
    gap: 0.45rem;
  }

  .hero-full-bottom .btn {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
  }

  .hero-suite-tag {
    font-size: 0.7rem;
    padding: 0.28rem 0.6rem;
  }

  .marquee.hero-marquee {
    padding: 0.45rem 0;
  }

  .hero-marquee .marquee-item {
    font-size: 0.82rem;
    padding-inline: 0.8rem;
    gap: 0.8rem;
  }

  .sticky-cta {
    bottom: 3.5rem;
  }
}

@media (max-width: 720px) and (max-height: 740px) {
  .hero-full .hero-lead {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .hero-full-inner {
    padding-top: 4.1rem;
  }

  .hero-full h1 {
    font-size: 1.4rem;
  }

  .marquee.hero-marquee {
    padding: 0.38rem 0;
  }
}

/* ---------- Cinta loop de categorías ---------- */

.marquee {
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--bg-elevated);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee-scroll 36s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding-inline: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.marquee-item:hover {
  color: var(--gold-soft);
}

.marquee-item::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Rieles horizontales (scroll snap) ---------- */

.rail {
  display: grid;
  grid-auto-flow: column;
  gap: 1.1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding: 0.25rem var(--gutter) 1.4rem;
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: thin;
  scrollbar-color: var(--line-accent) transparent;
}

.rail > * {
  scroll-snap-align: start;
}

.rail::-webkit-scrollbar {
  height: 6px;
}

.rail::-webkit-scrollbar-thumb {
  background: var(--line-accent);
  border-radius: 999px;
}

.rail--promos {
  grid-auto-columns: min(84vw, 380px);
}

.rail--suites {
  grid-auto-columns: min(82vw, 340px);
}

/* ---------- Tarjetas promo (estilo Supercell) ---------- */

.promo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-accent);
}

.promo-card .promo-media,
.promo-card .promo-media > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  z-index: -2;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 9, 6, 0.92) 0%, rgba(10, 9, 6, 0.15) 55%);
  pointer-events: none;
}

.promo-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 1;
  padding: 0.48rem 0.95rem;
  border-radius: 10px;
  background: var(--gold);
  color: #191507;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-soft);
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}

.promo-badge--descuento,
.suite-card-dcto--descuento,
.suite-hero-dcto--descuento,
.suite-dcto-note-pill {
  color: #fff;
  background:
    radial-gradient(ellipse 70% 90% at 18% 30%, rgba(255, 120, 90, 0.55), transparent 58%),
    radial-gradient(ellipse 60% 80% at 88% 75%, rgba(90, 10, 10, 0.7), transparent 60%),
    linear-gradient(135deg, #e53935 0%, #b71c1c 48%, #7f1010 100%);
  background-size: 160% 160%, 160% 160%, 100% 100%;
  animation: pill-glow-drift 14s ease-in-out infinite alternate;
}

.promo-badge--regalo {
  color: #fff;
  background:
    radial-gradient(ellipse 70% 90% at 20% 28%, rgba(210, 255, 120, 0.45), transparent 58%),
    radial-gradient(ellipse 60% 80% at 86% 78%, rgba(20, 70, 25, 0.65), transparent 60%),
    linear-gradient(135deg, #66bb6a 0%, #2e7d32 50%, #1b5e20 100%);
  background-size: 160% 160%, 160% 160%, 100% 100%;
  animation: pill-glow-drift 14s ease-in-out infinite alternate;
}

@keyframes pill-glow-drift {
  from {
    background-position: 8% 20%, 92% 80%, 0 0;
  }
  to {
    background-position: 78% 70%, 18% 25%, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-badge--descuento,
  .suite-card-dcto--descuento,
  .suite-hero-dcto--descuento,
  .suite-dcto-note-pill,
  .promo-badge--regalo {
    animation: none;
    background-size: 100% 100%;
    background-position: center;
  }
}

.promo-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  min-width: 7.8rem;
  padding: 0.58rem 1rem 0.62rem;
  border-radius: 10px;
  background: rgba(12, 10, 8, 0.78);
  border: 1px solid rgba(230, 192, 120, 0.35);
  color: #f4edd8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.promo-countdown-text {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
}

.promo-countdown-label {
  color: rgba(244, 237, 216, 0.72);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.promo-countdown-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gold-soft);
}

/* Barra tipo juego (Clash): borde grueso + fill con brillo */
.promo-countdown-bar {
  display: block;
  width: 100%;
  height: 0.55rem;
  border-radius: 999px;
  background: #1a1208;
  border: 2px solid #0a0704;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.promo-countdown-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  max-width: 100%;
  border-radius: inherit;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 220, 0.55) 0%,
      rgba(255, 255, 220, 0.12) 28%,
      transparent 42%
    ),
    linear-gradient(180deg, #c8f05a 0%, #7ed321 48%, #4ea312 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 200, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  transition: width 0.6s ease;
}

.promo-countdown--card {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 1;
  pointer-events: none;
}

.promo-countdown.is-ended .promo-countdown-value {
  color: #f0a090;
}

.promo-countdown.is-ended .promo-countdown-bar-fill {
  width: 0% !important;
  background: linear-gradient(180deg, #c08070 0%, #8a4038 100%);
}

@media (prefers-reduced-motion: reduce) {
  .promo-countdown-bar-fill {
    transition: none;
  }
}

@media (max-width: 720px) {
  .promo-countdown--card {
    gap: 0.32rem;
    min-width: 6.6rem;
    padding: 0.48rem 0.8rem 0.52rem;
    border-radius: 10px;
  }

  .promo-countdown--card .promo-countdown-text {
    flex-direction: column;
    align-items: center;
    gap: 0.14rem;
    line-height: 1.15;
  }

  .promo-countdown--card .promo-countdown-label {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .promo-countdown--card .promo-countdown-value {
    font-size: 0.72rem;
  }

  .promo-countdown--card .promo-countdown-bar {
    height: 0.48rem;
  }

  .promo-badge {
    max-width: calc(100% - 6.25rem);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.42rem 0.8rem;
  }
}

.promo-body {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.promo-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.promo-body h3 a {
  color: inherit;
}

.promo-body h3 a:hover {
  color: var(--gold-soft);
}

.promo-body .meta {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.promo-body .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.promo-body .price--promo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 1rem;
}

.promo-body .price-was {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.85;
}

.promo-body .price-now {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.promo-body .btn {
  margin-top: 0.7rem;
  width: 100%;
  justify-content: center;
}

.promo-page-note {
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 40rem;
}

.promo-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* ---------- Bloques de categoría ---------- */

.category-block {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
  border-top: 1px solid var(--line);
  background: #100e0a;
}

.category-block::before {
  content: "";
  position: absolute;
  inset: -35% -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 12% 28%, rgba(168, 92, 210, 0.26), transparent 58%),
    radial-gradient(ellipse 50% 55% at 88% 72%, rgba(48, 52, 110, 0.5), transparent 62%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(14, 12, 20, 0.95), transparent 70%),
    linear-gradient(155deg, #12101a 0%, #0b0a10 48%, #100e16 100%);
  background-repeat: no-repeat;
  transform-origin: center;
  will-change: transform;
  animation: category-space-drift 32s ease-in-out infinite alternate;
}

.category-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    radial-gradient(1px 1px at 18% 22%, rgba(236, 210, 255, 0.45), transparent),
    radial-gradient(1px 1px at 72% 38%, rgba(190, 210, 255, 0.32), transparent),
    radial-gradient(1.2px 1.2px at 42% 68%, rgba(255, 190, 240, 0.26), transparent),
    radial-gradient(1px 1px at 86% 78%, rgba(200, 180, 255, 0.28), transparent);
  animation: category-stars-twinkle 10s ease-in-out infinite alternate;
}

@keyframes category-space-drift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1.5%, 0) scale(1.06);
  }
}

@keyframes category-stars-twinkle {
  from {
    opacity: 0.28;
  }
  to {
    opacity: 0.5;
  }
}

/* Tonos espaciales por categoría (siempre oscuros) — escala intensidad ~7/10 */

.category-block--piscinas-vip::before {
  background:
    radial-gradient(ellipse 58% 48% at 18% 22%, rgba(212, 160, 48, 0.34), transparent 58%),
    radial-gradient(ellipse 48% 52% at 82% 78%, rgba(132, 56, 180, 0.4), transparent 60%),
    linear-gradient(160deg, #171018 0%, #0c0a10 52%, #14101a 100%);
}

.category-block--piscinas-deluxe::before {
  background:
    radial-gradient(ellipse 56% 46% at 78% 24%, rgba(164, 108, 220, 0.32), transparent 58%),
    radial-gradient(ellipse 50% 55% at 16% 80%, rgba(56, 72, 160, 0.46), transparent 62%),
    linear-gradient(148deg, #14121c 0%, #0a0910 50%, #12101a 100%);
}

.category-block--jacuzzys::before {
  background:
    radial-gradient(ellipse 54% 48% at 22% 30%, rgba(64, 140, 200, 0.34), transparent 58%),
    radial-gradient(ellipse 52% 50% at 86% 74%, rgba(72, 48, 150, 0.5), transparent 60%),
    linear-gradient(162deg, #0e121c 0%, #080a12 50%, #10141c 100%);
}

.category-block--junior-tematicas::before {
  background:
    radial-gradient(ellipse 55% 46% at 70% 26%, rgba(220, 72, 160, 0.34), transparent 58%),
    radial-gradient(ellipse 48% 54% at 18% 78%, rgba(110, 36, 120, 0.48), transparent 62%),
    linear-gradient(155deg, #181018 0%, #0d090f 50%, #150e16 100%);
}

.category-block--tropicales::before {
  background:
    radial-gradient(ellipse 56% 48% at 24% 26%, rgba(48, 150, 140, 0.32), transparent 58%),
    radial-gradient(ellipse 50% 52% at 84% 76%, rgba(56, 72, 180, 0.44), transparent 60%),
    linear-gradient(158deg, #0e1418 0%, #080c10 50%, #10151a 100%);
}

.category-block--prisioneros-de-pasion::before {
  background:
    radial-gradient(ellipse 54% 46% at 76% 28%, rgba(190, 72, 140, 0.3), transparent 58%),
    radial-gradient(ellipse 50% 55% at 20% 74%, rgba(80, 40, 110, 0.48), transparent 62%),
    linear-gradient(150deg, #151018 0%, #0a090e 50%, #130f16 100%);
}

.category-block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.category-block-head h2 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.category-block-head .lead {
  font-size: 0.98rem;
  max-width: 52ch;
}

.category-block-link {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}

.category-block-link:hover {
  color: var(--gold);
}

.category-block--page {
  border-top: none;
  padding-top: clamp(1.6rem, 4vw, 2.4rem);
}

.category-block--page .category-block-head .eyebrow {
  margin: 0 0 0.35rem;
}

.category-block--page .category-block-head .display {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
}

.category-block--page .notice {
  margin: 0 0 1rem;
}

.category-block--page .notice + .notice {
  margin-top: -0.4rem;
}

.category-block--page .notice + .rail {
  margin-top: 0.35rem;
}

.tariff-page-cta {
  margin-top: 1.25rem;
}

/* ---------- Navegación relacionada (miniaturas) ---------- */

.related-nav {
  border-top: 1px solid var(--line);
  padding-top: clamp(1.6rem, 4vw, 2.2rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.related-nav--follow {
  border-top: none;
  padding-top: 0.35rem;
}

.related-nav-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
}

.rail--related {
  grid-auto-columns: min(42vw, 168px);
  gap: 0.75rem;
  padding-bottom: 0.35rem;
}

.related-thumb {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
  color: var(--text);
  transition: color 0.2s ease;
}

.related-thumb:hover {
  color: var(--gold);
}

.related-thumb-media,
.related-thumb .media-block,
.related-thumb .media-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.related-thumb:hover .related-thumb-media,
.related-thumb:hover .media-block,
.related-thumb:hover .media-placeholder {
  border-color: var(--line-accent);
}

.related-thumb-name {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.faqs-subtle {
  padding: 0.35rem 0 0;
}

.faqs-subtle-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-faint);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.faqs-subtle-link:hover {
  color: var(--gold-soft);
}

.faqs-subtle-link--home {
  display: flex;
  width: max-content;
  margin: 0 auto;
  color: #ff8a1a;
  text-align: center;
}

.faqs-subtle--home-only {
  margin-bottom: calc(-1 * var(--space-block));
  padding: 3.75rem 0;
}

.faqs-subtle-link--home:hover {
  color: #ffb45c;
}

.faqs-subtle-icon {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.75;
}

.faqs-subtle-icon--castle {
  width: 1.05rem;
  height: 1.05rem;
  opacity: 0.95;
}

/* ---------- Cards de suite ---------- */

.suite-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.suite-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-accent);
}

.suite-card-dcto,
.suite-hero-dcto {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.42rem 0.85rem;
  border-radius: 10px;
  background: #c62828;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-soft);
  pointer-events: none;
  line-height: 1.15;
  overflow: hidden;
  isolation: isolate;
}

.suite-hero-dcto {
  top: 1.1rem;
  right: 1.1rem;
  left: auto;
  font-size: 0.92rem;
  padding: 0.48rem 0.95rem;
}

.promo-countdown--suite-card {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  pointer-events: none;
  min-width: 6.6rem;
  padding: 0.5rem 0.85rem 0.55rem;
}

.promo-countdown--suite-hero {
  position: absolute;
  top: 3.85rem;
  right: 1.1rem;
  z-index: 2;
  pointer-events: none;
  padding: 0.55rem 0.95rem 0.6rem;
}

.suite-card .media-block,
.suite-card .media-placeholder {
  aspect-ratio: 16 / 11;
  border-radius: 0;
  box-shadow: none;
}

.suite-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 12.5rem;
  padding: 1.2rem 1.2rem 1.35rem;
}

.suite-card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.suite-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.suite-card-badge {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.suite-card .price {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.suite-card .price--promo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
}

.suite-card .price-was {
  color: rgba(244, 237, 216, 0.55);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 0.92em;
}

.suite-card .price-now {
  color: var(--gold);
  font-weight: 700;
}

.suite-card .price-hours {
  color: var(--gold-soft);
  font-weight: 600;
}

.suite-dcto-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(230, 192, 120, 0.28);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.suite-dcto-note-pill {
  display: inline-block;
  padding: 0.32rem 0.75rem;
  border-radius: 10px;
  background: #c62828;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.suite-dcto-note a {
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.suite-dcto-note a:hover {
  color: var(--gold);
}

.suite-card-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem 0.7rem;
  margin: 0.15rem 0 0.1rem;
  padding: 0;
  list-style: none;
}

.suite-card-features li {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.suite-feature-icon {
  flex-shrink: 0;
  width: 0.95rem;
  height: 0.95rem;
  color: var(--gold-soft);
  opacity: 0.92;
}

.suite-card-features span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suite-card .meta {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.suite-card .card-link {
  margin-top: auto;
  padding-top: 0.45rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.86rem;
}

/* ---------- Medios genéricos ---------- */

.hero-media,
.media-block {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-placeholder {
  background: linear-gradient(145deg, #2a2418 0%, #171410 100%);
  border: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-grid--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---------- FAQ / normas ---------- */

.faq-panel {
  max-width: 820px;
  margin: 0 auto;
}

.faq-panel-head {
  margin-bottom: 1.25rem;
}

.faq-title {
  margin: 0.4rem 0 0.65rem;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
}

.faq-lead {
  margin: 0;
  max-width: 40rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--line-accent);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
  background: rgba(201, 162, 39, 0.12);
}

.faq-item summary:hover {
  color: var(--gold-soft);
}

.faq-answer {
  padding: 0 1.15rem 1.15rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-ref {
  margin-top: 0.7rem !important;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  color: var(--text-faint) !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.faq-more {
  margin: 1.15rem 0 0;
}

.faq-more a {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.94rem;
}

.faq-more a:hover {
  color: var(--gold);
}

.faq-page .faq-panel {
  max-width: 52rem;
  margin: 0;
}

.faq-page-cta {
  margin-top: 1.5rem;
}

.faq-whatsapp-btn {
  min-height: 2.25rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.88;
}

.faq-whatsapp-btn:hover {
  opacity: 1;
}

/* ---------- Páginas internas ---------- */

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--gold-soft);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-size: 0.85rem;
}

.suite-detail-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-detail-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.suite-detail-features .suite-feature-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--gold-soft);
}

/* ---------- Ficha de suite (estilo imagen 2) ---------- */

.suite-ficha {
  padding: 0 0 3rem;
}

.suite-ficha-crumb {
  display: none;
}

.suite-hero {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0;
}

.suite-hero--bleed {
  width: 100%;
}

.suite-hero--bleed .suite-hero-main {
  border-radius: 0;
  border: 0;
  min-height: 58vw;
  max-height: 78vh;
  aspect-ratio: 4 / 3;
}

.suite-ficha-body {
  padding-top: 0.85rem;
}

.suite-ficha-body .suite-thumbs-wrap {
  margin-bottom: 0.95rem;
}

/* Texto del hero sin recuadro; solo sombra para legibilidad */
body.page-suite .suite-hero-overlay {
  padding: 1rem 1.1rem;
  max-width: min(92%, 30rem);
  background: none;
  border-radius: 0;
}

.suite-hero-main {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  isolation: isolate;
  min-height: 220px;
  aspect-ratio: 16 / 11;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.suite-hero-main:active {
  cursor: grabbing;
}

.suite-hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.suite-hero-main.is-dragging .suite-hero-track {
  transition: none;
}

.suite-hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.suite-hero-slide img,
.suite-hero-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  pointer-events: none;
  -webkit-user-drag: none;
}

.suite-hero-overlay {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  padding: 1rem 1.1rem;
  max-width: min(90%, 28rem);
  background: none;
  border-radius: 0;
  pointer-events: none;
}

.suite-hero-overlay .eyebrow {
  margin: 0 0 0.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75), 0 0 18px rgba(0, 0, 0, 0.45);
}

.suite-hero-overlay .display {
  margin: 0;
  font-size: clamp(1.55rem, 4.5vw, 2.2rem);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 22px rgba(0, 0, 0, 0.4);
}

.suite-thumbs-wrap {
  display: grid;
  gap: 0.45rem;
}

.suite-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72px, 1fr);
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.suite-thumbs::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.suite-thumbs-track {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.suite-thumbs-progress {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: rgba(224, 197, 109, 0.55);
  transition: left 0.2s ease, width 0.2s ease;
}

.suite-thumb {
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elevated);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.suite-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.suite-thumb:hover img,
.suite-thumb.is-active img {
  opacity: 1;
}

.suite-thumb.is-active {
  border-color: var(--gold);
}

.suite-sheet {
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-elevated);
  margin-bottom: 0.85rem;
}

.suite-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.suite-sheet-head-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.85rem;
  min-width: 0;
  flex: 1;
}

.suite-sheet-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  color: var(--gold-soft);
  line-height: 1.2;
}

.suite-sheet-badge {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.suite-share-wa {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.suite-share-wa:hover {
  color: var(--gold-soft);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}

.suite-share-wa:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.suite-share-wa-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.suite-share-wa-label {
  line-height: 1;
}

.suite-sheet--tarifas h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
}

.suite-sheet-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.suite-sheet-cta .btn {
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}

.promo-ficha {
  margin-bottom: 0;
}

.promo-ficha-hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.promo-ficha-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.promo-ficha-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 9, 6, 0.92) 8%, rgba(10, 9, 6, 0.35) 55%, rgba(10, 9, 6, 0.2) 100%);
}

.promo-ficha-overlay {
  width: 100%;
  max-width: 720px;
  padding: 2rem 1.25rem 2.25rem;
  color: #fff;
}

.promo-ficha-overlay .eyebrow a {
  color: var(--gold-soft);
  text-decoration: none;
}

.promo-ficha-overlay .display {
  margin: 0.65rem 0 0.5rem;
  color: #fff;
}

.promo-ficha-overlay .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.promo-badge--ficha {
  position: static;
  display: inline-block;
  margin-top: 0;
}

.promo-ficha-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.promo-countdown--ficha {
  margin: 0;
  min-width: 8.5rem;
  align-self: flex-start;
}

@media (max-width: 720px) {
  .promo-ficha-pills {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .promo-countdown--ficha {
    width: auto;
    min-width: 7.2rem;
  }

  .promo-ficha-overlay .display {
    margin-top: 0.55rem;
  }
}

.promo-ficha-body {
  margin-top: -1.5rem;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.promo-ficha-beneficio {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.45;
}

.promo-ficha-aplica {
  margin: 1rem 0 0.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.promo-ficha-cats {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text);
}

.promo-ficha-cats a {
  color: var(--gold-soft);
  text-decoration: none;
}

.promo-ficha-cats a:hover {
  text-decoration: underline;
}

.tariff-row .price-was {
  margin-right: 0.45rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.tariff-row .price-now {
  color: var(--gold);
  font-weight: 700;
}

.suite-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-grid .media-block,
.gallery-grid .media-placeholder {
  aspect-ratio: 4 / 3;
}

.gallery-grid .media-block:first-child,
.gallery-grid .media-placeholder:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.info-panel,
.tariff-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.info-panel h2,
.tariff-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
}

.tariff-list {
  display: grid;
  gap: 0.75rem;
}

.tariff-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.tariff-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tariff-row span:last-child {
  font-weight: 700;
  color: var(--gold-soft);
}

.tariff-note {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.notice {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(201, 162, 39, 0.07);
  color: var(--text-muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.02);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.contact-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
}

.contact-card .lead {
  margin: 0;
  flex: 1;
}

.contact-social-btn {
  align-self: flex-start;
  gap: 0.55rem;
}

.brand-social-icon {
  flex-shrink: 0;
  color: var(--gold-soft);
}

/* ---------- Tarifas (tarjetas legibles) ---------- */

.tariff-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.tariff-card {
  padding: 1.15rem 1.2rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-elevated);
}

.tariff-card-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
}

.tariff-card-title a {
  color: inherit;
}

.tariff-card-title a:hover {
  color: var(--gold);
}

.tariff-card-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tariff-card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-top: 1px solid var(--line);
}

.tariff-card-row:first-child {
  border-top: none;
  padding-top: 0;
}

.tariff-card-row dt {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.tariff-card-row dd {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

/* ---------- Listado horizontal (Categorías / Setmore-like) ---------- */

.list-row-stack {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.list-row-card {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0.85rem 0.7rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.list-row-card:hover {
  border-color: var(--line-accent);
  background: rgba(201, 162, 39, 0.04);
}

.list-row-thumb {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.list-row-media,
.list-row-thumb .media-block,
.list-row-thumb .media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: none;
  aspect-ratio: auto;
}

.list-row-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.list-row-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.list-row-meta {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.list-row-chevron {
  display: inline-flex;
  color: var(--text-muted);
  opacity: 0.85;
}

.list-row-card:hover .list-row-chevron {
  color: var(--gold-soft);
}

/* ---------- Ubicación / mapa ---------- */

.location-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 1.5rem 2rem;
  align-items: center;
}

.location-copy .display {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.location-copy .lead {
  margin: 0 0 1.25rem;
}

.location-map {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: var(--space-block);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: #0d0b07;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
}

.footer-copy,
.footer-tagline,
.footer-label {
  color: var(--text-muted);
}

.footer-label {
  margin-bottom: 0.75rem;
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.88rem;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}

.sticky-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.sticky-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  opacity: 1;
}

.sticky-whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

/* ---------- Responsive ---------- */

@media (min-width: 900px) {
  .suite-ficha {
    padding-top: 0;
  }

  .suite-hero--bleed .suite-hero-main {
    aspect-ratio: 21 / 9;
    min-height: 420px;
    max-height: 62vh;
  }

  body.page-suite .suite-hero-overlay {
    padding: 1.25rem 1.5rem;
  }

  .suite-thumbs {
    grid-auto-columns: minmax(110px, 140px);
    justify-content: start;
  }

  .suite-sheet {
    max-width: 640px;
  }

  .tariff-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .list-row-card {
    grid-template-columns: 5.25rem minmax(0, 1fr) auto;
    padding: 0.8rem 1rem 0.8rem 0.8rem;
  }

  .list-row-thumb {
    width: 5.25rem;
    height: 5.25rem;
  }
}

@media (max-width: 960px) {
  .suite-detail,
  .footer-grid,
  .contact-grid,
  .card-grid,
  .location-block {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 280px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    inset: 4.75rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 13, 8, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    width: 100%;
    padding: 0.85rem 0.35rem;
    box-sizing: border-box;
  }

  .site-nav ul a .nav-link-label {
    flex: 1;
    text-align: left;
    line-height: 1.3;
  }

  .site-nav ul a .nav-link-icon {
    width: 1.15rem;
    height: 1.15rem;
  }

  .site-nav ul a.nav-link--promo {
    padding: 0.85rem 0.75rem;
    margin: 0.15rem 0;
    border-radius: 8px;
    background: rgba(255, 138, 26, 0.12);
    border: 1px solid rgba(255, 138, 26, 0.35);
  }

  .sticky-cta .sticky-whatsapp {
    width: 2.75rem;
    height: 2.75rem;
  }

  .sticky-cta .sticky-whatsapp svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .hero-full-media video {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
