/* ==========================================================================
   Cabana 33 — shisha lounge · coctelería · noches latinas (Hortaleza, Madrid)
   Paradigma: "Bienvenido a la jungla · lounge esmeralda nocturno"
   Firma de motion: neón que ENCIENDE (one-shot) + follaje que se mece.
   ========================================================================== */
:root {
  --base:      #0A241B;   /* jungla casi negra */
  --deep:      #06160F;   /* más profundo */
  --emerald:   #0F5C3E;
  --emerald-h: #12734D;
  --neon:      #57E9A6;
  --neon-glow: #8CF6C6;
  --mustard:   #D6A23E;
  --mustard-l: #E4B653;
  --ember:     #E27B36;
  --cream:     #F2E9D6;
  --cream-2:   #FBF6EA;
  --muted:     #9FB4A6;
  --line:      rgba(87,233,166,.16);
  --panel:     #0C2C20;
  --panel-2:   #0E3327;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--base);
  color: var(--cream);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .brand { font-family: 'Gloock', Georgia, serif; font-weight: 400; letter-spacing: .01em; line-height: 1.08; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.wrap-narrow { max-width: 820px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem; border-radius: 999px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s, color .3s;
  will-change: transform;
}
.btn-lg { padding: 1rem 1.85rem; font-size: 1.02rem; }
.btn:active { transform: translateY(1px); }

.btn-neon {
  background: var(--neon); color: #04231A; border-color: var(--neon);
  box-shadow: 0 0 0 rgba(87,233,166,0);
}
.btn-neon:hover {
  background: var(--neon-glow); color: #04231A;
  box-shadow: 0 6px 30px -6px rgba(87,233,166,.6), 0 0 0 3px rgba(87,233,166,.15);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(242,233,214,.04); color: var(--cream);
  border-color: rgba(242,233,214,.28);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon-glow); transform: translateY(-2px); }
.btn-mustard { background: var(--mustard); color: #241802; border-color: var(--mustard); }
.btn-mustard:hover { background: var(--mustard-l); transform: translateY(-2px); box-shadow: 0 8px 26px -8px rgba(214,162,62,.55); }
.btn-ember { background: var(--ember); color: #1c0d02; border-color: var(--ember); }
.btn-ember:hover { background: #ef8b47; transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(226,123,54,.6); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(6,22,15,.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: .85rem clamp(20px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: baseline; gap: .28rem; font-size: 1.5rem; color: var(--cream-2); }
.brand-word { color: var(--cream-2); }
.brand-num { color: var(--neon); text-shadow: 0 0 14px rgba(87,233,166,.55); }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a { font-size: .95rem; color: var(--cream); opacity: .85; position: relative; padding: .2rem 0; transition: opacity .25s, color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--neon); box-shadow: 0 0 8px var(--neon); transition: width .3s var(--ease); }
.nav-links a:hover { opacity: 1; color: var(--neon-glow); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: .8rem; }
.nav-cta { padding: .6rem 1.25rem; font-size: .9rem; }

.hamb { display: none; flex-direction: column; gap: 5px; width: 42px; height: 38px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamb span { height: 2px; width: 100%; background: var(--cream); border-radius: 2px; transition: .3s; }
.hamb[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamb[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamb[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: .3rem; padding: 1rem clamp(20px,5vw,56px) 1.6rem; background: rgba(6,22,15,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.mobile-menu[hidden] { display: none; }   /* respeta el atributo hidden por encima de la media query */
.mobile-menu a { padding: .7rem 0; color: var(--cream); border-bottom: 1px solid rgba(242,233,214,.07); }
.mobile-menu .btn { margin-top: .8rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; transform: scale(1.06); animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.05) translate3d(0,0,0); } to { transform: scale(1.14) translate3d(-1.6%, -1.4%, 0); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,22,15,.55) 0%, rgba(6,22,15,.30) 32%, rgba(10,36,27,.72) 78%, var(--base) 100%),
    radial-gradient(120% 80% at 22% 60%, rgba(6,22,15,.72) 0%, rgba(6,22,15,0) 60%);
}

.hero-inner { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: 6.5rem clamp(20px,5vw,56px) 4rem; width: 100%; }
.hero-neon { margin: 0 0 1.1rem; }
.neon-ignite {
  display: inline-flex; flex-wrap: wrap;
  font-family: 'Gloock', serif; font-size: clamp(1.1rem, 3.4vw, 1.9rem);
  letter-spacing: .06em; color: var(--neon-glow);
}
.neon-ignite i { font-style: normal; }
.neon-ignite .sp { width: .34em; }
.hero-title { font-size: clamp(2.3rem, 6.4vw, 4.6rem); margin: 0 0 1.2rem; color: var(--cream-2); max-width: 15ch; text-shadow: 0 4px 40px rgba(0,0,0,.5); }
.ht-accent { color: var(--neon-glow); text-shadow: 0 0 30px rgba(87,233,166,.35); }
.hero-sub { font-size: clamp(1.02rem, 1.7vw, 1.24rem); color: var(--cream); opacity: .92; max-width: 46ch; margin: 0 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.7rem; }
.hero-foot { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.1rem; }

.chip-google {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .9rem; border-radius: 999px;
  background: rgba(214,162,62,.14); border: 1px solid rgba(214,162,62,.5);
  color: var(--mustard-l); font-weight: 600; font-size: .9rem;
}
.chip-today { display: inline-flex; }
.chip-today b { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; font-size: .9rem; color: var(--cream); }
.chip-today .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 rgba(87,233,166,0); }
.js-openstate.is-open .dot { background: var(--neon); box-shadow: 0 0 10px var(--neon); animation: pulse 2.4s ease-in-out infinite; }
.js-openstate.is-open .lbl { color: var(--neon-glow); }
.js-openstate.is-closed .dot { background: var(--ember); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

.scroll-cue { position: absolute; z-index: 3; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--cream); opacity: .6; font-size: 1.4rem; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* Follaje que se mece */
.leaf { position: absolute; z-index: 2; color: rgba(15,92,62,.9); filter: drop-shadow(0 8px 30px rgba(0,0,0,.5)); pointer-events: none; }
.leaf-tl { top: -46px; left: -52px; width: clamp(170px, 22vw, 320px); transform-origin: top left; animation: sway 9s ease-in-out infinite; }
.leaf-br { bottom: -60px; right: -56px; width: clamp(190px, 24vw, 360px); transform-origin: bottom right; color: rgba(18,115,77,.85); animation: sway 11s ease-in-out infinite reverse; }
@keyframes sway { 0%,100% { transform: rotate(-3deg) translate3d(0,0,0); } 50% { transform: rotate(3.5deg) translate3d(0,-8px,0); } }

/* ==========================================================================
   ANSWER-FIRST
   ========================================================================== */
.answer { background: var(--deep); padding: clamp(4rem, 9vw, 7rem) 0; position: relative; text-align: center; }
.answer-kicker { text-transform: uppercase; letter-spacing: .32em; font-size: .78rem; color: var(--neon); margin: 0 0 1.4rem; }
.answer-line { font-family: 'Gloock', serif; font-size: clamp(1.5rem, 3.6vw, 2.7rem); line-height: 1.28; margin: 0 auto; color: var(--cream-2); max-width: 24ch; position: relative; }
.answer-line b { color: var(--neon-glow); }
.neon-underline { display: block; height: 2px; width: min(360px, 60%); margin-top: 1.6rem; background: linear-gradient(90deg, var(--neon), rgba(87,233,166,0)); box-shadow: 0 0 12px rgba(87,233,166,.7); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) .2s; }
.answer.in .neon-underline, .answer .in .neon-underline { transform: scaleX(1); }

/* ==========================================================================
   Encabezados de sección
   ========================================================================== */
.sec-head { max-width: 640px; margin: 0 0 clamp(2.2rem, 4vw, 3.4rem); }
.sec-eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: .76rem; color: var(--neon); margin: 0 0 .9rem; }
.eyebrow-ember { color: var(--ember); }
.sec-title { font-size: clamp(1.9rem, 4.6vw, 3.2rem); margin: 0; color: var(--cream-2); }
.sec-lead { color: var(--muted); font-size: 1.08rem; margin: 1rem 0 0; max-width: 52ch; }

/* ==========================================================================
   7.3 DOBLE MARCHA
   ========================================================================== */
.marcha { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: linear-gradient(180deg, var(--base), var(--deep)); }
.beat-switch { position: relative; display: inline-flex; padding: 5px; border-radius: 999px; background: rgba(6,22,15,.6); border: 1px solid var(--line); margin-bottom: 2.4rem; }
.beat-btn { position: relative; z-index: 2; border: 0; background: none; cursor: pointer; padding: .65rem 1.4rem; border-radius: 999px; font-family: 'Outfit',sans-serif; font-weight: 600; font-size: .92rem; color: var(--muted); transition: color .3s; }
.beat-btn.is-active { color: #04231A; }
.beat-btn[data-beat="party"].is-active { color: #04231A; }
.beat-slider { position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px); width: calc(50% - 5px); border-radius: 999px; background: var(--mustard); box-shadow: 0 6px 20px -6px rgba(214,162,62,.6); transition: transform .42s var(--ease), background .42s; }
.beat-switch.party .beat-slider { transform: translateX(100%); background: var(--neon); box-shadow: 0 6px 22px -6px rgba(87,233,166,.7); }

.beat-stage { position: relative; }
.beat-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.4rem); align-items: center; }
.beat-panel:not(.is-active) { display: none; }
.beat-panel { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.beat-panel.is-active { opacity: 1; transform: none; }
.beat-media { border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); border: 1px solid var(--line); }
.beat-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.beat-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(6,22,15,.5); }
.beat-copy h3 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .6rem 0 .8rem; color: var(--cream-2); }
.beat-hours { display: inline-block; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mustard-l); padding: .35rem .8rem; border: 1px solid rgba(214,162,62,.4); border-radius: 999px; }
.beat-hours--neon { color: var(--neon-glow); border-color: rgba(87,233,166,.45); }
.beat-copy p { color: var(--cream); opacity: .9; margin: 0 0 1.3rem; }
.beat-tags { list-style: none; padding: 0; margin: 0 0 1.7rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.beat-tags li { font-size: .85rem; padding: .35rem .8rem; border-radius: 8px; background: rgba(242,233,214,.05); border: 1px solid rgba(242,233,214,.12); color: var(--cream); }

/* ==========================================================================
   7.4 EXPERIENCIA — mosaico
   ========================================================================== */
.exp { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--deep); }
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile { position: relative; border-radius: 18px; overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; border: 1px solid var(--line); isolation: isolate; }
.tile-tall { grid-row: span 2; }
.tile-img::before, .tile-accent::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--bg); background-size: cover; background-position: center;
  transform: scale(1.02); transition: transform .8s var(--ease);
}
.tile-img::after, .tile-accent::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,22,15,0) 30%, rgba(6,22,15,.55) 62%, rgba(6,22,15,.94) 100%);
}
.tile:hover.tile-img::before, .tile:hover.tile-accent::before { transform: scale(1.08); }
.tile-body { padding: 1.5rem 1.5rem 1.6rem; position: relative; z-index: 1; }
.tile-body h3 { font-size: 1.35rem; margin: 0 0 .35rem; color: var(--cream-2); }
.tile-body p { font-size: .94rem; color: var(--cream); opacity: 0; max-height: 0; overflow: hidden; transform: translateY(6px); transition: opacity .4s var(--ease), max-height .5s var(--ease), transform .4s var(--ease); margin: 0; }
.tile:hover .tile-body p, .tile:focus-within .tile-body p { opacity: .92; max-height: 120px; transform: none; }
.tile-body p b { color: var(--neon-glow); }
.tile-flag { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: #04231A; background: var(--neon); padding: .25rem .6rem; border-radius: 6px; margin-bottom: .6rem; font-weight: 700; }
.tile-accent { box-shadow: inset 0 0 0 1px rgba(87,233,166,.35); }
.tile-accent::after { background: linear-gradient(180deg, rgba(6,22,15,.05) 20%, rgba(8,45,32,.6) 60%, rgba(6,22,15,.95) 100%); }
/* En móvil el texto siempre visible (no hay hover) se gestiona en la media query */

/* ==========================================================================
   7.5 EVENTOS
   ========================================================================== */
.eventos { position: relative; overflow: hidden; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.eventos-media { position: absolute; inset: 0; z-index: 0; background: url('img/eventos.webp?v=20260726') center/cover no-repeat; }
.eventos::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,22,15,.94) 0%, rgba(8,30,20,.86) 46%, rgba(28,13,2,.55) 100%),
              linear-gradient(180deg, rgba(6,22,15,.4), rgba(6,22,15,.4));
}
.eventos-inner { position: relative; z-index: 2; }
.eventos-copy { max-width: 620px; }
.eventos .sec-lead { color: var(--cream); opacity: .96; font-size: 1.14rem; }
.hl { color: var(--mustard-l); font-weight: 700; }
.ev-chips { list-style: none; padding: 0; margin: 1.8rem 0 2.2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.ev-chips li {
  font-size: .92rem; padding: .5rem 1.05rem; border-radius: 999px; color: var(--cream-2);
  background: rgba(226,123,54,.10); border: 1px solid rgba(226,123,54,.45);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.ev-chips li:hover { transform: translateY(-2px); border-color: var(--ember); box-shadow: 0 8px 22px -10px rgba(226,123,54,.7); }

/* ==========================================================================
   7.6 VISITA
   ========================================================================== */
.visita { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: linear-gradient(180deg, var(--deep), var(--base)); }
.visita-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.info-list { list-style: none; padding: 0; margin: 1.6rem 0 1.8rem; }
.info-list li { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid rgba(242,233,214,.09); }
.info-k { text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; color: var(--neon); padding-top: 3px; }
.info-v { color: var(--cream); font-size: 1.02rem; }
.info-v a { color: var(--cream-2); border-bottom: 1px solid var(--line); }
.hours { list-style: none; padding: 1rem 1.2rem; margin: 0 0 1.8rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(6,22,15,.4); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem .2rem; font-size: .98rem; color: var(--cream); border-radius: 8px; }
.hours li span:first-child { color: var(--muted); }
.hours li.closed span:last-child { color: var(--ember); }
.hours li.today { background: rgba(87,233,166,.10); padding-left: .8rem; padding-right: .8rem; box-shadow: inset 3px 0 0 var(--neon); }
.hours li.today span { color: var(--cream-2); }
.visita-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.visita-map { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); line-height: 0; }
.visita-map iframe { width: 100%; height: clamp(340px, 44vh, 460px); filter: saturate(.85) brightness(.9) hue-rotate(-6deg); }

/* ==========================================================================
   7.7 FAQ
   ========================================================================== */
.faq { padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(5rem, 10vw, 8rem); background: var(--base); }
.acc { border-top: 1px solid var(--line); }
.ac { border-bottom: 1px solid var(--line); }
.ac summary { list-style: none; cursor: pointer; padding: 1.25rem .2rem 1.25rem 2.2rem; position: relative; font-family: 'Outfit',sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--cream-2); transition: color .25s; }
.ac summary::-webkit-details-marker { display: none; }
.ac summary::before { content: ""; position: absolute; left: .3rem; top: 50%; width: 12px; height: 12px; transform: translateY(-50%); background: radial-gradient(circle, var(--neon) 0 45%, transparent 46%); box-shadow: 0 0 8px rgba(87,233,166,.6); transition: transform .3s var(--ease); }
.ac[open] summary::before { transform: translateY(-50%) scale(1.25); }
.ac summary:hover { color: var(--neon-glow); }
.ac-body { padding: 0 .2rem 1.3rem 2.2rem; }
.ac-body p { margin: 0; color: var(--muted); font-size: 1rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--deep); border-top: 1px solid var(--line); padding: clamp(3.4rem, 7vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.brand--footer { font-size: 1.7rem; }
.footer-neon { font-family: 'Gloock',serif; color: var(--neon-glow); font-size: 1.05rem; margin: .7rem 0 .5rem; text-shadow: 0 0 14px rgba(87,233,166,.5); letter-spacing: .04em; }
.footer-tag { color: var(--muted); font-size: .95rem; margin: 0; max-width: 30ch; }
.footer-col h4 { font-family: 'Outfit',sans-serif; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--neon); margin: 0 0 .9rem; }
.footer-col p { color: var(--cream); opacity: .88; font-size: .96rem; margin: 0 0 .7rem; }
.footer-col a:hover { color: var(--neon-glow); }
.footer-col .btn { margin-top: .5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(242,233,214,.08); font-size: .86rem; color: var(--muted); }
.panoramic-sign a { color: var(--neon-glow); border-bottom: 1px solid var(--line); }
.panoramic-sign a:hover { color: var(--neon); }

/* ==========================================================================
   FAB
   ========================================================================== */
.fab { position: fixed; z-index: 55; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px); display: inline-flex; align-items: center; gap: .55rem; padding: .8rem 1.25rem; border-radius: 999px; background: var(--neon); color: #04231A; font-weight: 700; font-size: .95rem; box-shadow: 0 14px 34px -10px rgba(87,233,166,.7); opacity: 0; transform: translateY(24px) scale(.9); pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .3s; }
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.fab:hover { box-shadow: 0 18px 40px -8px rgba(87,233,166,.85); transform: translateY(-2px); }
.fab svg { width: 22px; height: 22px; fill: #04231A; }

/* ==========================================================================
   MODAL WHATSAPP  (respeta [hidden]; estilado en la paleta)
   ========================================================================== */
.wa-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1.2rem; }
.wa-modal[hidden] { display: none; }
.wa-overlay { position: absolute; inset: 0; background: rgba(4,20,14,.7); backdrop-filter: blur(8px); }
.wa-card { position: relative; z-index: 1; width: min(430px, 96vw); background: var(--panel); color: var(--cream); border: 1px solid var(--line); border-radius: 20px; padding: 2rem 1.7rem 1.9rem; box-shadow: 0 50px 100px -30px rgba(0,0,0,.8); text-align: center; }
.wa-close { position: absolute; top: .7rem; right: 1rem; background: none; border: 0; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--muted); }
.wa-close:hover { color: var(--neon-glow); }
.wa-neon { display: block; font-family: 'Gloock',serif; color: var(--neon-glow); font-size: .95rem; letter-spacing: .05em; text-shadow: 0 0 12px rgba(87,233,166,.6); margin-bottom: .4rem; }
.wa-card h3 { font-size: 1.5rem; margin: 0 0 .3rem; color: var(--cream-2); }
.wa-card p { font-size: .94rem; color: var(--muted); margin: 0 0 1.1rem; }
.wa-qr { display: grid; place-items: center; padding: 1rem; background: #fff; border-radius: 14px; margin: 0 auto 1rem; width: fit-content; }
.wa-qr img { width: 190px; height: 190px; image-rendering: pixelated; display: block; }
.wa-preview { font-size: .82rem; color: var(--muted); margin: 0 0 1rem; }

/* ==========================================================================
   REVEAL (gated por .is-anim; sin JS todo visible)
   ========================================================================== */
html.is-anim [data-r] { opacity: 0; will-change: opacity, transform; }
html.is-anim [data-r="fade"] { transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.is-anim [data-r="clip"] { transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.is-anim [data-r].in { opacity: 1; transform: none; }

/* Neón que ENCIENDE — one-shot letra a letra (solo con .is-anim; reduce lo apaga) */
html.is-anim .neon-ignite i { opacity: .12; color: rgba(140,246,198,.25); text-shadow: none; }
html.is-anim .hero-neon.in .neon-ignite i { animation: ignite .5s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 85ms + 200ms); }
@keyframes ignite {
  0%   { opacity: .12; color: rgba(140,246,198,.25); text-shadow: none; }
  35%  { opacity: 1;  color: #fff; text-shadow: 0 0 6px var(--neon), 0 0 16px var(--neon); }
  45%  { opacity: .35; color: rgba(140,246,198,.5); text-shadow: 0 0 4px var(--neon); }
  60%  { opacity: 1;  color: #fff; text-shadow: 0 0 8px var(--neon), 0 0 22px var(--neon-glow); }
  70%  { opacity: .6; }
  100% { opacity: 1; color: var(--neon-glow); text-shadow: 0 0 6px var(--neon), 0 0 18px rgba(87,233,166,.75), 0 0 34px rgba(87,233,166,.4); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .beat-panel { grid-template-columns: 1fr; }
  .beat-media { order: -1; }
  .visita-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamb { display: flex; }
  .nav-cta { display: none; }
  .mobile-menu { display: flex; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .tile-tall { grid-row: span 1; }
  /* Sin hover: mostrar descripciones */
  .tile-body p { opacity: .9; max-height: 140px; transform: none; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero-inner { padding-top: 5.5rem; }
  .mosaic { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .info-list li { grid-template-columns: 96px 1fr; }
  .fab span { display: none; }
  .fab { padding: .85rem; }
}

/* ==========================================================================
   REDUCED MOTION — apaga ignite, sway, Ken Burns; deja todo visible/encendido
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .hero-media img { transform: scale(1.04); animation: none; }
  .neon-ignite i { opacity: 1 !important; color: var(--neon-glow) !important; text-shadow: 0 0 6px var(--neon), 0 0 18px rgba(87,233,166,.7) !important; }
  html.is-anim [data-r] { opacity: 1 !important; transform: none !important; }
  .beat-panel { transition: none; }
  .neon-underline { transition: none; }
}
