/* ===========================================================
   SOM TRIBU — Escuela de Baile · Paiporta
   Sistema de diseño · Wertical Studio
   Paleta: negro + rosa #FF3399 + turquesa (neon)
   =========================================================== */

:root {
  /* Bases oscuras (ciruela neutra) */
  --bg-900: #0c0a11;
  --bg-850: #13101a;
  --bg-800: #1b1624;
  --bg-700: #251d30;

  /* Acentos de marca (lila neutro claro + turquesa oscuro, sin neón) */
  --magenta:      #ff3399;   /* lila medio: rellenos con texto blanco */
  --magenta-2:    #ff3399;   /* lila claro neutro: acentos y titulares */
  --magenta-deep: #c01f74;   /* lila oscuro: secciones claras y degradados */
  --teal:         #1fcfd6;   /* turquesa oscuro */
  --teal-2:       #45e2e6;   /* turquesa suave: texto e iconos sobre oscuro */
  --purple:       #7a30c8;   /* lila de apoyo para degradados */
  --gold:         #25d0d4;   /* dorado apagado (bono destacado) */
  --gold-2:       #6fe6e8;

  --glow:      rgba(255, 51, 153, .32);
  --glow-teal: rgba(31, 207, 214, .24);

  /* Textos sobre oscuro */
  --light:      #f2eef6;
  --light-soft: rgba(242, 238, 246, .74);
  --light-faint:rgba(242, 238, 246, .46);

  /* Bloques claros */
  --paper:    #f2edf4;
  --paper-2:  #e6dced;
  --ink:      #201826;
  --ink-soft: rgba(32, 24, 38, .70);
  --ink-faint:rgba(32, 24, 38, .46);

  --line-dark:  rgba(242, 238, 246, .12);
  --line-light: rgba(32, 24, 38, .12);

  --maxw: 1200px;
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 26px 64px rgba(0, 0, 0, .55);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, .32);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-900);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--magenta); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-900); }
::-webkit-scrollbar-thumb { background: var(--bg-700); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--magenta-deep); }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
.display { font-family: 'Marcellus', serif; letter-spacing: .04em; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.4rem;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
  background: linear-gradient(180deg, rgba(12,10,17,.78), transparent);
}
nav.scrolled {
  background: rgba(12,10,17, .93);
  backdrop-filter: blur(14px);
  padding: .6rem 2.4rem;
  box-shadow: 0 2px 30px rgba(0, 0, 0, .55);
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; line-height: 1; }
.brand img { width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0; object-fit: cover; }
.brand-txt { display: flex; flex-direction: column; }
.brand-mark {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 1.34rem;
  letter-spacing: 3px;
  color: var(--light);
  line-height: 1;
}
.brand-mark b { color: var(--magenta-2); font-weight: 400; }
.brand-sub {
  font-family: 'Outfit', sans-serif;
  font-size: .52rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-2);
  margin-top: 5px;
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links .lang-switch-item { display: none; }
.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: .74rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: .2rem 0;
  transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--magenta-2); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--teal));
  border-radius: 2px;
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: .8rem; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--magenta);
  color: #fff !important;
  padding: .58rem 1.15rem;
  border-radius: 50px;
  font-size: .7rem; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700;
  text-decoration: none;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav-cta:hover { background: var(--purple); transform: translateY(-2px); box-shadow: 0 10px 24px var(--glow); }
.nav-cta svg { width: 15px; height: 15px; }

.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1px solid var(--line-dark); border-radius: 50%;
  font-size: .66rem; font-weight: 700; letter-spacing: .5px; color: var(--light);
  text-decoration: none; transition: all .3s ease; flex-shrink: 0;
}
.lang-switch:hover { border-color: var(--magenta); color: var(--magenta-2); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 6px; background: none; border: 0; }
.burger span { width: 26px; height: 2px; background: var(--light); border-radius: 2px; transition: .3s; display: block; }

/* ===== Submenú desplegable (Servicios) ===== */
.has-dropdown { position: relative; }
.nav-links .caret {
  width: 11px; height: 11px; margin-left: 4px;
  stroke: currentColor; stroke-width: 2.4; fill: none;
  vertical-align: -1px; transition: transform .3s ease;
}
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }
/* Puente invisible para no perder el hover al bajar al submenú */
.has-dropdown::before {
  content: ''; position: absolute; top: 100%; left: -12px; right: -12px; height: 18px;
}
.dropdown {
  list-style: none;
  position: absolute; top: calc(100% + 14px); left: 0;
  transform: translateY(8px);
  min-width: 196px; max-width: calc(100vw - 2.4rem); padding: .5rem;
  background: var(--bg-850);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .26s ease, transform .26s ease;
  z-index: 1002;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.dropdown li { width: 100%; }
.dropdown a {
  display: block; padding: .62rem .85rem;
  font-size: .68rem; letter-spacing: 1.3px;
  color: var(--light-soft); border-radius: 9px;
  white-space: nowrap;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover { background: var(--bg-700); color: var(--magenta-2); }

/* ===================== BOTONES ===================== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 2rem;
  font-size: .74rem; letter-spacing: 1.6px; text-transform: uppercase;
  text-decoration: none; border-radius: 50px; font-weight: 700;
  cursor: pointer; transition: all .35s ease; border: 1.5px solid transparent;
  font-family: 'Outfit', sans-serif;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.btn-primary:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-3px); box-shadow: 0 14px 32px var(--glow); }
.btn-ghost { background: transparent; color: var(--light); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-2); transform: translateY(-3px); }
.sec-light .btn-ghost { color: var(--ink); border-color: var(--line-light); }
.sec-light .btn-ghost:hover { border-color: var(--magenta-deep); color: var(--magenta-deep); }
.btn-wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover { background: #1eb455; border-color: #1eb455; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,211,102,.34); }

/* ===================== HERO (vídeo) ===================== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, var(--bg-800), var(--bg-900) 78%);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity 1.2s ease;
  filter: saturate(1.05) contrast(1.04) brightness(.72);
}
.hero-video.ready { opacity: 1; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,51,153,.16), rgba(12,10,17,.52) 68%),
    linear-gradient(180deg, rgba(12,10,17,.72) 0%, rgba(12,10,17,.30) 42%, rgba(12,10,17,.97) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 7rem 1.4rem 4rem; max-width: 1000px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal-2); margin-bottom: 1.7rem; font-weight: 600;
  opacity: 0; animation: fadeUp 1s .2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--teal); opacity: .7; }
.hero h1 {
  font-family: 'Marcellus', serif; font-weight: 400;
  font-size: clamp(3.4rem, 12vw, 8.8rem);
  line-height: .98; letter-spacing: .08em; color: var(--light);
  opacity: 0; animation: fadeUp 1.1s .35s forwards;
  text-shadow: 0 8px 60px rgba(0,0,0,.5);
}
.hero h1 b { color: var(--magenta-2); font-weight: 400; }
.hero-tagline {
  font-size: clamp(1.15rem, 2.6vw, 1.7rem); font-weight: 400;
  color: var(--light); margin-top: 1.5rem; letter-spacing: .3px; font-style: italic;
  opacity: 0; animation: fadeUp 1.1s .55s forwards;
}
.hero-desc {
  max-width: 600px; margin: 1.1rem auto 0; color: var(--light-soft); font-size: 1.02rem;
  opacity: 0; animation: fadeUp 1.1s .75s forwards;
}
.hero-buttons {
  margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.1s .95s forwards;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--light-faint); font-size: .62rem; letter-spacing: 2px; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.scroll-cue .mouse { width: 22px; height: 36px; border: 1.5px solid var(--light-faint); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: var(--teal-2); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s ease infinite; }

/* Cabecera de páginas interiores */
.page-hero {
  position: relative; padding: 11rem 1.4rem 4.5rem; text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--glow), transparent 58%), var(--bg-850);
  border-bottom: 1px solid var(--line-dark); overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 220px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--teal), transparent);
}
.page-hero .eyebrow { color: var(--teal-2); }
.page-hero h1 { font-family: 'Marcellus', serif; font-weight: 400; font-size: clamp(2.5rem, 7vw, 4.4rem); color: var(--light); margin-top: .5rem; letter-spacing: .06em; }
.page-hero h1 b { color: var(--magenta-2); }
.page-hero p { max-width: 640px; margin: 1.1rem auto 0; color: var(--light-soft); }

/* ===================== LOGO (transición hero → valores) ===================== */
.home-logo-gap { display: flex; justify-content: center; padding: 2.8rem 1rem; background: var(--bg-900); }
.home-logo-gap img {
  width: 320px; height: 320px; object-fit: contain; border-radius: 48px;
  filter: drop-shadow(0 0 44px var(--glow));
}

/* ===================== SECCIONES ===================== */
section { position: relative; }
.sec { padding: 6rem 1.6rem; }
.container { max-width: var(--maxw); margin: 0 auto; }
.narrow { max-width: 900px; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 3.4rem; }
.eyebrow {
  display: inline-block; font-size: .72rem; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--magenta-2); margin-bottom: .9rem; font-weight: 700;
}
.section-head h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
.section-head h2 b { color: var(--magenta-2); }
.divider { width: 64px; height: 3px; background: linear-gradient(90deg, var(--magenta), var(--teal)); border-radius: 3px; margin: 1.2rem auto; }
.section-head p { color: var(--light-soft); margin-top: .5rem; }

.sec-light { background: var(--paper); color: var(--ink); }
.sec-light .section-head h2 { color: var(--ink); }
.sec-light .section-head h2 b { color: var(--magenta-deep); }
.sec-light .section-head p { color: var(--ink-soft); }
.sec-light .eyebrow { color: var(--magenta-deep); }

/* ===================== VALORES / PILARES ===================== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pillar {
  background: var(--bg-850); border: 1px solid var(--line-dark);
  border-radius: var(--r); padding: 2.1rem 1.5rem; text-align: center;
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--magenta); background: var(--bg-800); }
.pillar .ic {
  width: 56px; height: 56px; margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  border: 1.5px solid var(--teal); color: var(--teal-2); background: rgba(31,207,214,.12);
}
.pillar .ic svg { width: 25px; height: 25px; }
.pillar h3 { font-size: 1.12rem; color: var(--light); margin-bottom: .5rem; }
.pillar p { font-size: .9rem; color: var(--light-soft); }

/* ===================== SPLIT (texto + imagen) ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split.flip .split-media { order: 2; }
.split-text .eyebrow { margin-bottom: 1rem; }
.split-text h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1.2rem; line-height: 1.14; }
.split-text h2 b { color: var(--magenta-2); }
.sec-light .split-text h2 b { color: var(--magenta-deep); }
.split-text p { margin-bottom: 1.1rem; color: var(--light-soft); }
.sec-light .split-text p { color: var(--ink-soft); }
.split-media {
  position: relative; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line-dark); aspect-ratio: 4 / 5;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.split-media::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; pointer-events: none; }

.feature-list { list-style: none; margin-top: 1.4rem; }
.feature-list li { display: flex; align-items: center; gap: .75rem; padding: .55rem 0; font-size: .98rem; }
.feature-list li svg { width: 19px; height: 19px; color: var(--teal); flex-shrink: 0; }
.sec-light .feature-list li { border-bottom: 1px solid var(--line-light); color: var(--ink); }
.sec-light .feature-list li svg { color: var(--magenta-deep); }

/* ===================== STATS ===================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { text-align: center; padding: 1.7rem 1rem; border: 1px solid var(--line-dark); border-radius: var(--r); background: var(--bg-850); }
.stat .num { font-family: 'Marcellus', serif; font-weight: 400; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--magenta-2); line-height: 1; }
.stat .lbl { margin-top: .6rem; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--light-soft); }

/* ===================== SUB-NAV (Servicios) ===================== */
.serv-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
  margin: 0 0 3rem; padding: .8rem .5rem;
  position: sticky; top: 60px; z-index: 900;
  background: rgba(12,10,17,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.serv-tab {
  font-family: 'Outfit', sans-serif; font-size: .74rem; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700;
  color: var(--light-soft); background: transparent; border: 1px solid var(--line-dark);
  padding: .66rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all .3s ease;
}
.serv-tab:hover { border-color: var(--teal); color: var(--light); }
.serv-tab.active { background: linear-gradient(90deg, var(--magenta), var(--magenta-deep)); border-color: var(--magenta); color: #fff; box-shadow: 0 10px 24px var(--glow); }

.serv-cat { display: none; animation: fadeIn .5s ease; }
.serv-cat.active { display: block; }

/* ===================== DISCIPLINAS (cards) ===================== */
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.disc-card {
  background: var(--bg-850);
  border: 1px solid var(--line-dark); border-radius: var(--r);
  padding: 1.9rem 1.5rem 1.7rem; text-align: center;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  position: relative; overflow: hidden;
}
.disc-card .disc-bg {
  display: block; width: 100%; max-width: 178px; height: 190px; margin: 0 auto .8rem;
  object-fit: contain; mix-blend-mode: screen;
  transition: transform .5s ease;
}
.disc-card::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.disc-card:hover {
  transform: translateY(-6px); border-color: var(--magenta); box-shadow: var(--shadow-soft);
}
.disc-card:hover .disc-bg { transform: scale(1.06); }
.disc-card:hover::before { transform: scaleX(1); }
.disc-card .ic {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,51,153,.14); border: 1px solid rgba(255,51,153,.32); color: var(--magenta-2); margin-bottom: 1.1rem;
}
.disc-card .ic svg { width: 26px; height: 26px; }
.disc-card h3 { font-size: 1.2rem; color: var(--light); margin-bottom: .45rem; }
.disc-card p { font-size: .9rem; color: var(--light-soft); }
.disc-card .levels { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.disc-card .levels span {
  font-size: .64rem; letter-spacing: .6px; text-transform: uppercase; font-weight: 600;
  color: var(--teal-2); border: 1px solid rgba(31,207,214,.32); border-radius: 50px; padding: .26rem .66rem;
}

/* ===================== HORARIO (día a día) ===================== */
.sched-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; margin-bottom: 2.6rem; }
.sched-legend span { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--light-soft); }
.sched-legend .dot { width: 12px; height: 12px; border-radius: 4px; }
.dot-s1 { background: var(--magenta); }
.dot-s2 { background: var(--teal); }

.week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.day-col {
  background: var(--bg-850); border: 1px solid var(--line-dark); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
}
.day-col.today { border-color: var(--magenta); box-shadow: 0 0 0 1px var(--magenta), var(--shadow-soft); }
.day-head {
  text-align: center; padding: .95rem .5rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: .82rem; color: var(--light);
  background: linear-gradient(135deg, var(--bg-700), var(--bg-800));
  border-bottom: 1px solid var(--line-dark);
}
.day-col.today .day-head { background: linear-gradient(135deg, var(--magenta-deep), var(--purple)); color: #fff; }
.day-head .today-badge { display: none; font-size: .58rem; letter-spacing: 2px; color: var(--teal-2); margin-top: 3px; }
.day-col.today .day-head .today-badge { display: block; color: #fff; opacity: .85; }
.slots-cols { padding: .7rem; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; flex: 1; align-items: start; }
.slots-col { display: flex; flex-direction: column; gap: .5rem; }
.col-label {
  font-size: .58rem; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700;
  text-align: center; color: var(--light-faint); padding-bottom: .3rem; border-bottom: 1px solid var(--line-dark); margin-bottom: .15rem;
}
.col-label-s1 { color: var(--magenta-2); }
.col-label-s2 { color: var(--teal-2); }
.slot {
  border: 1px solid var(--line-dark); border-radius: var(--r-sm);
  padding: .5rem .55rem; background: var(--bg-800);
  border-left: 3px solid var(--magenta);
}
.slot.s2 { border-left-color: var(--teal); }
.slot .time { font-size: .64rem; letter-spacing: 1px; color: var(--light-faint); font-weight: 600; }
.slot .cls { font-size: .78rem; color: var(--light); font-weight: 600; margin-top: 1px; line-height: 1.25; }
.sched-note { text-align: center; margin-top: 2.4rem; color: var(--light-faint); font-size: .86rem; }

/* ===================== ANUNCIOS ===================== */
.anuncios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.anuncio {
  background: var(--bg-850); border: 1px solid var(--line-dark); border-radius: var(--r);
  overflow: hidden; transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.anuncio:hover { transform: translateY(-7px); border-color: var(--magenta); box-shadow: var(--shadow); }
.anuncio .an-img { aspect-ratio: 1 / 1; overflow: hidden; background: #000; }
.anuncio .an-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.anuncio:hover .an-img img { transform: scale(1.05); }
.anuncio .an-body { padding: 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.anuncio .an-tag { font-size: .62rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--teal-2); font-weight: 700; margin-bottom: .5rem; }
.anuncio h3 { font-size: 1.16rem; color: var(--light); margin-bottom: .45rem; }
.anuncio p { font-size: .9rem; color: var(--light-soft); margin-bottom: 1rem; }
.anuncio .an-cta { margin-top: auto; font-size: .72rem; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; color: var(--magenta-2); display: inline-flex; align-items: center; gap: .4rem; text-decoration: none; }
.anuncio .an-cta svg { width: 14px; height: 14px; transition: transform .3s ease; }
.anuncio:hover .an-cta svg { transform: translateX(4px); }

/* ===================== BONOS / PRECIOS ===================== */
.bonos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.bono {
  background: var(--bg-850); border: 1px solid var(--line-dark); border-radius: var(--r);
  padding: 1.9rem 1.2rem; text-align: center; transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  position: relative;
}
.bono:hover { transform: translateY(-6px); border-color: var(--magenta); box-shadow: var(--shadow-soft); }
.bono .b-classes { font-family: 'Marcellus', serif; font-size: 2.2rem; font-weight: 400; color: var(--light); line-height: 1; }
.bono .b-label { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--light-faint); margin-top: .3rem; }
.bono .b-price { font-family: 'Marcellus', serif; font-size: 1.8rem; font-weight: 400; color: var(--teal-2); margin-top: 1.1rem; }
.b-price-period { font-family: 'Outfit', sans-serif; font-size: .8rem; font-weight: 500; color: var(--light-faint); margin-left: .15rem; }
.bono.featured { background: linear-gradient(160deg, var(--bg-700), var(--bg-850)); border-color: var(--gold); }
.bono.featured::after {
  content: 'Más popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #05252a; font-size: .58rem; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700;
  padding: .24rem .7rem; border-radius: 50px; white-space: nowrap;
}
.bono.featured .b-classes, .bono.featured .b-price { color: var(--gold-2); }
.bono-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.2rem; margin-top: 2rem; }
.bono-meta span { display: inline-flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--light-soft); }
.bono-meta svg { width: 16px; height: 16px; color: var(--teal-2); }

.price-pending {
  max-width: 680px; margin: 2.2rem auto 0; text-align: left;
  border: 1px solid var(--line-dark); border-radius: var(--r); padding: 2rem 2.2rem;
  background: var(--bg-850);
}
.price-pending p { color: var(--light-soft); font-size: .92rem; margin-bottom: .9rem; }
.price-pending p:last-child { margin-bottom: 0; }
.price-pending strong { color: var(--magenta-2); font-weight: 700; }
.price-pending-warn { font-weight: 700; color: var(--light); }
.price-pending ul { list-style: none; margin: 0 0 1.1rem; }
.price-pending li { color: var(--light-soft); font-size: .92rem; margin-bottom: .55rem; line-height: 1.5; }
.price-pending li:last-child { margin-bottom: 0; }

/* ===================== CARDS (home) ===================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--bg-850); border: 1px solid var(--line-dark); border-radius: var(--r);
  overflow: hidden; transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease; text-decoration: none;
}
.card:hover { transform: translateY(-7px); border-color: var(--magenta); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 3 / 2; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card-img img { transform: scale(1.07); }
.card-tag {
  position: absolute; top: 12px; left: 12px; background: rgba(12,10,17,.85); color: var(--teal-2);
  font-size: .62rem; letter-spacing: 1.4px; text-transform: uppercase; padding: .35rem .7rem;
  border-radius: 50px; border: 1px solid var(--line-dark); font-weight: 700;
}
.card-body { padding: 1.6rem 1.5rem; }
.card-body h3 { font-size: 1.3rem; color: var(--light); margin-bottom: .5rem; }
.card-body p { font-size: .92rem; color: var(--light-soft); }

/* ===================== GALERÍA ===================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 1rem; grid-auto-flow: dense; }
.g-item { position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line-dark); background: var(--bg-850); cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(12,10,17,.55)); opacity: 0; transition: opacity .4s ease; }
.g-item:hover::after { opacity: 1; }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 2000; background: rgba(8,3,7,.95); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 88vh; border-radius: var(--r); box-shadow: var(--shadow); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); color: var(--light);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 20px; height: 20px; }

/* ===================== RESEÑAS ===================== */
.rating-band {
  display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  margin-bottom: 3rem; padding: 2rem; border: 1px solid var(--line-dark); border-radius: var(--r); background: var(--bg-850);
}
.rating-band .big { text-align: center; }
.rating-band .big .score { font-family: 'Marcellus', serif; font-weight: 400; font-size: 3rem; color: var(--magenta-2); line-height: 1; }
.rating-band .big .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.15rem; margin-top: .3rem; }
.rating-band .big .sub { font-size: .76rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--light-soft); margin-top: .5rem; }
.rating-band .vsep { width: 1px; height: 56px; background: var(--line-dark); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: var(--bg-850); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; gap: .9rem; transition: transform .4s ease, border-color .4s ease;
}
.review:hover { transform: translateY(-5px); border-color: var(--magenta); }
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: .98rem; }
.review .txt { color: var(--light-soft); font-size: .95rem; line-height: 1.65; flex: 1; }
.review .who { display: flex; align-items: center; gap: .8rem; margin-top: .4rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.review .ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--magenta), var(--purple)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Marcellus', serif; font-weight: 400; font-size: 1.05rem; flex-shrink: 0; }
.review .meta .name { font-weight: 700; color: var(--light); font-size: .92rem; }
.review .meta .role { font-size: .76rem; color: var(--light-faint); }
.review .gmaps-mark { display: inline-flex; align-items: center; gap: .35rem; font-size: .7rem; color: var(--light-faint); }
.review .gmaps-mark svg { width: 14px; height: 14px; }

/* ===================== CONTACTO ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.info-card {
  background: var(--bg-850); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 2.3rem;
  transition: border-color .4s ease;
}
.info-card:hover { border-color: var(--magenta); }
.info-card h3 { font-size: 1.4rem; color: var(--light); margin-bottom: 1.4rem; display: flex; align-items: center; gap: .55rem; }
.info-card h3 svg { width: 20px; height: 20px; color: var(--magenta-2); }
.contact-line { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: 1.1rem; }
.contact-line > svg { width: 18px; height: 18px; color: var(--teal-2); flex-shrink: 0; margin-top: 4px; }
.contact-line a, .contact-line span { color: var(--light-soft); text-decoration: none; transition: color .3s; }
.contact-line a:hover { color: var(--magenta-2); }
.contact-line .lab { display: block; font-size: .66rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--teal-2); margin-bottom: .2rem; }
.tel-big { font-family: 'Marcellus', serif; font-size: 1.4rem; color: var(--magenta-2) !important; font-weight: 400; letter-spacing: .5px; }

.hours-list { list-style: none; margin-top: .2rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .62rem 0; border-bottom: 1px solid var(--line-dark); font-size: .94rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--light); font-weight: 500; }
.hours-list .hrs { color: var(--light-soft); text-align: right; }
.hours-list .closed { color: #e88f9c; font-style: italic; }
.hours-list li.today { background: rgba(255,51,153,.14); margin: 0 -.7rem; padding-left: .7rem; padding-right: .7rem; border-radius: 8px; }
.hours-list li.today .day::before { content: '\25CF'; color: var(--magenta); font-size: .6rem; margin-right: 6px; vertical-align: middle; }

.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.map-wrap { margin-top: 1.5rem; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-dark); box-shadow: var(--shadow-soft); }
.map-wrap iframe { width: 100%; height: 340px; border: none; filter: grayscale(.25) brightness(.82) contrast(1.05); display: block; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; font-size: .74rem; color: var(--light-soft); border: 1px solid var(--line-dark); border-radius: 50px; padding: .42rem .9rem; }
.chip svg { width: 14px; height: 14px; color: var(--teal-2); }

/* ===================== BANNER CTA ===================== */
.banner-cta {
  text-align: center; background: linear-gradient(135deg, var(--bg-800), var(--bg-850));
  border: 1px solid var(--line-dark); border-radius: var(--r); padding: 3.6rem 1.8rem; position: relative; overflow: hidden;
}
.banner-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, var(--glow), transparent 60%); opacity: .55; }
.banner-cta > * { position: relative; z-index: 1; }
.banner-cta h3 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--light); }
.banner-cta h3 b { color: var(--magenta-2); }
.banner-cta p { color: var(--light-soft); max-width: 560px; margin: .9rem auto 1.8rem; }

/* ===================== FOOTER ===================== */
footer { background: var(--bg-850); border-top: 1px solid var(--line-dark); padding: 4rem 1.6rem 2rem; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.4rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--light-soft); font-size: .92rem; max-width: 320px; }
.footer-col h4 { font-size: .74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-2); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: var(--light-soft); text-decoration: none; font-size: .9rem; margin-bottom: .6rem; transition: color .3s; }
.footer-col a:hover { color: var(--magenta-2); }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--light); transition: all .3s ease; }
.socials a svg { width: 17px; height: 17px; }
.socials a:hover { background: var(--magenta); color: #fff; border-color: var(--magenta); transform: translateY(-3px); }
.footer-bottom {
  max-width: var(--maxw); margin: 2.6rem auto 0; padding-top: 1.8rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: var(--light-faint); font-size: .76rem; text-align: center;
}
.footer-bottom a { color: var(--magenta-2); text-decoration: none; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .5rem; }
.footer-legal .sep { color: var(--light-faint); }
.footer-legal-btn {
  background: none; border: 0; padding: 0; font: inherit; color: var(--magenta-2);
  cursor: pointer; text-decoration: none;
}
.footer-legal a:hover, .footer-legal-btn:hover { text-decoration: underline; }

/* ===================== COOKIES ===================== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2200;
  background: rgba(12,10,17,.97); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-dark);
  padding: 1.3rem 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem;
  align-items: center; justify-content: space-between;
  transform: translateY(110%); transition: transform .5s ease;
  box-shadow: 0 -10px 40px rgba(0,0,0,.5);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { flex: 1 1 320px; color: var(--light-soft); font-size: .88rem; margin: 0; }
.cookie-banner a { color: var(--magenta-2); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: .68rem 1.3rem; font-size: .68rem; }

.cookie-modal {
  position: fixed; inset: 0; z-index: 2300; background: rgba(8,3,7,.72); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 1.6rem;
}
.cookie-modal.open { display: flex; }
.cookie-modal-box {
  background: var(--bg-850); border: 1px solid var(--line-dark); border-radius: var(--r);
  padding: 2rem; max-width: 480px; width: 100%; box-shadow: var(--shadow);
  max-height: 86vh; overflow-y: auto;
}
.cookie-modal-box h3 { font-size: 1.3rem; color: var(--light); margin-bottom: 1.2rem; }
.cookie-cat { padding: 1rem 0; border-bottom: 1px solid var(--line-dark); }
.cookie-cat:last-of-type { border-bottom: none; }
.cookie-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 700; color: var(--light); font-size: .92rem; }
.cookie-cat p { color: var(--light-soft); font-size: .82rem; margin-top: .4rem; }
.cookie-modal-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.cookie-modal-actions .btn { flex: 1 1 auto; justify-content: center; padding: .78rem 1rem; font-size: .68rem; }

.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 1; }
.switch .slider { position: absolute; inset: 0; background: var(--line-dark); border-radius: 50px; transition: .3s; }
.switch .slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: var(--light); border-radius: 50%; transition: .3s; }
.switch input:checked + .slider { background: var(--magenta); }
.switch input:checked + .slider::before { transform: translateX(18px); }
.switch-disabled .slider { opacity: .6; }
.switch-disabled input { cursor: not-allowed; }

.map-fallback {
  display: flex; align-items: center; justify-content: center; height: 340px;
  background: var(--bg-800); color: var(--teal-2); text-decoration: none;
  font-size: .82rem; letter-spacing: .5px; text-align: center; padding: 1rem;
  border-radius: var(--r);
}

/* ===================== CONTENIDO LEGAL ===================== */
.legal-content h2 { font-size: 1.28rem; color: var(--light); margin: 2.4rem 0 .9rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.02rem; color: var(--magenta-2); margin: 1.5rem 0 .5rem; }
.legal-content p, .legal-content li { color: var(--light-soft); font-size: .95rem; margin-bottom: .9rem; }
.legal-content ul, .legal-content ol { margin: 0 0 1rem 1.3rem; }
.legal-content strong { color: var(--light); }
.legal-content a { color: var(--magenta-2); }
.table-scroll { overflow-x: auto; margin: 1rem 0 1.6rem; }
.legal-content table { width: 100%; min-width: 480px; border-collapse: collapse; margin: 0; font-size: .86rem; }
.legal-content th, .legal-content td { border: 1px solid var(--line-dark); padding: .6rem .8rem; text-align: left; color: var(--light-soft); }
.legal-content th { color: var(--light); background: var(--bg-850); }
.legal-content .updated { color: var(--light-faint); font-size: .82rem; margin-bottom: 2.4rem; }

/* ===================== FLOTANTES ===================== */
.status-banner {
  position: fixed; left: 16px; bottom: 16px; z-index: 940;
  display: inline-flex; align-items: center; gap: .55rem; padding: .5rem .9rem; border-radius: 50px;
  background: rgba(12,10,17,.88); backdrop-filter: blur(10px); border: 1px solid var(--line-dark);
  color: var(--light); font-size: .72rem; letter-spacing: .3px; font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease;
}
.status-banner.in { opacity: 1; transform: translateY(0); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #888; position: relative; flex-shrink: 0; }
.status-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: inherit; opacity: .5; animation: pulse 2s ease-out infinite; }
.status-open .status-dot { background: #4fd07e; box-shadow: 0 0 10px rgba(79,208,126,.6); }
.status-closed .status-dot { background: #e88f9c; box-shadow: 0 0 10px rgba(232,143,156,.5); }
.status-banner .st-label { color: var(--teal-2); font-weight: 600; }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 945; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(0,0,0,.4); transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 33px; height: 33px; fill: #fff; }
.wa-float::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; opacity: .6; animation: pulse 2.4s ease-out infinite; }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { transform: translateX(-40px); }
.reveal-l.in { transform: translateX(0); }
.reveal-r { transform: translateX(40px); }
.reveal-r.in { transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(2) { transition-delay: .07s; }
.stagger.in > *:nth-child(3) { transition-delay: .14s; }
.stagger.in > *:nth-child(4) { transition-delay: .21s; }
.stagger.in > *:nth-child(5) { transition-delay: .28s; }
.stagger.in > *:nth-child(6) { transition-delay: .35s; }
.stagger.in > *:nth-child(7) { transition-delay: .42s; }
.stagger.in > *:nth-child(8) { transition-delay: .49s; }
.stagger.in > *:nth-child(9) { transition-delay: .56s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1020px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .disc-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid, .anuncios { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bonos { grid-template-columns: repeat(2, 1fr); }
  .bono.featured { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; gap: 2.4rem; }
  .split.flip .split-media { order: 0; }
  .split-media { aspect-ratio: 4/5; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  /* Nav: pasa a menú móvil ya en tablet (evita el híbrido hover-en-táctil) */
  nav { padding: 1rem 1.2rem; }
  nav.scrolled { padding: .7rem 1.2rem; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: 82%; max-width: 340px; height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 1.6rem;
    padding: 2.5rem; right: -100%; background: var(--bg-850); border-left: 1px solid var(--line-dark);
    box-shadow: -12px 0 40px rgba(0,0,0,.6); transition: right .4s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  /* Submenú Servicios: siempre desplegado y sangrado dentro del menú móvil */
  .has-dropdown { width: 100%; }
  .has-dropdown::before { display: none; }
  .nav-links .caret { display: none; }
  .dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; background: none; border: 0; box-shadow: none;
    padding: .95rem 0 0; margin-top: .95rem; border-top: 1px solid var(--line-dark);
    display: flex; flex-direction: column; gap: 1.1rem;
  }
  .dropdown a { padding: 0 0 0 .9rem; font-size: .92rem; letter-spacing: 1px; border-left: 2px solid var(--line-dark); }
  .dropdown a:hover { background: none; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .nav-cta .cta-txt { display: none; }
  .nav-cta { padding: .55rem .75rem; }
  .nav-right { gap: .6rem; }
  .nav-right > .lang-switch { display: none; }
  .nav-links .lang-switch-item { display: block; margin-top: .4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark); width: 100%; }
  .nav-links .lang-switch-item a { font-size: .8rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700; color: var(--teal-2); }
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .week {
    display: flex; flex-wrap: nowrap; gap: .8rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; padding: 4px 2px .7rem;
  }
  .day-col { flex: 0 0 auto; width: 248px; scroll-snap-align: start; }
}
@media (max-width: 620px) {
  .sec { padding: 2.6rem 1rem; }
  .section-head { margin-bottom: 1.9rem; }
  .pillars, .cards, .stats, .anuncios { grid-template-columns: 1fr; }
  .home-logo-gap img { width: 220px; height: 220px; border-radius: 34px; }
  /* Disciplinas: 3 en fila, compactas */
  .disc-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .disc-card { padding: 1rem .5rem; }
  .disc-card .disc-bg { width: 100%; max-width: 100%; height: 94px; margin-bottom: .5rem; }
  .disc-card h3 { font-size: .76rem; margin-bottom: 0; }
  .disc-card p { display: none; }
  /* Precios: cuadrícula de 2 columnas, sin scroll horizontal */
  .bonos { gap: .7rem; }
  .bono { padding: 1.3rem .6rem; }
  /* Horario: 2 columnas por sala necesitan un poco más de ancho */
  .day-col { width: 226px; }
  .slots-cols { gap: .4rem; padding: .55rem; }
  .slot { padding: .42rem .4rem; }
  .slot .cls { font-size: .72rem; }
  /* Barra de categorías compacta */
  .serv-tabs { padding: .5rem .25rem; gap: .28rem; }
  .serv-tab { padding: .46rem .62rem; font-size: .6rem; letter-spacing: .3px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 280px; justify-content: center; }
  .page-hero { padding: 7.5rem 1rem 2.6rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 165px; }
  .rating-band { gap: 1.4rem; padding: 1.4rem; }
  .rating-band .vsep { display: none; }
  .map-wrap iframe, .map-fallback { height: 260px; }
  .cookie-banner { padding: 1.1rem 1.2rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 auto; justify-content: center; }
  .status-banner { left: 10px; bottom: 10px; padding: .42rem .72rem; font-size: .66rem; }
  .wa-float { right: 12px; bottom: 12px; width: 52px; height: 52px; }
  .wa-float svg { width: 29px; height: 29px; }
}
@media (max-width: 460px) {
  .brand-sub { display: none; }
  .brand-mark { font-size: 1.12rem; }
}
@media (hover: none) {
  .card:hover, .pillar:hover, .disc-card:hover, .info-card:hover, .review:hover, .anuncio:hover, .bono:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
