/* ============================================================
   W SPA — Wyndham Nordelta · Hoja de estilos v2
   Lenguaje: Playfair Display + Open Sans · crema / arena / carbón
   ============================================================ */

/* ---------- Iconos (icomoon) ---------- */
@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.woff') format('woff'),
       url('../fonts/icomoon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-check:before { content: "\e90e"; }
.icon-sauna:before { content: "\e90d"; }
.icon-plant:before { content: "\e906"; }
.icon-facial-mask:before { content: "\e907"; }
.icon-sun:before { content: "\e908"; }
.icon-pool:before { content: "\e90b"; }
.icon-arrow:before { content: "\e900"; }
.icon-w-solid:before { content: "\e901"; }
.icon-w-outline:before { content: "\e902"; }
.icon-facebook:before { content: "\e903"; }
.icon-instagram:before { content: "\e904"; }
.icon-logo:before { content: "\e905"; }
.icon-menu:before { content: "\e90f"; }
.icon-clock:before { content: "\e910"; }
.icon-mail:before { content: "\e911"; }
.icon-map:before { content: "\e912"; }

/* ---------- Tokens ---------- */
:root {
  --ink: #3d3d3d;
  --charcoal: #4d4d4d;
  --sand: #cbc9be;
  --cream: #efede1;
  --paper: #f8f6ef;
  --text: #6f6f6f;
  --white: #fff;
  --line: rgba(77, 77, 77, .16);
  --line-soft: rgba(77, 77, 77, .09);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;

  --eyebrow-size: .6875rem;
  --eyebrow-track: .38em;

  --section-pad: clamp(3rem, 6vw, 5rem);
  --lay-max: 1240px;
  --lay-pad: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--charcoal); outline-offset: 3px; }

.lay { max-width: var(--lay-max); margin: 0 auto; padding-inline: var(--lay-pad); }

/* ---------- Tipografía ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .72;
  display: block;
  margin-bottom: 1.1rem;
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: .01em;
}
.display em { font-style: italic; font-weight: 400; }
.display--xl { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.display--l  { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.display--m  { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.lead { font-size: clamp(1rem, 1.4vw, 1.125rem); max-width: 62ch; }

.section { padding-block: var(--section-pad); }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head .lead { margin: 1rem auto 0; }

/* ---------- Divisor firma (glifo W sobre línea) ---------- */
.w-divider {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 420px; margin: 1.4rem auto 0;
  color: var(--sand);
}
.w-divider::before, .w-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.w-divider i { font-size: 1.15rem; color: var(--charcoal); opacity: .55; }

/* ---------- Botones ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink);
  padding: 1.15rem 2.8rem;
  border: 1px solid var(--charcoal);
  background: transparent;
  cursor: pointer; text-align: center;
  max-width: 100%;
  transition: color .45s var(--ease), border-color .45s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease);
}
/* relleno que barre de izquierda a derecha */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--charcoal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.btn:hover { color: var(--white); }
.btn:hover::before { transform: scaleX(1); }
.btn:active { transform: scale(.98); }
@media (max-width: 480px) {
  .btn { padding: 1rem 1.5rem; letter-spacing: .2em; font-size: .7rem; }
}

.btn--solid { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn--solid::before { background: var(--ink); }
.btn--solid:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(61, 61, 61, .45);
}
.btn--solid:active { transform: translateY(0) scale(.98); box-shadow: none; }

.btn--light { border-color: rgba(255, 255, 255, .85); color: var(--white); }
.btn--light::before { background: var(--white); }
.btn--light:hover { color: var(--ink); border-color: var(--white); }

/* link con flecha (acciones secundarias) */
.link-arrow {
  position: relative;
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .35rem;
}
.link-arrow::before {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--charcoal);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-arrow i { font-size: .75rem; transition: transform .4s var(--ease); }
.link-arrow:hover::before { transform: scaleX(.55); }
.link-arrow:hover i { transform: translateX(7px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 1.4rem;
}
.site-header .lay { display: flex; align-items: center; justify-content: space-between; }
.site-header .brand { color: var(--white); font-size: 2.1rem; line-height: 1; transition: color .4s var(--ease); }
.site-header.is-solid {
  background: rgba(248, 246, 239, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: .9rem;
}
.site-header.is-solid .brand { color: var(--charcoal); }

.site-nav { display: flex; gap: clamp(1.4rem, 3vw, 2.6rem); }
.site-nav a {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--white);
  padding-block: .4rem;
  position: relative;
  transition: color .4s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.site-header.is-solid .site-nav a { color: var(--charcoal); }

.nav-toggle {
  display: none;
  background: none; border: 0;
  color: var(--white); font-size: 1.5rem;
  cursor: pointer; padding: .4rem;
  transition: color .4s var(--ease);
  z-index: 102;
}
.site-header.is-solid .nav-toggle { color: var(--charcoal); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.2rem;
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
    z-index: 101;
  }
  .site-nav a { color: var(--charcoal) !important; font-size: .9rem; }
  body.nav-open .site-nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle { color: var(--charcoal); }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; height: min(78svh, 700px); min-height: 480px; overflow: hidden; background: var(--ink); }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide.is-active img { animation: heroZoom 16s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"), linear-gradient(180deg, rgba(40,40,38,.45) 0%, rgba(40,40,38,.2) 45%, rgba(40,40,38,.58) 100%);
  background-size: 180px 180px, cover;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  padding-inline: var(--lay-pad);
}
.hero-content .eyebrow { color: var(--white); opacity: .85; }
.hero-content h1, .hero-content h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.4rem, 5.8vw, 4.3rem);
  line-height: 1.08; color: var(--white);
  max-width: 16ch;
}
.hero-content h1 em, .hero-content h2 em { font-style: italic; font-weight: 400; }
.hero-content p { max-width: 52ch; margin-top: 1.4rem; font-size: clamp(.95rem, 1.3vw, 1.06rem); font-weight: 300; opacity: .92; }
.hero-content .btn { margin-top: 2.4rem; }
.hero-dots {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .8rem; z-index: 3;
}
.hero-dots button {
  width: 34px; height: 2px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35);
  transition: background .3s;
}
.hero-dots button.is-active { background: var(--white); }

/* ---------- Grilla de categorías (home) ---------- */
.cat-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: 1fr 2fr 1fr; grid-auto-rows: 250px; }
  .cat-grid .cat-card--tall { grid-row: span 2; }
}
.cat-card {
  position: relative; overflow: hidden; display: block;
  min-height: 240px;
  background: var(--ink);
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
  opacity: .92;
}
.cat-card:hover img { transform: scale(1.05); opacity: .75; }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(40,40,38,.62) 100%);
}
.cat-card .cat-label {
  position: absolute; left: 1.8rem; bottom: 1.6rem; right: 1.8rem; z-index: 2;
  color: var(--white);
}
.cat-card .cat-label span {
  display: block; font-size: .65rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase; opacity: .8;
  margin-bottom: .35rem;
}
.cat-card .cat-label h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.15;
}
.cat-card .cat-label i {
  display: inline-block; margin-top: .7rem; font-size: .8rem;
  transform: translateX(0); transition: transform .4s var(--ease);
}
.cat-card:hover .cat-label i { transform: translateX(8px); }

/* ---------- Servicios (iconos) ---------- */
.services-grid {
  display: grid; gap: 2.2rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.service { text-align: center; }
.service i { font-size: 2.6rem; color: var(--charcoal); opacity: .8; }
.service h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.25rem; color: var(--ink);
  margin: 1.2rem 0 .6rem;
}
.service p { font-size: .92rem; max-width: 34ch; margin-inline: auto; }

/* ---------- Card de experiencia (horizontal destacada) ---------- */
.exp-card {
  display: grid; grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 60px -30px rgba(61, 61, 61, .18);
}
@media (min-width: 900px) { .exp-card { grid-template-columns: 1fr 1fr; } }
.exp-card .exp-media { position: relative; min-height: 320px; overflow: hidden; }
.exp-card .exp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exp-card .exp-body { padding: clamp(1.8rem, 3.2vw, 2.6rem); display: flex; flex-direction: column; }
.exp-card .exp-body .eyebrow { margin-bottom: .6rem; }
.exp-card h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: var(--ink); }

.badge {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  background: var(--cream); color: var(--ink);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .55rem 1rem;
}
.badge strong { font-weight: 800; }

/* ---------- Lista de inclusiones ---------- */
.inc-list { margin-top: 1.6rem; }
.inc-list li {
  display: flex; gap: .9rem; align-items: baseline;
  padding-block: .55rem;
  font-size: .95rem;
}
.inc-list li + li { border-top: 1px solid var(--line-soft); }
.inc-list li i { font-size: .7rem; color: var(--charcoal); flex-shrink: 0; }
.inc-list li.sub { padding-left: 1.6rem; font-size: .88rem; opacity: .85; border-top: 1px dashed var(--line-soft); }

/* ---------- Bloque de precio ---------- */
.price-row {
  margin-top: auto; padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem;
  border-top: 1px solid var(--line);
}
.price-row .price-label { font-size: .68rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; opacity: .7; display: block; margin-bottom: .25rem; }
.price-row .price { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 500; color: var(--ink); line-height: 1; }
.price-grid { margin-top: auto; padding-top: 1.6rem; display: grid; gap: 1.4rem; }
@media (min-width: 560px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-grid .price-cell { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.price-grid .price-cell .btn { margin-top: 1rem; width: 100%; padding-inline: 1rem; }

/* ---------- Cards verticales (circuitos) ---------- */
.duo-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .duo-grid { grid-template-columns: 1fr 1fr; } }
.exp-vertical {
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 60px -30px rgba(61, 61, 61, .16);
  display: flex; flex-direction: column;
}
.exp-vertical .exp-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.exp-vertical .exp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.exp-vertical:hover .exp-media img { transform: scale(1.04); }
.exp-vertical .exp-body { padding: clamp(1.8rem, 3.5vw, 2.6rem); display: flex; flex-direction: column; flex: 1; }
.exp-vertical h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--ink); }

/* ---------- Carta de tratamientos (estilo menú) ---------- */
.menu-list { max-width: 880px; margin-inline: auto; }
.menu-item { padding-block: clamp(1.4rem, 2.6vw, 2rem); }
.menu-item + .menu-item { border-top: 1px solid var(--line-soft); }
.menu-item .menu-head {
  display: flex; align-items: baseline; gap: 1.2rem;
  margin-bottom: .9rem;
}
@media (max-width: 560px) {
  .menu-item .menu-head { flex-wrap: wrap; gap: .3rem 1.2rem; }
  .menu-item .menu-head .dots { display: none; }
  .menu-item .menu-head .price { width: 100%; }
}
.menu-item .menu-head h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--ink);
}
.menu-item .menu-head .dots { flex: 1; border-bottom: 1px dotted var(--sand); transform: translateY(-5px); }
.menu-item .menu-head .price { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink); white-space: nowrap; }
.menu-item .duration { font-size: .68rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; opacity: .65; display: block; margin-bottom: .3rem; }
.menu-item p { font-size: .95rem; max-width: 68ch; }
.menu-item .menu-actions { margin-top: 1.3rem; }


/* ---------- Tira de precios circuito de aguas ---------- */
.aguas-strip {
  background: var(--cream);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: grid; gap: 2rem;
  margin-top: 3.5rem;
}
@media (min-width: 860px) { .aguas-strip { grid-template-columns: 1.3fr 1fr 1fr; align-items: center; } }
.aguas-strip h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--ink); }
.aguas-strip .note { font-size: .85rem; margin-top: .4rem; }
.aguas-strip .aguas-price { border-top: 1px solid var(--line); padding-top: 1.2rem; }
@media (min-width: 860px) {
  .aguas-strip .aguas-price { border-top: 0; padding-top: 0; border-left: 1px solid var(--line); padding-left: 1.6rem; }
}
.aguas-strip .aguas-price span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; opacity: .7; margin-bottom: .4rem; }
.aguas-strip .aguas-price strong { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; color: var(--ink); }
.aguas-strip .aguas-price em { font-style: normal; font-size: .85rem; opacity: .8; }

/* ---------- CTA regalo ---------- */
.gift-cta {
  position: relative; overflow: hidden;
  background-image: url('../img/call-to-action/gift.webp');
  background-size: cover; background-position: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  text-align: center; color: var(--white);
}
.gift-cta::after { content: ""; position: absolute; inset: 0; background: rgba(40, 40, 38, .55); }
.gift-cta .lay { position: relative; z-index: 2; }
.gift-cta .eyebrow { color: var(--white); opacity: .85; }
.gift-cta h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 4.5vw, 3.2rem); color: var(--white); max-width: 18ch; margin-inline: auto; }
.gift-cta h2 em { font-style: italic; font-weight: 400; }
.gift-cta .btn { margin-top: 2.2rem; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-grid .map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(.5); }
.contact-info {
  background: var(--cream);
  padding: clamp(2rem, 3.6vw, 3rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.8rem;
}
.contact-info .c-row { display: flex; gap: 1.3rem; align-items: baseline; }
.contact-info .c-row i { font-size: 1.3rem; color: var(--charcoal); flex-shrink: 0; }
.contact-info .c-row strong {
  display: block; font-size: .7rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ink);
  margin-bottom: .25rem;
}
.contact-info .c-row span, .contact-info .c-row a { font-size: .98rem; }
.contact-info .c-row a:hover { color: var(--ink); }
.social-row { display: flex; gap: 1.2rem; margin-top: .4rem; }
.social-row a {
  width: 44px; height: 44px; border: 1px solid var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); font-size: 1rem;
  transition: background .3s, color .3s;
}
.social-row a:hover { background: var(--charcoal); color: var(--white); }

/* ---------- Políticas ---------- */
.policies-grid { display: grid; gap: 2.5rem 4rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .policies-grid { grid-template-columns: 1fr 1fr; } }
.policy h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.35rem; color: var(--ink);
  margin-bottom: .7rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--line-soft);
}
.policy p { font-size: .93rem; }
.policy + .policy { margin-top: 2.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(255, 255, 255, .65);
  padding-block: clamp(2.4rem, 5vw, 3.4rem);
  text-align: center;
}
.site-footer .brand { font-size: 2.4rem; color: var(--white); display: inline-block; margin-bottom: 1.4rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem 2.2rem; margin-bottom: 2rem; }
.site-footer nav a {
  font-size: .68rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  transition: color .3s;
}
.site-footer nav a:hover { color: var(--white); }
.site-footer .copy { font-size: .8rem; }
.site-footer .copy a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 30px rgba(0, 0, 0, .28); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.3rem;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink);
  line-height: 1.3;
}
.faq-item summary i {
  flex-shrink: 0; font-size: .8rem; color: var(--charcoal);
  transform: rotate(90deg);
  transition: transform .35s var(--ease);
}
.faq-item[open] summary i { transform: rotate(-90deg); }
.faq-item p { padding: 0 0 1.4rem; font-size: .95rem; max-width: 64ch; }

/* ---------- Promo Father's Day ---------- */
.fday-card {
  position: relative; overflow: hidden; isolation: isolate;
  background-image: url('../img/promos/fathers-day.webp');
  background-size: cover; background-position: center 32%;
  color: var(--white);
  padding: clamp(2.2rem, 5vw, 4rem);
}
@media (max-width: 768px) {
  .fday-card { background-image: url('../img/promos/fathers-day-m.webp'); }
}
.fday-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(100deg, rgba(28, 25, 20, .88) 0%, rgba(28, 25, 20, .72) 48%, rgba(28, 25, 20, .38) 100%);
  background-size: 180px 180px, cover;
}
.fday-badge {
  display: inline-block;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .45);
  padding: .5rem 1rem;
  margin-bottom: 1.4rem;
}
.fday-card h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.08;
  color: var(--white);
}
.fday-card h2 em { font-style: italic; font-weight: 400; }
.fday-grid { display: grid; gap: 2rem; margin-top: 1.8rem; }
@media (min-width: 900px) { .fday-grid { grid-template-columns: 1.25fr 1fr; gap: 3rem; align-items: end; } }
.fday-card .inc-list li { border-color: rgba(255, 255, 255, .18); }
.fday-card .inc-list li i { color: var(--white); opacity: .85; }
.fday-card .inc-list li.sub { border-color: rgba(255, 255, 255, .12); }
.fday-prices .fday-price {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .25);
}
.fday-prices .fday-price span {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; opacity: .85;
}
.fday-prices .fday-price strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem); white-space: nowrap;
}
.fday-prices .btn { width: 100%; margin-top: 1.4rem; }
.fday-prices .fday-note { font-size: .8rem; opacity: .75; margin-top: .8rem; text-align: center; }

/* ---------- Section Head: mosaico de fondo + glass ---------- */
.section-hero {
  position: relative;
  min-height: clamp(440px, 64vh, 600px);
  display: flex; align-items: center;
  padding: clamp(7rem, 14vh, 9rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  background: var(--ink);
}
.section-hero .mosaic-bg {
  position: absolute; inset: 0; z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}
.section-hero .mosaic-bg figure { margin: 0; overflow: hidden; }
.section-hero .mosaic-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 6 figuras: col1 alta, col2 (2 apiladas), col3 (2 apiladas), col4 alta */
.section-hero .mosaic-bg figure:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.section-hero .mosaic-bg figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.section-hero .mosaic-bg figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.section-hero .mosaic-bg figure:nth-child(4) { grid-column: 3; grid-row: 1; }
.section-hero .mosaic-bg figure:nth-child(5) { grid-column: 3; grid-row: 2; }
.section-hero .mosaic-bg figure:nth-child(6) { grid-column: 4; grid-row: 1 / span 2; }
.section-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(40,40,38,.5) 0%, rgba(40,40,38,.3) 50%, rgba(40,40,38,.55) 100%);
  background-size: 180px 180px, cover;
}
.section-hero .lay { position: relative; z-index: 2; width: 100%; }
.glass-card {
  max-width: 620px;
  background: rgba(248, 246, 239, .14);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 3px;
  padding: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.glass-card .eyebrow { color: var(--white); opacity: .9; margin-bottom: 1rem; }
.glass-card h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.08;
  color: var(--white);
}
.glass-card h1 em { font-style: italic; font-weight: 400; }
.glass-card p { margin-top: 1.1rem; font-size: clamp(.95rem, 1.3vw, 1.05rem); font-weight: 300; opacity: .94; max-width: 48ch; }
.glass-card .w-divider { margin: 1.5rem 0 0; max-width: 240px; }
.glass-card .w-divider::before, .glass-card .w-divider::after { background: rgba(255,255,255,.3); }
.glass-card .w-divider i { color: var(--white); opacity: .7; }
@media (max-width: 768px) {
  .section-hero .mosaic-bg { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .section-hero .mosaic-bg figure:nth-child(1) { grid-column: 1; grid-row: 1; }
  .section-hero .mosaic-bg figure:nth-child(2) { grid-column: 2; grid-row: 1; }
  .section-hero .mosaic-bg figure:nth-child(3) { grid-column: 1; grid-row: 2; }
  .section-hero .mosaic-bg figure:nth-child(6) { grid-column: 2; grid-row: 2; }
  .section-hero .mosaic-bg figure:nth-child(4), .section-hero .mosaic-bg figure:nth-child(5) { display: none; }
}

/* ---------- Franja promo (home) ---------- */
.promo-band {
  background: var(--ink); color: var(--white);
  padding-block: clamp(1.6rem, 3vw, 2.2rem);
}
.promo-band .lay {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 2.5rem;
}
.promo-band .pb-text { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1.6rem; }
.promo-band .pb-tag {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--sand);
}
.promo-band .pb-title {
  font-family: var(--font-display); font-weight: 500; font-style: normal;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.promo-band .pb-title em { font-style: italic; font-weight: 400; }
.link-arrow--light { color: var(--white); }
.link-arrow--light::before { background: rgba(255, 255, 255, .7); }

/* ---------- Pulidos finales UX ---------- */
.section-hero :focus-visible { outline-color: var(--white); }
.glass-card { -webkit-transform: translateZ(0); transform: translateZ(0); } /* fuerza GPU para blur fluido */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass-card { background: rgba(40, 40, 38, .72); } /* fallback navegadores sin blur */
}

/* ---------- Footer · bloque hotel Wyndham ---------- */
.footer-hotel {
  margin-top: 2.6rem; padding-top: 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}
.footer-hotel .hotel-tagline {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.footer-hotel .hotel-tagline a {
  color: rgba(255, 255, 255, .8);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .3s;
}
.footer-hotel .hotel-tagline a:hover { color: var(--white); }
.footer-hotel .hotel-social { display: flex; gap: 1rem; }
.footer-hotel .hotel-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .8); font-size: 1rem;
  transition: background .3s, color .3s, border-color .3s;
}
.footer-hotel .hotel-social a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }


/* ---------- Sticky CTA móvil (v2.3) ---------- */
.sticky-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:1000;
  background:linear-gradient(180deg,rgba(61,61,61,.95),#3d3d3d);
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top:1px solid var(--sand)}
.sticky-cta a{display:flex;align-items:center;justify-content:space-between;gap:10px;
  background:var(--cream);color:var(--ink);padding:13px 18px;border-radius:4px;
  text-decoration:none;font-family:var(--font-body);font-size:.8rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;line-height:1.2}
.sticky-cta a span{font-family:var(--font-display);font-style:italic;text-transform:none;
  letter-spacing:0;font-size:.95rem}
.sticky-cta a:hover{background:#fff}
@media (max-width:820px){.sticky-cta{display:block}body{padding-bottom:74px}}
