/* ===================================
   HOTEL EL ÁLAMO — Red Neon Design
   DobleClick Agency
   =================================== */

:root {
  --bg:        #060404;
  --bg-alt:    #0a0506;
  --surface:   #110708;
  --surface-2: #180b0c;
  --red:       #c8102e;
  --red-lt:    #e8203a;
  --neon:      #ff1a50;
  --neon-dim:  rgba(255,26,80,0.15);
  --blue:      #9618c4;
  --text:      #f0e6e8;
  --muted:     #9c7e7e;
  --dim:       #3a2525;
  --ig:        #e1306c;
  --font-s:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'DM Sans', system-ui, sans-serif;
  --t:         0.35s cubic-bezier(0.4,0,0.2,1);
  --ease-out:  cubic-bezier(0,0,0.2,1);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  border-bottom: 1px solid transparent;
  transition: background .4s, padding .4s, border-color .4s;
}
.navbar.scrolled {
  background: rgba(6,4,4,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.9rem 3rem;
  border-bottom-color: rgba(255,26,80,0.15);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  line-height: 1;
}
.logo-text__name {
  font-family: var(--font-s);
  font-size: 1.45rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .05em;
}
.logo-text__sub {
  font-family: var(--font-b);
  font-size: .6rem;
  font-weight: 300;
  color: var(--neon);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.logo-icon {
  display: block;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(0.25,1,0.5,1), filter .4s;
  filter: drop-shadow(0 0 6px rgba(255,26,80,.35));
}
.navbar__logo:hover .logo-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(255,26,80,.6));
}

.navbar__nav { display: flex; gap: 2.5rem; }
.navbar__nav a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--t);
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--neon);
  transition: width .35s var(--ease-out);
}
.navbar__nav a:hover { color: #fff; }
.navbar__nav a:hover::after { width: 100%; }

.navbar__ig {
  color: var(--muted);
  transition: color var(--t);
  display: flex;
  align-items: center;
}
.navbar__ig:hover { color: var(--ig); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all .3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: rgba(6,4,4,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-s);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .05em;
  transition: color .25s;
}
.mobile-menu a:hover { color: #fff; }

@keyframes menuLinkIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open a {
  animation: menuLinkIn .45s cubic-bezier(0.25,1,0.5,1) both;
}
.mobile-menu.open a:nth-child(2) { animation-delay: .07s; }
.mobile-menu.open a:nth-child(3) { animation-delay: .14s; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg { position: absolute; inset: 0; }

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 20s ease-in-out infinite;
}
/* Con una sola imagen: siempre visible */
.hero__slide:nth-child(1) { animation-delay:  0s; opacity: 1; }
.hero__slide:nth-child(2) { animation-delay:  5s; }
.hero__slide:nth-child(3) { animation-delay: 10s; }
.hero__slide:nth-child(4) { animation-delay: 15s; }
@keyframes slideShow {
  0%        { opacity: 0; transform: scale(1.04); }
  6%, 44%   { opacity: 1; transform: scale(1);    }
  50%, 100% { opacity: 0; transform: scale(1.04); }
}
/* Con una sola imagen no anima, queda fija */
.hero__slide:only-child {
  opacity: 1;
  animation: heroZoom 18s ease-in-out infinite;
}
@keyframes heroZoom {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.05); }
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(6,4,4,.75) 0%,
    rgba(6,4,4,.6)  40%,
    rgba(6,4,4,.85) 100%
  );
}
.hero__orb    { z-index: 2; }
.hero__vline  { z-index: 2; }
.hero__content { z-index: 3; }
.hero__scroll  { z-index: 3; }
.particles     { z-index: 2; }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: drift 14s ease-in-out infinite;
}
.hero__orb--1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(200,16,46,.30) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(150,24,196,.1) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  animation-delay: -5s;
}
.hero__orb--3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,26,80,.18) 0%, transparent 70%);
  top: 40%; left: 38%;
  animation-delay: -9s;
}
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(28px,-28px) scale(1.04); }
  66%  { transform: translate(-18px,18px) scale(.97); }
}

/* Particles — red tint */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  background: var(--neon);
  border-radius: 50%;
  opacity: 0;
  animation: rise var(--dur,6s) ease-in-out infinite var(--del,0s);
}
@keyframes rise {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: .4; transform: translateY(-15px) scale(1); }
  100% { opacity: 0; transform: translateY(-100px) scale(.4); }
}

/* Vertical lines — red */
.hero__vline {
  position: absolute;
  top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,26,80,.2), transparent);
  animation: vpulse 4s ease-in-out infinite;
}
.hero__vline--l { left: clamp(1.5rem, 5vw, 4rem); }
.hero__vline--r { right: clamp(1.5rem, 5vw, 4rem); }
@keyframes vpulse { 0%,100%{opacity:.3} 50%{opacity:.9} }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.6rem;
  font-weight: 400;
}
.eline {
  display: inline-block;
  width: 36px; height: 1px;
  background: rgba(255,26,80,.45);
}
.hero__title {
  font-family: var(--font-s);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hero__rule-line {
  display: block;
  width: 72px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,26,80,.7), transparent);
}
.hero__rule-diamond {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--neon);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(255,26,80,.8);
}
.grad-text {
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  letter-spacing: .08em;
}
.hero__tagline {
  font-family: var(--font-s);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}
.hero__sub {
  font-size: .97rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}
.scroll-bar {
  width: 1px; height: 44px;
  background: rgba(255,26,80,.1);
  overflow: hidden;
  position: relative;
}
.scroll-fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 45%;
  background: var(--neon);
  animation: scrolldown 2.2s ease-in-out infinite;
}
@keyframes scrolldown {
  0%  { top: -45%; opacity: 1; }
  100%{ top: 145%; opacity: 0; }
}

/* ===================== HERO ANIMATIONS (CSS-only, no JS needed) ===================== */
.anim-hero {
  animation: heroIn .9s var(--ease-out) calc(var(--i,0) * .15s + .1s) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 1; transform: translateY(0); }
.rc     { opacity: 1; transform: translateY(0); }

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.js-ready .rd-1 { transition-delay: .12s; }
.js-ready .rd-2 { transition-delay: .24s; }
.js-ready .rc {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity  .65s var(--ease-out) var(--d, 0s),
    transform .65s var(--ease-out) var(--d, 0s);
}
.js-ready .reveal.in,
.js-ready .rc.in {
  opacity: 1;
  transform: translateY(0);
}

/* Blur-in para los números 01/02/03 de servicios */
.js-ready .svc-card::before {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity  .9s var(--ease-out) calc(var(--d, 0s) + .08s),
    filter   .9s var(--ease-out) calc(var(--d, 0s) + .08s);
}
.js-ready .svc-card.in::before       { opacity: .15; filter: blur(0); }
.js-ready .svc-card--featured.in::before { opacity: .5;  filter: blur(0); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.9rem;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .05em;
  border: none;
  font-family: var(--font-b);
  transition: transform .3s var(--ease-out), box-shadow .3s, background .3s, color .3s;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--neon));
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,16,46,.4);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,26,80,.55), 0 0 40px rgba(255,26,80,.2);
}
.btn--outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.12);
}
.btn--outline:hover {
  border-color: rgba(255,26,80,.4);
  color: #fff;
  transform: translateY(-3px);
}
.btn--ig {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  margin-top: .5rem;
}
.btn--ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(225,48,108,.4);
}
.btn:active {
  transform: translateY(-1px) scale(0.97) !important;
  transition-duration: .08s !important;
}

/* ===================== STATS ===================== */
.stats {
  background: var(--surface);
  border-top:    1px solid rgba(255,26,80,.08);
  border-bottom: 1px solid rgba(255,26,80,.08);
  padding: 1.6rem 2rem;
}
.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0 2rem;
}
.stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-align: left;
}
.stat__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,26,80,.06);
  border: 1px solid rgba(255,26,80,.12);
  color: var(--neon);
  flex-shrink: 0;
}
.stat__n {
  display: block;
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.stat__l {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .1rem;
}
.stat__sep { font-size: .6rem; color: var(--dim); opacity: .5; }

/* ===================== SECTIONS ===================== */
.section { padding: 6.5rem 2rem; }
.section--alt     { background: var(--bg-alt); }
.section--contact { background: var(--surface); }
.container { max-width: 1100px; margin: 0 auto; }

.s-header { text-align: center; margin-bottom: 3.5rem; }
.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: .9rem;
}
.s-title {
  font-family: var(--font-s);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.s-desc {
  color: var(--muted);
  font-size: .93rem;
  max-width: 420px;
  margin: 1rem auto 0;
  line-height: 1.75;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
}
.ornament span {
  width: 50px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,26,80,.3));
}
.ornament span:last-child {
  background: linear-gradient(to left, transparent, rgba(255,26,80,.3));
}
.ornament em { font-size: .68rem; color: var(--neon); opacity: .6; font-style: normal; }

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.svc-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,26,80,.1);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .35s cubic-bezier(0.25,1,0.5,1),
              border-color .35s cubic-bezier(0.25,1,0.5,1),
              transform .35s cubic-bezier(0.25,1,0.5,1);
}
.svc-card:hover {
  background: rgba(255,26,80,.05);
  border-color: rgba(255,26,80,.22);
  transform: translateY(-4px);
}
.svc-card--featured {
  background: rgba(255,26,80,.07);
  border-color: rgba(255,26,80,.22);
}
.svc-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1.2rem;
}
.svc-card h3 {
  font-family: var(--font-s);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .3rem;
}
.svc-card__sub {
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1rem;
}
.svc-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,26,80,.08);
}
.svc-list li {
  font-size: .83rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.svc-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon);
  flex-shrink: 0;
  opacity: .7;
}

/* Payment bar */
.payment-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.4rem 2rem;
  background: var(--surface-2);
  border: 1px solid rgba(255,26,80,.07);
  border-radius: 14px;
}
.payment-bar__label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.payment-bar__methods {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-bar__methods span { font-size: .88rem; color: var(--text); }

/* ===================== ROOMS GRID ===================== */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.room-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.room-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,26,80,.2);
  box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 40px rgba(255,26,80,.06);
}
.room-card--special {
  border-color: rgba(255,26,80,.25);
  box-shadow: 0 0 0 1px rgba(255,26,80,.1), 0 16px 48px rgba(0,0,0,.55), 0 0 60px rgba(255,26,80,.07);
}
.room-card--special .room-card__visual {
  height: 280px;
}
.room-card__visual {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Red LED room */
.room-card__visual--std {
  background: linear-gradient(145deg, #1a0408 0%, #300610 100%);
}
/* Deeper red — special */
.room-card__visual--spc {
  background: linear-gradient(145deg, #200308 0%, #3d0515 100%);
}
/* Purple LED — premium */
.room-card__visual--jac {
  background: linear-gradient(145deg, #0e0418 0%, #1a0535 100%);
}
.room-card__glow {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s;
}
.room-card__visual--std .room-card__glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(200,16,46,.25) 0%, transparent 70%);
}
.room-card__visual--spc .room-card__glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(255,26,80,.22) 0%, transparent 70%);
}
.room-card__visual--jac .room-card__glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(150,24,196,.28) 0%, transparent 70%);
}
.room-card:hover .room-card__glow { opacity: 1; }

/* Neon room number style */
/* Card con foto real */
.room-card__visual--photo {
  background-size: cover;
  background-position: center;
}
.room-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,4,4,.7) 0%, rgba(6,4,4,.15) 60%, transparent 100%);
  transition: background .4s;
}
.room-card:hover .room-card__photo-overlay {
  background: linear-gradient(to top, rgba(6,4,4,.5) 0%, rgba(6,4,4,.05) 60%, transparent 100%);
}

.room-card__ico {
  font-size: 3.5rem;
  opacity: .15;
  transition: opacity .4s, transform .4s;
  position: relative;
  z-index: 1;
}
.room-card:hover .room-card__ico {
  opacity: .3;
  transform: scale(1.08);
}

/* LED strip effect at bottom of visual */
.room-card__visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .5s;
}
.room-card__visual--std::after  { background: linear-gradient(to right, transparent, rgba(200,16,46,.8), transparent); }
.room-card__visual--spc::after  { background: linear-gradient(to right, transparent, rgba(255,26,80,.8), transparent); }
.room-card__visual--jac::after  { background: linear-gradient(to right, transparent, rgba(180,24,210,.75), transparent); }
.room-card:hover .room-card__visual::after { opacity: 1; }

.room-badge {
  position: absolute;
  bottom: .9rem; left: .9rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(6,4,4,.75);
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.1);
  padding: .25rem .7rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.room-badge--gold {
  background: rgba(255,26,80,.12);
  color: #ff8090;
  border-color: rgba(255,26,80,.3);
}
/* Overlay name + badge sobre el visual */
.room-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(4,2,6,.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
}
.room-card__name {
  font-family: var(--font-s);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.2;
}

/* Badge reposicionado dentro del overlay */
.room-card__overlay .room-badge {
  position: static;
  flex-shrink: 0;
  align-self: flex-end;
}

/* Visual más alto */
.room-card__visual { height: 320px; }
.room-card--special .room-card__visual { height: 380px; }

/* Gradiente Normal: glow central más dramático */
.room-card__visual--std {
  background: radial-gradient(ellipse at 50% 70%, #3a0812 0%, #1a0408 45%, #090205 100%);
}

/* Cuerpo minimalista */
.room-card__body { padding: 0; }

.room-card__pricing {
  display: flex;
  flex-direction: column;
}
.room-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .25s;
}
.room-card__price-row:last-child { border-bottom: none; }
.room-card:hover .room-card__price-row { background: rgba(255,26,80,.03); }
.room-card__period-title {
  font-family: var(--font-b);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: .55;
  padding: .7rem 1.4rem .3rem;
}
.room-card__period-title--sep {
  margin-top: .25rem;
  border-top: 1px solid rgba(255,26,80,.1);
  padding-top: .9rem;
}
.room-card__price-label {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.room-card__price-hours {
  font-size: .6rem;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}
.room-card__price-value {
  font-family: var(--font-s);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--neon);
  letter-spacing: .01em;
}

/* ===================== QUOTE ===================== */
.quote-sec {
  position: relative;
  padding: 5.5rem 2rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.quote-sec__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 280px;
  background: radial-gradient(ellipse, rgba(200,16,46,.14) 0%, transparent 70%);
  filter: blur(40px);
  animation: quoteGlow 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes quoteGlow {
  0%,100%{ opacity:.6; transform:translate(-50%,-50%) scale(1); }
  50%    { opacity:1;  transform:translate(-50%,-53%) scale(1.05); }
}
.quote {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-s);
  font-size: 6rem;
  line-height: .4;
  color: var(--red);
  opacity: .3;
  margin-bottom: 1.5rem;
}
.quote p {
  font-family: var(--font-s);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.quote footer {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--neon);
}

/* ===================== AMENITIES ===================== */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,26,80,.08);
}
.am-card {
  padding: 1.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,26,80,.06);
  border-radius: 0;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  grid-template-rows: auto auto;
  gap: .15rem 1.1rem;
  transition: background .3s;
}
.am-card:nth-child(odd) {
  border-right: 1px solid rgba(255,26,80,.06);
}
.am-card:hover {
  transform: none;
  background: rgba(255,26,80,.03);
}
.am-card__ico {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0;
  grid-row: span 2;
  align-self: center;
  transition: transform .35s cubic-bezier(0.25,1,0.5,1);
}
.am-card:hover .am-card__ico { transform: scale(1.2); }
.am-card h4 {
  font-family: var(--font-s);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  align-self: end;
}
.am-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; align-self: start; }

/* ===================== PROMOCIONES ===================== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.promo-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,26,80,.1);
  background: var(--surface);
  transition: transform .35s cubic-bezier(0.25,1,0.5,1), border-color .35s, box-shadow .35s;
}
.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,26,80,.25);
  box-shadow: 0 12px 40px rgba(255,26,80,.08);
}
.promo-card__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: radial-gradient(ellipse at 50% 60%, #2a060e 0%, #110304 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.promo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.promo-card__img--soon {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
}
.promo-soon__label {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255,26,80,.15);
  padding: .5rem 1.2rem;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .promo-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ===================== MENÚ BAR ===================== */
.menu-carta {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,26,80,.18);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  background: rgba(255,255,255,.06);
}
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}
.menu-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.menu-cat__title {
  font-family: var(--font-s);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 1;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,26,80,.2);
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.menu-items li {
  font-size: .87rem;
  color: rgba(240,230,232,.92);
  line-height: 1.6;
}
.menu-items li em {
  font-style: normal;
  font-size: .73rem;
  color: rgba(156,126,126,.85);
  margin-left: .3rem;
}
@media (max-width: 640px) {
  .menu-carta { padding: 2rem 1.5rem; }
  .menu-cols  { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===================== HORARIOS & SERVICIOS ===================== */
.hserv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  align-items: stretch;
}

.hserv-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,26,80,.09);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: background .35s cubic-bezier(0.25,1,0.5,1),
              border-color .35s cubic-bezier(0.25,1,0.5,1),
              transform .35s cubic-bezier(0.25,1,0.5,1);
}
.hserv-card:hover {
  background: rgba(255,26,80,.045);
  border-color: rgba(255,26,80,.2);
  transform: translateY(-4px);
}
.hserv-card--featured {
  background: rgba(255,26,80,.06);
  border-color: rgba(255,26,80,.18);
}

.hserv-card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,26,80,.08);
  border: 1px solid rgba(255,26,80,.14);
  color: var(--neon);
  margin-bottom: 1.6rem;
  flex-shrink: 0;
}
.hserv-card__title {
  font-family: var(--font-s);
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.hserv-card__sub {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,26,80,.08);
}
.hserv-card__desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
}
.hserv-card__desc strong { color: var(--text); font-weight: 500; }

.hserv-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,26,80,.055);
  border: 1px solid rgba(255,26,80,.15);
  border-radius: 12px;
  padding: 1.3rem 1.6rem;
}
.hserv-note__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.hserv-note p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: .9rem; }
.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 14px;
  transition: border-color var(--t), transform var(--t);
}
.cinfo-card:hover {
  border-color: rgba(255,26,80,.16);
  transform: translateX(4px);
}
.cinfo-card__ico { font-size: 1.35rem; flex-shrink: 0; margin-top: .1rem; }
.cinfo-link {
  color: var(--neon);
  font-weight: 500;
  transition: opacity .2s;
}
.cinfo-link:hover { opacity: .75; }
.cinfo-card strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: .2rem;
  font-weight: 500;
}
.cinfo-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,26,80,.1);
  background: var(--surface);
  height: 420px;
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  text-align: center;
}
.map-placeholder span { font-size: 2.5rem; opacity: .3; }
.map-placeholder p { font-family: var(--font-s); font-size: 1.1rem; color: var(--muted); }
.map-placeholder small { font-size: .8rem; color: var(--dim); }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,26,80,.07);
  padding: 4rem 2rem 0;
  position: relative;
  overflow: hidden;
}
.footer__glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 160px;
  background: radial-gradient(ellipse, rgba(200,16,46,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid */
.footer__grid {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,26,80,.07);
}

/* Column */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer__col-title {
  font-family: var(--font-b);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: .8;
}

/* Brand logo */
.footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-s);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .04em;
  transition: opacity .25s;
}
.footer__logo:hover { opacity: .8; }
.footer__logo svg { filter: drop-shadow(0 0 5px rgba(255,26,80,.3)); flex-shrink: 0; }

/* Description */
.footer__desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 28ch;
}

/* Social icons */
.footer__socials {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,26,80,.15);
  background: rgba(255,26,80,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}
.footer__social:hover {
  color: var(--neon);
  border-color: rgba(255,26,80,.4);
  background: rgba(255,26,80,.08);
  transform: translateY(-2px);
}

/* Nav / category links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer__links a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .22s, padding-left .22s;
}
.footer__links a:hover {
  color: var(--text);
  padding-left: .35rem;
}

/* Contact list */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer__contact-list li span:first-child {
  flex-shrink: 0;
  font-size: .9rem;
  margin-top: .05rem;
  opacity: .7;
}

/* Bottom bar */
.footer__bottom {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .75rem;
  color: var(--dim);
}
.footer__bottom strong { color: var(--neon); font-weight: 500; }

/* ===================== INSTAGRAM FLOAT ===================== */
.ig-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 400;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(225,48,108,.35);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.ig-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 28px rgba(225,48,108,.5);
}
.ig-float__ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(225,48,108,.4);
  animation: igPulse 2.8s ease-out infinite;
}
@keyframes igPulse {
  0%  { transform: scale(1); opacity: .5; }
  100%{ transform: scale(1.6); opacity: 0; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 920px) {
  .services-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 2.5rem; }
  .rooms-grid     { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .room-card--special .room-card__visual { height: 240px; }
  .am-card:nth-child(odd) { border-right: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .hserv-grid     { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .contact-grid   { grid-template-columns: 1fr; }
  .navbar__nav    { display: none; }
  .navbar__ig     { display: none; }
  .hamburger      { display: flex; }
  .navbar          { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: .8rem 1.5rem; }
}
/* ===================== FOCUS ===================== */
:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 580px) {
  .section         { padding: 4.5rem 1.25rem; }
  .stats__inner    { flex-wrap: wrap; gap: 1.2rem 2rem; justify-content: center; }
  .stat__sep       { display: none; }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer__desc    { max-width: 100%; }
  .footer__bottom  { flex-direction: column; text-align: center; gap: .5rem; }
  .hero__title     { font-size: 3rem; }
  .payment-bar     { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer__col:first-child { order: -1; }
  .footer__socials { margin-bottom: .25rem; }
}
