/* ============================================
   HOTEL TU Y YO — styles.css
   Neo-Pop Design 
   ============================================ */

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

:root {
  --hot: #FF2D6B;

  --ladrillo: #da3b22;
  --rojizo: #E6092A;
  --volt: #C8FF00;
  --margarita:#ffd500;
  --verdor: #00bb2d;
  --electric: #2B7FFF;
  --azulino:#193CB8;
  --deep: #120E1A;
  --ink: #1A1525;
  --lija: #baa5a15c;
  --gris:#555d6d;
  --off: #F5F0E8;
  --warm: #FF8C42;
  --lilac: #C084FC;
  --violeta: #6523ba;
  --prince: #4637BD;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Cabinet Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--off);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor:default;
}


/* GRAIN OVERLAY */

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9997; opacity: 0.6;
}

/* ── CURSOR ── */

.cur {
  width: 16px; height: 16px;
  background: var(--hot); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
  mix-blend-mode: multiply;
}
.cur-ring {
  width: 44px; height: 44px;
  border: 2px solid var(--hot); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s ease-out, border-color .3s;
  opacity: .5;
}



/* ── NAV ── */



nav {
  position: fixed; 
  top: 0; left: 0; 
  width: 100%; 
  z-index: 500;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 8px 40px;
  min-height: 90px;
  background: var(--deep);
  border-bottom: 3px solid var(--hot);
}


.logo-nav {
  font-family: var(--font-display);
  font-size: 1.9rem; letter-spacing: 0.05em;
  color: var(--off);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-nav .amp { color: var(--hot); }
.logo-pill {
  background: var(--volt); color: var(--deep);
  font-family: var(--font-body); font-weight: 800;
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 20px;
}
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li a {
  display: block;
  padding: 8px 16px;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: rgba(245,240,232,0.55);
  transition: color .2s, background .2s;
}
.nav-links li a:hover { color: var(--volt); background: rgba(200,255,0,0.07); }
.nav-links .nav-hot a {
  background: var(--hot); color: var(--off) !important;
  padding: 8px 20px;
}
.nav-links .nav-hot a:hover { background: var(--volt); color: var(--deep) !important; }


/* Contenedor del logo */


.logo-nav {

  display: flex;
  align-items: center; /* Centra verticalmente logo y texto */
  gap: 15px;           /* Espacio entre el logo y la pill verde */
  text-decoration: none;
}

/* La imagen del logo */

.nav-logo-img {
  height: 80px;        /* Altura controlada para no romper el nav */
  width: auto;         /* Mantiene la proporción */
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-nav:hover .nav-logo-img {
  transform: scale(1.05); /* Efecto sutil al pasar el mouse */
}


/* ── HERO ── */

#hero {
  min-height: 100vh;
  padding-top: 90px;
  background: var(--deep);
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.hero-ticker {
  grid-column: 1 / -1;
  background: var(--hot);
  padding: 10px 0;
  overflow: hidden; 
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex; 
  gap: 48px;
  animation: ticker 18s linear infinite;
  align-items: center;
}
.ticker-inner span {
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: 0.15em;
  color: var(--off); opacity: .9;
}
.ticker-dot {color: var(--volt); }

.hero-left {
  
  padding: 48px 32px 48px 150px;

  display: flex; 
  flex-direction: column; 
  justify-content: center;
  position: relative; z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--volt);
  color: var(--deep);
  font-weight: 800;
  font-size: 0.70rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding:  10px 10px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  margin-bottom: 28px;
  align-self: flex-start;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}


.hero-h1 {
  font-family: var(--font-display);
  
  
  font-size: clamp(4rem, 8.5vw, 9rem);
  line-height: 0.9;

  color: var(--off);
  letter-spacing: 0.02em;

  white-space: nowrap;

}
.hero-h1 .outline { -webkit-text-stroke: 1px var(--off); color: transparent; }
.hero-h1 .hot { color: var(--hot); }
.hero-sub {
  margin-top: 28px;
  font-size: 1rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6; max-width: 380px; font-weight: 400;
}
.hero-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { 
  position: relative; 
  overflow: hidden; 
  min-height: 580px; 
  padding: 40px;
}

.hero-photo-main { position: absolute; inset: 0; }
.hero-photo-main img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-photo-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,45,107,0.25), rgba(0,200,255,0.1));
}
.photo-badge {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.2em;
  color: var(--off); background: var(--hot);
  padding: 8px 16px;
}
.photo-badge.tl { top: 24px; left: 24px; }
.photo-badge.br { bottom: 24px; right: 24px; background: var(--volt); color: var(--deep); }

/* SHAPES 

.shape { position: absolute; pointer-events: none; z-index: 1; }
.shape-circle {
  width: 180px; height: 180px; border-radius: 50%;
  border: 3px solid var(--volt);
  top: -40px; right: -40px;
  animation: spinSlow 20s linear infinite;
}
.shape-plus {
  font-size: 6rem; line-height: 1; font-weight: 900;
  color: var(--hot); opacity: 0.12;
  bottom: 60px; left: 40px;
  animation: floatY 4s ease-in-out infinite;
  font-family: var(--font-display);
}

*/




/* ── BUTTONS ── */

.btn-pop {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body); font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border: 2.5px solid transparent;
  transition: all .25s;
  cursor: none;
}
.btn-hot { background: var(--hot); color: var(--off); border-color: var(--hot); }
.btn-hot:hover { background: transparent; color: var(--hot); }

.btn-outline-light { background: transparent; color: var(--off); border-color: rgba(245,240,232,0.4); }
.btn-outline-light:hover { background: var(--volt); color: var(--deep); border-color: var(--volt); }

.btn-dark { background: var(--deep); color: var(--off); border-color: var(--deep); }
.btn-dark:hover { background: var(--hot); border-color: var(--hot); }

.btn-volt { background: var(--volt); color: var(--deep); border-color: var(--volt); }
.btn-volt:hover { background: transparent; color: var(--volt); }

.btn-violeta { background: var(--violeta); color: var(--off); border-color: var(--violeta); }
.btn-violeta:hover { background: transparent; color: var(--violeta); }


.btn-warm { background: var(--warm); color: var(--off); border-color: var(--warm); }
.btn-warm:hover { background: transparent; color: var(--warm); }



/* ── SECTION UTILITIES ── */

.sec { padding: 100px 40px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--hot); margin-bottom: 14px;
}
.sec-tag::before { content: '✦'; }
.sec-h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .9; letter-spacing: 0.03em;
  color: var(--ink);
}
.sec-h2 .stroke { -webkit-text-stroke: 1px var(--ink); color: transparent; }
.sec-h2 .hot { color: var(--hot); }
.sec-h2 .volt { color: var(--volt); }

/* ── MARQUEE BAND ── */

.marquee-band {
  background: var(--volt);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; gap: 40px;
  animation: ticker 12s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.15em; color: var(--deep);
}
.marquee-sep { color: var(--hot); }


/* ── CTA BAND ── */

#cta {
  background: var(--hot);
  padding: 80px 40px;
  overflow: hidden; position: relative;
}
#cta::before {
  content: '♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥';
  position: absolute; top: -10px; left: 0;
  font-size: 5rem; opacity: 0.07;
  white-space: nowrap; letter-spacing: 20px;
  animation: driftX 15s linear infinite;
}
.cta-inner {

  position: relative; 
  z-index: 1;
  display: flex; 
  align-items: center; 
  justify-content:space-evenly;
  text-align: center;
  flex-wrap: wrap; 
  gap: 40px;
}

.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--off); line-height: .88; letter-spacing: 0.03em;
}
.cta-h2 .stroke-white { -webkit-text-stroke: 1px var(--off); color: transparent; }
.cta-sub {
  margin-top: 16px;
  font-size: 1rem; color: rgba(245,240,232,0.75);
  font-weight: 500; max-width: 420px;
}

.cta-h2 {
  font-size: clamp(3rem, 8vw, 8rem);
}




/* ── SERVICES ── */

#services {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0; min-height: 70vh;
}
.srv-visual { position: relative; overflow: hidden; min-height: 500px; }
.srv-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
  transition: transform 6s ease;
}
.srv-visual:hover img { transform: scale(1.06); }
.srv-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(18,14,26,0.6), transparent);
}
.srv-sticker {
  position: absolute; bottom: 32px; right: 32px;
  background: var(--volt); color: var(--deep);
  font-family: var(--font-display); font-size: 1.4rem;
  padding: 12px 20px;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--deep);
}
.srv-text {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.srv-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.srv-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: rgba(245,240,232,0.6); font-weight: 500;
  transition: color .3s, padding .3s; cursor: none;
}
.srv-list li:hover { color: var(--volt); padding-left: 10px; }
.srv-list li span { color: var(--hot); font-family: var(--font-display); font-size: 1rem; }

/* ── ROOMS ── */

#rooms { background: var(--off); padding: 100px 40px; }
.rooms-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: flex-end; margin-bottom: 60px;
}
.rooms-note { font-size: 0.9rem; color: rgba(26,21,37,0.5); line-height: 1.7; font-weight: 400; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.room-card {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3; cursor: none; background: var(--ink);
}
.room-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .5s;
  filter: saturate(0.8) brightness(0.75);
  transform: scale(1.04);
}
.room-card:hover img { transform: scale(1.1); filter: saturate(1.1) brightness(0.55); -webkit-filter: saturate(1.1) brightness(0.55); }
.room-num {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-display); 
  font-size: 4rem;
  color: var(--off); 
  opacity: 0.50; 
  line-height: 1;
  transition: opacity .4s;
}
.room-card:hover .room-num { opacity: 0.09; }
.room-info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  
}
.room-cat {
  font-weight: 800; font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
  background: var(--hot); color: var(--off);
  display: inline-block; padding: 3px 10px; margin-bottom: 10px; align-self: flex-start;
}

.room-name { font-family: var(--font-display); font-size: 2.2rem; color: var(--off); margin-bottom: 4px; }

.room-subname { font-family: var(--font-display); letter-spacing: 2px; font-size: 1rem; color: var(--off); margin-bottom: 4px; }


.room-name {
  letter-spacing: 2px;
  font-weight: 500; /* bajar un poco el peso ayuda a que respire */
}

.room-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--off); margin-bottom: 10px; }
.room-feats {
  list-style: none;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s .05s, transform .4s .05s;
}
.room-card:hover .room-feats { opacity: 1; transform: translateY(0); }
.room-feats li {
  font-size: 0.75rem; color: rgba(245,240,232,0.65);
  display: flex; align-items: center; gap: 8px; padding: 3px 0;
}
.room-feats li::before { content: '→'; color: var(--volt); }


                                                /* ── PROMOS ── */


#promos {
  background: var(--deep);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;   /* 2 filas de 2 = 4 paneles */
}
.promo-panel {
  padding: 80px 56px;
  position: relative; overflow: hidden;
  min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: none;
}


.promo-1 { background: var(--rojizo); }
.promo-2 { background: var(--lija); border-left: 3px solid var(--volt); }
.promo-3 { background: var(--azulino); border-top: 3px solid var(--electric, #00C8FF); }
.promo-4 { background: var(--violeta); border-left: 3px solid var(--warm); border-top: 3px solid var(--warm); }


.promo-3,.promo-4 {
  justify-content: flex-start;
  padding-top: 80px;
}



.promo-bg-num {
  position: absolute; top: -10px; right: 10px;
  font-family: var(--font-display); font-size: 18rem; line-height: 1;
  opacity: 0.2; color: var(--off); pointer-events: none;
}
.promo-inner { position: relative; z-index: 1; }
.promo-label {
  display: inline-block;
  font-weight: 800; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  background: rgba(91, 37, 65, 0.8);
  color: var(--off);
  padding: 5px 12px; margin-bottom: 20px;
  border: 1px solid rgba(245,240,232,0.25);
}
/* Labels específicos por promo */
.promo-2 .promo-label { background: rgba(200,255,0,0.12); color: var(--volt); border-color: rgba(200,255,0,0.3); }
.promo-3 .promo-label { background: rgba(0,200,255,0.12); color: var(--margarita); border-color: rgba(0,200,255,0.3); }
.promo-4 .promo-label { background: rgba(255,140,66,0.12); color: var(--margarita); border-color: rgba(255,140,66,0.3); }

.promo-title {
  font-family: var(--font-display); font-size: 3.5rem;
  color: var(--off); line-height: .9; margin-bottom: 20px;
}
.promo-desc { font-size: 0.88rem; color: rgba(245,240,232,0.7); line-height: 1.7; margin-bottom: 24px; max-width: 380px; }
.promo-price { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 28px; color: var(--off) }

/* Precios por promo */

.promo-1 .promo-price { color: var(--volt); }
.promo-2 .promo-price { color: var(--volt); }
.promo-3 .promo-price { color: #00C8FF; }
.promo-4 .promo-price { color: var(--warm); }

.promo-price a {

text-decoration: none;

}


.promo-3 .promo-price a { color: #00C8FF; text-decoration: none; }
.promo-4 .promo-price a { color: var(--warm); text-decoration: none; }

.promo-3 .promo-price a:hover { color: var(--off); }
.promo-4 .promo-price a:hover { color: var(--off); }



.btn-activo {
  background: var(--gris);
  color: white;
  transform: scale(0.97);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


/* ── AMENITIES ── */

#amenities { background: var(--volt); padding: 100px 40px; }
.amen-header { margin-bottom: 60px; }
.amen-header .sec-h2 { color: var(--deep); }
.amen-header .sec-tag { color: var(--deep); }
.amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.amen-item {
  background: var(--off);
  padding: 44px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: background .25s, transform .25s;
  cursor: none; position: relative; overflow: hidden;
}
.amen-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--hot);
  transform: scaleX(0); transition: transform .3s;
}
.amen-item:hover::after { transform: scaleX(1); }
.amen-item:hover { background: var(--deep); transform: translateY(-4px); }
.amen-icon {
  font-size: 2rem; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--volt); border-radius: 50%; transition: background .3s;
}
.amen-item:hover .amen-icon { background: var(--hot); }
.amen-name {
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); text-align: center; transition: color .3s;
}
.amen-item:hover .amen-name { color: var(--volt); }


/* ── TURNOS ── */

#turnos { background: var(--off); padding: 100px 40px; }
.turnos-wrap { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: start; }
.turnos-label {
  font-family: var(--font-display); font-size: 6rem; color: var(--hot);
  writing-mode: vertical-rl; letter-spacing: 0.1em; line-height: 1;
  padding-right: 20px; border-right: 3px solid var(--hot); user-select: none;
}
.turnos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 40px; }
.turno-box {
  background: var(--ink); padding: 40px 28px;
  position: relative; overflow: hidden;
  cursor: none; transition: transform .3s;
}
.turno-box:hover { transform: translateY(-6px); }
.turno-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--hot);
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.turno-box:hover::before { transform: scaleX(1); }
.turno-n {
  font-family: var(--font-display); 
  font-size: 5rem;
  color: rgba(245,240,232,0.06);
  position: absolute; 
  top: 5px; 
  right: 16px; 
  line-height: 1;
}
.turno-badge {
  display: inline-block; font-weight: 800; font-size: 0.58rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--hot); color: var(--off);
  padding: 4px 10px; margin-bottom: 16px;
}

.turno-time { font-family: var(--font-display); font-size: 3rem; color: var(--off); margin-bottom: 8px; }
.turno-desc { font-size: 0.8rem; color: rgba(245,240,232,0.45); line-height: 1.5;}

.turno-desc a {text-decoration:none;}

.turno-desc a:visited {color: #98ef15;}

/* ── FAQ ── */

#faq { background: var(--ink); padding: 100px 40px; }
.faq-layout { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: start; }
.faq-label-vert {
  font-family: var(--font-display); font-size: 5rem;
  color: rgba(245,240,232,0.06);
  writing-mode: vertical-rl; letter-spacing: 0.1em; user-select: none;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(245,240,232,0.07); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; cursor: none;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  color: rgba(245,240,232,0.65); transition: color .3s;
}
.faq-q:hover { color: var(--off); }
.faq-q.active { color: var(--volt); }
.faq-ico {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 2px solid var(--hot); color: var(--hot);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300;
  transition: transform .35s, background .3s, color .3s;
}
.faq-q.active .faq-ico { transform: rotate(45deg); background: var(--hot); color: var(--off); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-body.open { max-height: 200px; padding-bottom: 20px; }
.faq-body p { font-size: 0.85rem; color: rgba(245,240,232,0.45); line-height: 1.8; }

.faq-body a{

  text-decoration: none;
  color: var(--electric);
}


/* ── FOOTER ── */

footer {
  background: var(--deep);
  border-top: 3px solid var(--hot);
  padding: 80px 40px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
  margin-bottom: 60px;
}
.brand-logo {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--off); letter-spacing: 0.05em; line-height: 1; margin-bottom: 16px;
}
.brand-logo .amp { color: var(--hot); }
.brand-desc { font-size: 0.85rem; color: rgba(245,240,232,0.4); line-height: 1.7; margin-bottom: 28px; }
.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.soc-btn {
  width: 42px; height: 42px;
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; color: rgba(245,240,232,0.5);
  transition: background .25s, color .25s, border-color .25s; cursor: none;
}
.soc-btn:hover { background: var(--hot); color: var(--off); border-color: var(--hot); }
.footer-col-title {
  font-weight: 800; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hot); margin-bottom: 20px;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.85rem; color: rgba(245,240,232,0.4);
  text-decoration: none; font-weight: 500; transition: color .25s, padding .25s;
}
.footer-nav a:hover { color: var(--volt); padding-left: 6px; }
.map-box { overflow: hidden; height: 180px; border: 2px solid rgba(245,240,232,0.07); position: relative; }
.map-box iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(1) brightness(0.7) contrast(0.9); opacity: .7; }
.map-addr {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--violeta);
  font-weight: 800; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--off); padding: 8px 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.72rem; color: rgba(245,240,232,0.25); letter-spacing: 0.05em; }





.soc-btn {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--ink);
  color: var(--off);

  font-size: 18px;
  transition: all 0.3s ease;
}

.soc-btn:hover {
  background: var(--hot);
  color: white;
  transform: translateY(-3px);
}


/* COLOR A CADA ICONO */


.soc-btn:nth-child(1):hover {
  background: #1877f2; 
}

.soc-btn:nth-child(2):hover {
  background: #E1306C; 
}

.soc-btn:nth-child(3):hover {
  background: #25D366; 
}




                                        /* ── WA FLOAT ── 

.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 600;
  background: var(--verdor); color: var(--off);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 6px 30px rgba(255,45,107,0.5);
  animation: pulseFab 2.5s ease infinite;
  transition: transform .3s, background .3s; cursor: none;
}
.wa-btn:hover { transform: scale(1.12) rotate(12deg); background: var(--volt); }


*/





                                            /* ── REVEAL ANIMATION ── */



.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

                                              /* ── KEYFRAMES ── */



@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes driftX { from { transform: translateX(0); } to { transform: translateX(-30%); } }
@keyframes pulseFab {
  0%, 100% { box-shadow: 0 6px 30px rgba(255,45,107,0.5); }
  50% { box-shadow: 0 6px 50px rgba(255,45,107,0.8); }
}


/* Restaurar el puntero en elementos interactivos */

a, button, .room-card, .promo-panel, .amen-item, .turno-box, .faq-q, .soc-btn, .wa-btn {
  cursor: pointer !important;
}

/* Asegurar que las imágenes de las habitaciones sigan reaccionando al hover */

.room-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.1) brightness(0.55);
}



/* las 4 imágenes del hero */


.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  height: 500px;
  margin-right: 20px;
}

.hero-photo {
  position: relative;
  width: 40%;
  height: 80%;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.photo-1 {
  z-index: 1;
}

.photo-2 {
  margin-left: -10px; /* 👈 solapa con la anterior */
  z-index: 2;
}

.photo-3 {
  margin-left: -10px;
  z-index: 3;
}


.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero-photo:hover {
  transform: scale(1.05);
  z-index: 10;
}

                                                /* BACK TO TOP */


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  border-radius: 50%;
  background: var(--ladrillo);
  color: white;

  font-size: 20px;

  cursor: pointer;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  background: var(--violeta);
}



                              /* BACK TO TOP visible al hacer scroll*/



.back-to-top.show {
  opacity: 1;
  visibility: visible;
}





                      /* ============================================================
                                              RESPONSIVE
                        Tablet: ≤ 1024px  |  Móvil: ≤ 768px  |  Móvil chico: ≤ 480px
                        
                        ============================================================ */

.nav-toggle { display: none; }


/* ────────────────────────────────────────────
   TABLET  (≤ 1024px)
──────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* NAV */
  nav { padding: 8px 24px; }
  .nav-logo-img { height: 60px; }
  .nav-links li a { padding: 8px 10px; font-size: 0.65rem; }

  /* HERO */
  #hero { grid-template-columns: 1fr; }
  .hero-ticker { grid-column: 1 / -1; }
  .hero-left { padding: 48px 40px 60px; justify-content: flex-end; }
  .hero-right {
    height: 340px;
    margin-right: 0;
    padding: 0 24px 24px;
  }
  .hero-photo { width: 32%; height: 90%; }

  /* SERVICES */
  #services { grid-template-columns: 1fr; }
  .srv-visual { min-height: 320px; }
  .srv-text { padding: 56px 40px; }

  /* ROOMS */
  .rooms-header { grid-template-columns: 1fr; gap: 16px; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }

  /* PROMOS */
  #promos { grid-template-columns: 1fr; }
  .promo-2, .promo-4 { border-left: none; }
  .promo-3, .promo-4 { border-top-width: 3px; }

  /* AMENITIES */
  .amen-grid { grid-template-columns: repeat(4, 1fr); }

  /* TURNOS */
  .turnos-wrap { gap: 40px; }
  .turnos-label { font-size: 4rem; }
  .turnos-grid { grid-template-columns: repeat(3, 1fr); }

  /* FAQ */
  .faq-layout { gap: 40px; }
  .faq-label-vert { font-size: 3.5rem; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top > div:last-child { grid-column: 1 / -1; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }

}


/* ────────────────────────────────────────────
   MÓVIL  (≤ 768px)
──────────────────────────────────────────── */

@media (max-width: 768px) {

  /* ── NAV HAMBURGER ── */
  nav { padding: 8px 20px; min-height: 70px; position: fixed; }
  .nav-logo-img { height: 52px; }
  .logo-pill { display: none; }

  /* Hamburger button: visible en móvil */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none; border: none;
    cursor: pointer; padding: 4px;
    z-index: 601;
    order: 3;
  }
  .nav-toggle span {
    display: block;
    width: 100%; height: 2.5px;
    background: var(--off);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Nav links: OCULTO por defecto en móvil — !important para pisar el styles.css base */
  
  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 70px; left: 0; right: 0;
    background: var(--deep);
    border-bottom: 3px solid var(--hot);
    padding: 0;
    gap: 0;
    transform: translateY(-120%) !important;
    visibility: hidden !important;
    transition: transform .35s ease, visibility 0s .35s;
    z-index: 499;
    list-style: none;
  }
  .nav-links.open {
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: transform .35s ease, visibility 0s 0s;
  }
  .nav-links li a {
    display: block;
    padding: 16px 24px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(245,240,232,0.06);
  }
  .nav-links .nav-hot a {
    margin: 12px 20px 16px;
    text-align: center;
  }

  /* ── HERO ── */

  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 70px;
    min-height: auto;
  }
  .hero-left {
    padding: 40px 24px 32px;
    justify-content: flex-start;

    align-items: center;        /* ← agregá esta línea */
    text-align: center;         /* ← y esta */


  }
  .hero-h1 { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-kicker { font-size: 0.6rem; padding: 8px 10px; align-self: center;}
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-pop { justify-content: center; }

  /* ── HERO SLIDER (móvil) — fade suave + Ken Burns ── */

  .hero-right {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000;        /* negro base visible durante el cruce */
  }

  /* Velo negro que se superpone durante la transición */

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0s;   /* el JS lo maneja directamente */
  }

  /* Todas las fotos apiladas, invisibles por defecto */

  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    border-radius: 0;
    margin: 0;
    flex: none;
    /* fade de entrada y salida */
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Imagen con zoom Ken Burns — arranca un poco agrandada y se expande */
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 5s ease-out;
  }

  /* Foto activa: visible + Ken Burns en movimiento */
  .hero-photo.slide-active {
    opacity: 1;
    z-index: 2;
  }
  .hero-photo.slide-active img {
    transform: scale(1.0);   /* zoom suave hacia adentro */
  }

  /* Foto que sale: se queda en z-index 1 y desaparece con fade */
  .hero-photo.slide-leaving {
    opacity: 0;
    z-index: 3;              /* encima mientras sale */
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Ocultar la 4ta foto */
  .hero-photo.photo-3 { display: none; }

  /* Dots — barra de progreso en vez de círculo */
  .hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
  }
  .hero-dot {
    width: 24px; height: 3px;
    border-radius: 2px;
    background: rgba(245,240,232,0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .4s, width .4s;
  }
  .hero-dot.slide-active {
    background: var(--hot);
    width: 40px;             /* el dot activo es más ancho */
  }

  /* ── MARQUEE ── */
  .marquee-inner span { font-size: 1rem; }

  /* ── CTA ── */
  #cta { padding: 60px 24px; }
  .cta-h2 { font-size: clamp(2.5rem, 12vw, 5rem); }
  .cta-inner { flex-direction: column; align-items: center; text-align: center; gap: 28px; }

  /* ── SERVICES ── */
  #services { grid-template-columns: 1fr; }
  .srv-visual { min-height: 260px; }
  .srv-text { padding: 48px 24px; }
  .srv-text .sec-h2 { font-size: clamp(2.5rem, 10vw, 4.5rem); }

  /* ── ROOMS ── */
  #rooms { padding: 60px 20px; }
  .rooms-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .rooms-grid { grid-template-columns: 1fr; gap: 4px; }

  /* Card: foto arriba (con número superpuesto) + info abajo */
  .room-card {
    aspect-ratio: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;           /* necesario para el número absoluto */
  }

  /* Contenedor de la foto — posición relativa para el número */
  .room-card .room-img-wrap {
    position: relative;
    width: 100%;
    flex-shrink: 0;
  }

  .room-card img {
    position: static;
    display: block;
    width: 100%;
    height: 260px;                /* foto más alta para que se vea completa */
    object-fit: cover;
    object-position: center;
    transform: none !important;
    flex-shrink: 0;
  }

  /* Número grande — absoluto sobre la foto, no ocupa espacio en el flex */
  .room-num {
    display: block !important;    /* reactivar — estaba en display:none */
    position: absolute !important;/* fuera del flujo flex */
    top: 16px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--off);
    opacity: 0.90;
    z-index: 3;
    pointer-events: none;
    /* asegura que no empuje el contenido flex */
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
  }

  /* Info: fondo sólido, altura automática */
  .room-info {
    position: static;
    background: var(--ink);
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Características: siempre visibles en móvil */
  .room-feats {
    opacity: 1;
    transform: none;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .room-feats li { padding: 4px 0; font-size: 0.8rem; }

  /* Precio */
  .room-price { font-size: 1.4rem; margin-top: 4px; margin-bottom: 8px; }

  /* Botón Ver + — ancho completo */
  .room-info .btn-pop {
    margin-top: 12px !important;
    align-self: stretch !important;
    justify-content: center;
    width: 100%;
  }

  /* ── PROMOS ── */
  #promos { grid-template-columns: 1fr; }
  .promo-panel { padding: 56px 28px; min-height: auto; }
  .promo-2, .promo-4 { border-left: none; }
  .promo-title { font-size: 2.8rem; }
  .promo-price { font-size: 2rem; }

  /* ── AMENITIES ── */
  #amenities { padding: 60px 20px; }
  .amen-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .amen-item { padding: 32px 16px; }

  /* ── TURNOS ── */
  #turnos { padding: 60px 20px; }
  .turnos-wrap { grid-template-columns: 1fr; gap: 0; }
  .turnos-label {
    writing-mode: horizontal-tb;
    font-size: 3rem;
    border-right: none;
    border-bottom: 3px solid var(--hot);
    padding-right: 0;
    padding-bottom: 16px;
    margin-bottom: 32px;
  }
  .turnos-grid { grid-template-columns: 1fr; gap: 3px; margin-top: 28px; }
  .turno-box { padding: 28px 20px; }

  /* ── FAQ ── */
  #faq { padding: 60px 20px; }
  .faq-layout { grid-template-columns: 1fr; gap: 0; }
  .faq-label-vert { display: none; }
  .faq-q { font-size: 0.88rem; gap: 12px; }

  /* ── FOOTER ── */
  footer { padding: 56px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-top > div:last-child { grid-column: 1; }
  .brand-logo { font-size: 2.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ── BACK TO TOP ── */
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 16px; }

  /* ── SECCIONES GENERALES ── */
  .sec { padding: 60px 20px; }
  .sec-h2 { font-size: clamp(2.2rem, 9vw, 4rem); }

}


/* ────────────────────────────────────────────
   MÓVIL CHICO  (≤ 480px)
──────────────────────────────────────────── */

@media (max-width: 480px) {

  /* NAV */
  .nav-logo-img { height: 44px; }

  /* HERO */
  .hero-h1 { font-size: clamp(3rem, 18vw, 5rem); }
  .hero-right { height: 220px; gap: 2px; }
  .hero-photo { flex: 1 1 0; height: 100%; }

  /* ROOMS */
  .room-card img { height: 180px; }
  .room-name { font-size: 1.6rem; }
  .room-price { font-size: 1.2rem; }

  /* AMENITIES */
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .amen-icon { width: 52px; height: 52px; font-size: 1.6rem; }
  .amen-name { font-size: 0.65rem; }

  /* PROMOS */
  .promo-panel { padding: 44px 20px; }
  .promo-title { font-size: 2.2rem; }
  .promo-bg-num { font-size: 10rem; }

  /* CTA */
  .cta-h2 { font-size: clamp(2rem, 14vw, 4rem); }

  /* TURNOS */
  .turno-time { font-size: 2.4rem; }

  /* FAQ */
  .faq-q { font-size: 0.82rem; }
  .faq-body p { font-size: 0.8rem; }
  .faq-body.open { max-height: 300px; }

  /* FOOTER */
  .brand-logo { font-size: 1.8rem; }
  .map-box { height: 160px; }

}
