/* ═══════════ TOKENS ═══════════ */
:root {
  --red: #C82028;
  --red-hi: #e63946;
  --blue: #2B4494;
  --blue-hi: #4B6BC4;
  --gold: #B8862B;
  --ink: #0a0c1a;
  --ink-2: #12162c;
  --ink-3: #1b2140;
  --paper: #ffffff;
  --paper-2: #f4f5f9;
  --text: #12151f;
  --muted: #5a6178;
  --line: rgba(18,21,31,0.10);
  --line-dark: rgba(255,255,255,0.14);
  --on-dark: rgba(255,255,255,0.86);
  --on-dark-soft: rgba(255,255,255,0.68);
  --nav-h: 72px;
  --shadow-s: 0 2px 10px rgba(10,12,26,0.06);
  --shadow-m: 0 14px 40px rgba(10,12,26,0.10);
  --shadow-l: 0 30px 70px rgba(10,12,26,0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 3px; }
section[id] { scroll-margin-top: 90px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ═══════════ LAYOUT ═══════════ */
.wrap { width: min(1240px, 100% - 3rem); margin-inline: auto; }
.band { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.band-dark { background: var(--ink); color: var(--on-dark); }
.band-paper2 { background: var(--paper-2); }

/* ═══════════ TYPE ═══════════ */
.display {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--red); flex: none;
}
.band-dark .eyebrow { color: var(--red-hi); }
.band-dark .eyebrow::before { background: var(--red-hi); }
.section-title { font-size: clamp(2.75rem, 7.2vw, 6rem); margin: 0.5rem 0 0; }
.section-lead {
  max-width: 58ch; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.125rem);
  margin-top: 1.35rem;
}
.band-dark .section-lead { color: var(--on-dark-soft); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ═══════════ REVEAL ═══════════ */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .rd-1 { transition-delay: 0.08s; } .rd-2 { transition-delay: 0.16s; }
  .rd-3 { transition-delay: 0.24s; } .rd-4 { transition-delay: 0.32s; }
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; padding: 0.85rem 1.7rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent; border-radius: 2px;
  cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-hi); border-color: var(--red-hi); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,32,40,0.35); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.42); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.10); border-color: #fff; transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--text); border-color: rgba(18,21,31,0.22); }
.btn-ghost-dark:hover { background: var(--text); color: #fff; border-color: var(--text); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ═══════════ PITCH LINES (decorativo) ═══════════ */
.pitch-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  color: currentColor; opacity: 0.10;
}
.pitch-lines svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ═══════════ TOP SOCIAL / NAV ═══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0 clamp(1rem, 3vw, 2.5rem); height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
nav.solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(10,12,26,0.07);
}
.nav-left { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 3rem); }
.nav-logo { display: block; position: relative; height: 46px; width: 120px; flex: none; }
.nav-logo img {
  position: absolute; inset: 0; height: 100%; width: 100%;
  object-fit: contain; object-position: left center;
  transition: opacity 0.35s ease;
}
.nav-logo .logo-color { opacity: 0; }
nav.solid .nav-logo .logo-color { opacity: 1; }
nav.solid .nav-logo .logo-white { opacity: 0; }

.nav-links { display: flex; gap: clamp(1rem, 2vw, 1.9rem); list-style: none; align-items: center; }
.nav-links a {
  display: inline-flex; align-items: center; height: 44px;
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav.solid .nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: var(--red-hi); }
nav.solid .nav-links a:hover, nav.solid .nav-links a.active { color: var(--text); border-bottom-color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 0.6rem; }
.lang-toggle { display: flex; border: 1px solid rgba(255,255,255,0.28); border-radius: 2px; overflow: hidden; }
nav.solid .lang-toggle { border-color: var(--line); }
.lang-btn {
  background: transparent; border: none; cursor: pointer;
  min-width: 44px; min-height: 44px; padding: 0 0.55rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s;
}
nav.solid .lang-btn { color: var(--muted); }
.lang-btn.active { background: var(--red); color: #fff; }
nav.solid .lang-btn.active { background: var(--red); color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 1.15rem; background: var(--red); color: #fff;
  text-decoration: none; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; border-radius: 2px;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--red-hi); }

.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.2s, background 0.3s; }
nav.solid .nav-toggle span { background: var(--text); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 198; background: rgba(10,12,26,0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }
.nav-mobile {
  position: fixed; top: 0; right: 0; z-index: 199;
  width: min(340px, 88vw); height: 100dvh;
  background: var(--ink); color: #fff;
  padding: calc(var(--nav-h) + 1.25rem) 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transform: translateX(105%); transition: transform 0.36s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
}
.nav-mobile.open { transform: none; }
.nav-mobile a {
  display: flex; align-items: center; min-height: 52px;
  color: var(--on-dark); text-decoration: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line-dark);
}
.nav-mobile a:hover { color: var(--red-hi); }
.nav-mobile-lang { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.nav-mobile-lang .lang-btn { border: 1px solid var(--line-dark); border-radius: 2px; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  background: var(--ink); color: #fff;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
  overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 620px at 82% 14%, rgba(43,68,148,0.55), transparent 62%),
    radial-gradient(880px 560px at 8% 88%, rgba(200,32,40,0.34), transparent 60%),
    linear-gradient(160deg, #0a0c1a 0%, #0d1024 52%, #090a16 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,12,26,0) 62%, rgba(10,12,26,0.9) 100%);
}
.hero .pitch-lines { z-index: -1; opacity: 0.16; color: #fff; }
.hero-inner { position: relative; z-index: 2; width: min(1240px, 100% - 3rem); margin-inline: auto; }
.hero-eyebrow { color: rgba(255,255,255,0.9); }
.hero-eyebrow::before { background: var(--red-hi); }
.hero-title {
  font-family: 'Bebas Neue', sans-serif; text-transform: uppercase;
  font-size: clamp(4.2rem, 17.5vw, 15rem);
  line-height: 0.82; letter-spacing: 0.005em;
  margin: 1.35rem 0 0;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .line > span { display: block; }
.hero-title .accent { color: var(--red-hi); }
.hero-sub {
  max-width: 46ch; margin-top: 1.6rem;
  font-size: clamp(1rem, 1.5vw, 1.22rem); color: var(--on-dark);
}
.hero-countries {
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.35rem;
  margin-top: 1.9rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}
.hero-countries li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark);
}
.flag { width: 22px; height: 15px; border-radius: 2px; flex: none; box-shadow: 0 0 0 1px rgba(255,255,255,0.22); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.4rem; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); min-height: 44px;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none; padding: 0.5rem 1rem;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll i { display: block; width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); }

/* trazo animado + pelota */
.hero-ball-track {
  position: absolute; left: 0; right: 0; bottom: 22%; height: 1px;
  background: rgba(255,255,255,0.12); z-index: 1; overflow: visible;
}
.hero-ball {
  position: absolute; top: 50%; left: 0; width: 12px; height: 12px; margin-top: -6px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.10), 0 0 26px 6px rgba(230,57,70,0.55);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-title .line > span { transform: translateY(105%); animation: riseUp 1s cubic-bezier(.22,.61,.36,1) forwards; }
  .hero-title .line:nth-child(1) > span { animation-delay: 0.15s; }
  .hero-title .line:nth-child(2) > span { animation-delay: 0.3s; }
  .hero-stagger { opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s cubic-bezier(.22,.61,.36,1) forwards; }
  .hs-1 { animation-delay: 0.05s; } .hs-2 { animation-delay: 0.55s; }
  .hs-3 { animation-delay: 0.7s; } .hs-4 { animation-delay: 0.85s; } .hs-5 { animation-delay: 1s; }
  .hero-ball { animation: ballRun 9s cubic-bezier(.55,0,.45,1) infinite; }
  .hero-scroll i { animation: pulseLine 2.4s ease-in-out infinite; transform-origin: top; }
  @keyframes riseUp { to { transform: translateY(0); } }
  @keyframes fadeUp { to { opacity: 1; transform: none; } }
  @keyframes ballRun {
    0% { left: -3%; opacity: 0; }
    8% { opacity: 1; }
    92% { opacity: 1; }
    100% { left: 103%; opacity: 0; }
  }
  @keyframes pulseLine { 0%,100% { transform: scaleY(0.55); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }
}

/* ═══════════ MAIN PARTNER (franja tipo cartel perimetral) ═══════════ */
.partner-strip {
  background: var(--ink); color: #fff;
  border-top: 1px solid var(--line-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: stretch;
  height: clamp(72px, 9vw, 96px);
}
.partner-strip::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 4;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 50%, var(--red) 50%, var(--red) 100%);
}
.partner-label {
  position: relative; z-index: 3; flex: none;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0 clamp(1rem, 3vw, 2.25rem);
  background: var(--ink);
  font-size: clamp(0.6rem, 1.4vw, 0.7rem); font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.72);
  white-space: nowrap;
}
.partner-label::after {
  content: ""; position: absolute; right: -46px; top: 0; bottom: 0; width: 46px;
  background: linear-gradient(90deg, var(--ink), transparent); pointer-events: none;
}
.partner-marquee {
  position: relative; flex: 1; min-width: 0; overflow: hidden;
  display: flex; align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 70px, #000 calc(100% - 70px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 70px, #000 calc(100% - 70px), transparent 100%);
}
.partner-track { display: flex; flex: none; width: max-content; will-change: transform; }
.partner-row { display: flex; flex: none; align-items: center; }
.partner-item {
  display: inline-flex; flex: none; align-items: center; justify-content: center;
  padding: 0 clamp(1.5rem, 3.5vw, 3rem); min-height: 44px;
}
.partner-item img {
  height: clamp(22px, 3.2vw, 32px); width: auto; flex: none;
  object-fit: contain; opacity: 0.92; transition: opacity 0.25s;
}
.partner-item:hover img { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .partner-track { animation: partnerRun 26s linear infinite; }
  .partner-marquee:hover .partner-track { animation-play-state: paused; }
  @keyframes partnerRun { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
}

/* ═══════════ QUIÉNES SOMOS ═══════════ */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.about-media {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.about-media figure {
  position: relative; overflow: hidden; background: var(--paper-2); border-radius: 2px;
}
.about-media figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-media .m-main { grid-column: 1 / -1; aspect-ratio: 16 / 10; box-shadow: var(--shadow-m); }
.about-media .m-sm { aspect-ratio: 1 / 1; }
.about-badge {
  position: absolute; left: 0; top: 0; z-index: 3;
  background: var(--red); color: #fff; padding: 0.7rem 1.05rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; line-height: 0.95;
  letter-spacing: 0.05em; text-align: center; white-space: pre-line;
}
.about-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.1rem 0.8rem;
  color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: linear-gradient(to top, rgba(10,12,26,0.82), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .about-media figure img { transition: transform 0.7s cubic-bezier(.22,.61,.36,1); }
  .about-media figure:hover img { transform: scale(1.05); }
}
.about-body p { color: var(--muted); margin-top: 1.15rem; }
.about-body p.lead { color: var(--text); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem; margin-top: 2.75rem; padding-top: 2.25rem; border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  line-height: 0.9; color: var(--blue); letter-spacing: 0.01em;
}
.stat-num.is-red { color: var(--red); }
.stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.55rem; }
.stat-desc { font-size: 0.86rem; color: var(--muted); margin-top: 0.3rem; }
.staff-note {
  margin-top: 2.75rem; padding: 1.9rem 2rem; background: var(--paper-2);
  border-left: 4px solid var(--blue); border-radius: 2px;
}
.staff-note .eyebrow { color: var(--blue); }
.staff-note .eyebrow::before { background: var(--blue); }
.staff-note p { margin-top: 0.9rem; }
.staff-quote {
  font-family: 'DM Serif Display', Georgia, serif; font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.45;
  color: var(--text) !important; margin-top: 1.25rem !important;
}

/* ═══════════ TARJETAS DE PROGRAMA (clínicas + stage) ═══════════ */
.programs {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.pcard {
  --accent: var(--blue);
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; box-shadow: var(--shadow-s);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s, border-color 0.35s;
}
.pcard.is-red { --accent: var(--red); }
.pcard.is-blue { --accent: var(--blue); }
.pcard.is-ink { --accent: var(--ink-3); }
.pcard.is-gold { --accent: var(--gold); }
@media (hover: hover) {
  .pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-m); }
  .pcard:hover { border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 26px 54px -18px color-mix(in srgb, var(--accent) 55%, transparent), var(--shadow-m); }
  .pcard:hover .pcard-media img { transform: scale(1.06); }
}
.pcard-head {
  background: var(--accent); color: #fff;
  padding: 0.75rem 1.15rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.pcard-head .pcard-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 0.08em; opacity: 0.85; }
.pcard-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink); }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.22,.61,.36,1); }
.pcard-tint {
  position: absolute; inset: 0;
  /* fallback para navegadores sin color-mix() */
  background: linear-gradient(180deg, rgba(10,12,26,0.45) 0%, rgba(10,12,26,0.15) 45%, rgba(10,12,26,0.78) 100%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 62%, transparent) 0%, color-mix(in srgb, var(--accent) 18%, transparent) 45%, rgba(10,12,26,0.72) 100%);
  mix-blend-mode: multiply;
}
.pcard-badge {
  position: absolute; left: 0.9rem; top: 0.9rem; z-index: 2;
  background: rgba(255,255,255,0.94); color: var(--text);
  padding: 0.34rem 0.7rem; border-radius: 2px;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.pcard-dates {
  position: absolute; left: 1.1rem; bottom: 0.9rem; right: 1.1rem; z-index: 2; color: #fff;
}
.pcard-dates .d-day { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 0.9; }
.pcard-dates .d-month { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.pcard-body { padding: 1.35rem 1.35rem 0.5rem; flex: 1; }
.pcard-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 2.6vw, 2.05rem); line-height: 1; letter-spacing: 0.02em; }
.pcard-sub { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 0.4rem; }
.pcard-list { list-style: none; margin-top: 1.15rem; display: grid; gap: 0.62rem; }
.pcard-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.pcard-list svg { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--accent); }
.pcard-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 1.1rem 1.35rem 1.35rem; margin-top: auto;
}
.pcard-consult {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 44px; padding: 0.6rem 0.9rem; border-radius: 2px;
  color: var(--accent); text-decoration: none; background: color-mix(in srgb, var(--accent) 9%, transparent);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.pcard-consult:hover { background: var(--accent); color: #fff; }
.pcard-consult svg { width: 16px; height: 16px; flex: none; }
.pcard-btn {
  min-height: 44px; padding: 0.6rem 1.15rem; border: 2px solid var(--accent); background: transparent;
  color: var(--accent); border-radius: 2px; cursor: pointer;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.pcard-btn:hover { background: var(--accent); color: #fff; }

/* Carrusel móvil */
.programs-scroller { position: relative; }
.scroll-hint { display: none; }

/* ═══════════ STAGE ═══════════ */
.stage-card {
  --accent: var(--blue);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; box-shadow: var(--shadow-m);
}
.stage-media { position: relative; min-height: 340px; background: var(--ink); }
.stage-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage-media .pcard-tint { background: linear-gradient(140deg, rgba(43,68,148,0.55), rgba(10,12,26,0.35) 60%, rgba(200,32,40,0.35)); }
.stage-flagline {
  position: absolute; left: 0; top: 0; bottom: 0; width: 8px; z-index: 2;
  background: linear-gradient(180deg, #101010 0 33.33%, #FFD90C 33.33% 66.66%, #C8102E 66.66% 100%);
}
.stage-body { padding: clamp(1.75rem, 3.5vw, 3rem); display: flex; flex-direction: column; }
.stage-years {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1; color: var(--blue); letter-spacing: 0.03em; margin-top: 0.35rem;
}
.stage-facts { list-style: none; display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.stage-facts li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--muted); font-size: 0.92rem; }
.stage-facts svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--blue); }
.stage-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: auto; padding-top: 1.9rem; }

/* ═══════════ NOTICIAS ═══════════ */
.news-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 1.5rem; }
.news-feature {
  position: relative; display: block; text-decoration: none; color: #fff;
  min-height: clamp(360px, 46vw, 520px); border-radius: 3px; overflow: hidden;
  background: var(--ink); box-shadow: var(--shadow-m);
}
.news-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(.22,.61,.36,1); }
.news-feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,26,0.15) 0%, rgba(10,12,26,0.55) 45%, rgba(10,12,26,0.94) 100%);
}
.news-feature:hover img { transform: scale(1.05); }
.news-feature-body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 3vw, 2.5rem); }
.news-chip {
  display: inline-block; align-self: flex-start; background: var(--red); color: #fff;
  padding: 0.3rem 0.7rem; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.news-date { font-size: 0.72rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.72); margin-top: 1rem; }
.news-feature h3 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.02em;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 0.98; margin-top: 0.5rem;
}
.news-feature p { color: rgba(255,255,255,0.82); margin-top: 0.85rem; max-width: 52ch; font-size: 0.95rem; }
.news-more { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.news-more svg { width: 16px; height: 16px; transition: transform 0.3s; }
.news-feature:hover .news-more svg, .news-side:hover .news-more svg { transform: translateX(6px); }
.news-col { display: grid; gap: 1.5rem; align-content: start; }
.news-side {
  display: block; text-decoration: none; color: inherit; position: relative;
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: var(--paper);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.news-side:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); border-color: rgba(43,68,148,0.35); }
.news-side-art {
  position: relative; height: 160px; background: var(--blue); color: #fff;
  display: flex; align-items: flex-end; padding: 1.1rem 1.25rem; overflow: hidden;
}
.news-side-art::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.18) 0 2px, transparent 2px 14px);
}
.news-side-art .art-word {
  white-space: pre-line;
  position: relative; z-index: 2; font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 0.92; letter-spacing: 0.03em;
}
.news-side-art .art-mark { position: absolute; right: -12px; top: -18px; width: 130px; height: 130px; opacity: 0.28; z-index: 1; }
.news-side-body { padding: 1.15rem 1.25rem 1.35rem; }
.news-side-body .news-date { color: var(--muted); margin-top: 0; }
.news-side-body h4 { font-size: 1.02rem; font-weight: 600; line-height: 1.35; margin-top: 0.45rem; }
.news-side .news-more { color: var(--red); margin-top: 0.9rem; }

/* ── Novedad destacada (clasificación Europeo A) ── */
.news-lead {
  grid-column: 1 / -1; position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 2.5rem); align-items: center;
  background: var(--ink-2); color: #fff; border-radius: 3px;
  box-shadow: var(--shadow-m); padding: clamp(1.5rem, 3vw, 2.5rem);
}
.news-lead::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px);
}
.news-lead-body { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
.news-lead-body .news-date { color: var(--on-dark-soft); }
.news-lead h3 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.02em;
  font-size: clamp(1.9rem, 3.7vw, 3.05rem); line-height: 0.96; margin-top: 0.5rem;
}
.news-lead-kicker {
  margin-top: 1.05rem; padding-left: 0.95rem; border-left: 3px solid var(--red);
  font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; line-height: 1.4; color: #fff;
}
.news-lead-media {
  position: relative; z-index: 2; display: grid; gap: 0.55rem;
  grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, 1fr);
  aspect-ratio: 16 / 10;
}
.news-lead-media figure { margin: 0; position: relative; overflow: hidden; border-radius: 2px; background: var(--ink); }
.news-lead-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(.22,.61,.36,1); }
.news-lead-media figure:hover img { transform: scale(1.06); }
.news-lead-media .m-main { grid-row: 1 / span 2; }
.news-lead-media figure:not(.m-main) img { object-position: 50% 32%; }
.news-lead-media.n-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.news-lead-media.n-2 { grid-template-rows: 1fr; }
.news-lead-media.n-2 .m-main { grid-row: auto; }
.news-lead-link { color: #fff; text-decoration: none; }
.news-lead:hover .news-lead-link svg { transform: translateX(6px); }

/* ═══════════ REELS / VIDEOS ═══════════ */
#reels { position: relative; overflow: hidden; }
#reels .pitch-lines { color: #fff; opacity: 0.08; }
#reels .wrap { position: relative; z-index: 2; }
.reels-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.reel-card {
  position: relative; display: block; text-decoration: none; color: #fff;
  aspect-ratio: 9 / 16; border-radius: 3px; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line-dark);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), border-color 0.35s, box-shadow 0.35s;
}
.reel-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 16px);
}
.reel-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 260px at 50% 22%, rgba(200,32,40,0.35), transparent 70%);
}
.reel-card:hover { transform: translateY(-6px); border-color: rgba(230,57,70,0.6); box-shadow: 0 24px 50px -20px rgba(230,57,70,0.5); }
.reel-inner { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 1.4rem; }
.reel-play {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.35);
  align-self: flex-start;
}
.reel-play svg { width: 22px; height: 22px; margin-left: 3px; }
.reel-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.65rem; line-height: 1; letter-spacing: 0.02em; display: block; }
.reel-meta { font-size: 0.75rem; color: var(--on-dark-soft); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.45rem; }
.reel-meta svg { width: 15px; height: 15px; }

/* ── Tarjeta con portada del reel (sin video alojado todavía) ── */
.reel-card.has-cover { background: #000; }
.reel-card.has-cover::before, .reel-card.has-cover::after { display: none; }
.reel-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.reel-toggle.is-static { pointer-events: none; }
@media (prefers-reduced-motion: no-preference) {
  .reel-cover { transition: transform 0.7s cubic-bezier(.22,.61,.36,1); }
  .reel-card.has-cover:hover .reel-cover { transform: scale(1.05); }
}

/* ── Tarjeta con video propio (portada + reproducción en la página) ── */
.reel-card.has-video { background: #000; cursor: pointer; }
.reel-card.has-video::before, .reel-card.has-video::after { display: none; }
.reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; background: #000; }
.reel-shade {
  position: absolute; inset: 0; z-index: 2; transition: opacity 0.35s;
  background: linear-gradient(180deg, rgba(10,12,26,0.45) 0%, rgba(10,12,26,0.05) 42%, rgba(10,12,26,0.85) 100%);
}
.reel-toggle {
  position: absolute; z-index: 4; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  background: rgba(10,12,26,0.45); border: 2px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(4px); transition: background 0.25s, transform 0.25s, opacity 0.3s;
}
.reel-toggle svg { width: 26px; height: 26px; margin-left: 4px; }
.reel-card:hover .reel-toggle { background: var(--red); border-color: var(--red); transform: translate(-50%, -50%) scale(1.06); }
.reel-card.playing .reel-shade, .reel-card.playing .reel-toggle { opacity: 0; pointer-events: none; }
.reel-card.playing .reel-title { opacity: 0; }
.reel-card .reel-title { transition: opacity 0.3s; }
.reel-ig {
  position: relative; z-index: 5; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 0.45rem; min-height: 40px;
  padding: 0.4rem 0.8rem; border-radius: 100px; text-decoration: none;
  background: rgba(10,12,26,0.55); border: 1px solid rgba(255,255,255,0.35); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
}
.reel-ig:hover { background: var(--red); border-color: var(--red); }
.reel-ig svg { width: 15px; height: 15px; flex: none; }
.reels-foot { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.reels-note { font-size: 0.8rem; color: var(--on-dark-soft); }

/* ═══════════ LO QUE SE VIENE ═══════════ */
.next-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.next-card {
  background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--blue);
  border-radius: 3px; padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.35s, box-shadow 0.35s;
}
.next-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.next-card:nth-child(2) { border-top-color: var(--red); }
.next-card:nth-child(3) { border-top-color: var(--gold); }
.next-icon { width: 34px; height: 34px; color: var(--blue); }
.next-card:nth-child(2) .next-icon { color: var(--red); }
.next-card:nth-child(3) .next-icon { color: var(--gold); }
.next-cat { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.85rem; }
.next-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; line-height: 1.02; letter-spacing: 0.02em; }
.next-desc { font-size: 0.88rem; color: var(--muted); }
.next-link {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.45rem; min-height: 44px;
  color: var(--red); text-decoration: none; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
}
.next-link svg { width: 15px; height: 15px; transition: transform 0.3s; }
.next-link:hover svg { transform: translateX(5px); }

/* ═══════════ CLUB ═══════════ */
#club { position: relative; overflow: hidden; }
#club .pitch-lines { color: #fff; opacity: 0.09; }
.club-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.club-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.85; letter-spacing: 0.015em; margin-top: 0.6rem; }
.club-title span { color: var(--red-hi); }
.club-perks { list-style: none; display: grid; gap: 1.1rem; margin-top: 2.25rem; }
.club-perks li { display: flex; gap: 1rem; align-items: flex-start; }
.club-perks svg { flex: none; width: 22px; height: 22px; color: var(--red-hi); margin-top: 2px; }
.club-perks strong { display: block; font-size: 0.98rem; color: #fff; font-weight: 600; }
.club-perks span { font-size: 0.88rem; color: var(--on-dark-soft); }
.club-form {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark);
  border-radius: 3px; padding: clamp(1.6rem, 3vw, 2.25rem);
  backdrop-filter: blur(6px);
}
.club-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.03em; line-height: 1; }
.club-form > p { font-size: 0.9rem; color: var(--on-dark-soft); margin-top: 0.6rem; }
.field { display: grid; gap: 0.4rem; margin-top: 1.1rem; }
.field label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 0.75rem 0.9rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,68,148,0.16);
}
.club-form .field label { color: var(--on-dark); }
.club-form .field input {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); color: #fff;
}
.club-form .field input::placeholder { color: rgba(255,255,255,0.45); }
.club-form .field input:focus { border-color: var(--red-hi); box-shadow: 0 0 0 3px rgba(230,57,70,0.25); }
.club-note { font-size: 0.78rem; color: var(--on-dark-soft); margin-top: 1rem; }
.form-msg { display: none; margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 2px; font-size: 0.9rem; }
.form-msg.ok { display: block; background: rgba(16,185,129,0.14); color: #10b981; border: 1px solid rgba(16,185,129,0.4); }
.form-msg.err { display: block; background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.4); }
#contact-msg.ok { color: #047857; background: rgba(16,185,129,0.10); }
#contact-msg.err { color: #b91c1c; background: rgba(239,68,68,0.08); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ═══════════ CONTACTO ═══════════ */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-list { list-style: none; display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact-list a, .contact-list div { display: flex; gap: 0.9rem; align-items: flex-start; text-decoration: none; color: inherit; min-height: 44px; }
.contact-list svg { flex: none; width: 20px; height: 20px; color: var(--red); margin-top: 3px; }
.contact-list .c-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact-list .c-value { font-size: 1rem; font-weight: 500; }
.contact-list a:hover .c-value { color: var(--red); }
.btn-mail { background: var(--red); border-color: var(--red); color: #fff; margin-top: 2rem; }
.btn-mail:hover { background: var(--red-hi); border-color: var(--red-hi); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,32,40,0.32); }
.btn-mail svg { width: 20px; height: 20px; }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 3px; padding: clamp(1.6rem, 3vw, 2.5rem); box-shadow: var(--shadow-s); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.consent { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }
.form-submit { margin-top: 1.5rem; }

/* Mail flotante */
.mail-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 190;
  width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(10,12,26,0.28); text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.mail-fab:hover { background: var(--red-hi); transform: translateY(-2px); }
.mail-fab svg { width: 26px; height: 26px; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--ink); color: var(--on-dark); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 2.5rem; }
.footer-logo { height: 52px; width: auto; }
.footer-desc { font-size: 0.9rem; color: var(--on-dark-soft); margin-top: 1.1rem; max-width: 42ch; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-list { list-style: none; display: grid; gap: 0.15rem; }
.footer-list a { display: inline-flex; align-items: center; min-height: 44px; color: var(--on-dark-soft); text-decoration: none; font-size: 0.9rem; }
.footer-list a:hover { color: #fff; }
.footer-partner { display: inline-flex; align-items: center; gap: 0.7rem; }
.footer-partner img { height: 20px; width: auto; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark); border-radius: 2px; color: var(--on-dark); transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .about-grid, .club-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 620px; }
  .stage-card { grid-template-columns: 1fr; }
  .stage-media { min-height: 280px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-lead { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  nav .lang-toggle { display: none; }
}
@media (max-width: 760px) {
  .wrap { width: calc(100% - 2.5rem); }
  .hero-inner { width: calc(100% - 2.5rem); }
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { display: none; }
  .stats { grid-template-columns: 1fr; gap: 1.4rem; text-align: left; }
  .stats > div { display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1.1rem; align-items: center; }
  .stat-num { grid-row: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .mail-fab { display: flex; }
  .about-media { gap: 7px; }
  .about-badge { font-size: 1.05rem; padding: 0.55rem 0.8rem; }
  .about-media figcaption { display: none; }

  /* Carrusel horizontal de reels */
  .reels-grid {
    display: flex; gap: 0.9rem; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-inline: -1.25rem; padding: 0.25rem 1.25rem 1rem;
  }
  .reels-grid::-webkit-scrollbar { display: none; }
  .reels-grid > .reel-card { flex: 0 0 68%; scroll-snap-align: center; }
  .reels-foot { margin-top: 1.25rem; }

  /* Carrusel horizontal de programas */
  .programs {
    display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-inline: -1.25rem; padding: 0.5rem 1.25rem 1.25rem;
  }
  .programs::-webkit-scrollbar { display: none; }
  .programs > .pcard { flex: 0 0 82%; scroll-snap-align: center; }
  .scroll-hint {
    display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem;
    font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  }
  .scroll-hint svg { width: 16px; height: 16px; }
}
@media (max-width: 560px) {
  .partner-strip { height: 66px; }
  .partner-label { letter-spacing: 0.18em; padding: 0 0.9rem; }
  .partner-label::after { right: -26px; width: 26px; }
  .partner-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
  }
  .partner-item { padding: 0 1.15rem; }
}
@media (max-width: 420px) {
  .hero-countries { gap: 0.5rem 1rem; }
  .hero-countries li { font-size: 0.68rem; }
  .programs > .pcard { flex: 0 0 88%; }
}

/* ═══════════ TARJETA DE CLÍNICA → PÁGINA DE DETALLE ═══════════ */
.pcard-link { color: inherit; text-decoration: none; }
.pcard-link::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.pcard-foot { position: relative; z-index: 2; }
.pcard:focus-within { outline: 2px solid var(--accent); outline-offset: 3px; }
.pcard-link:focus-visible { outline: none; }
.pcard-consult svg { width: 16px; height: 16px; transition: transform 0.3s; }
@media (hover: hover) { .pcard:hover .pcard-consult svg { transform: translateX(5px); } }

/* ═══════════ PÁGINA DE DETALLE DE CLÍNICA ═══════════ */
.cdet { --accent: var(--blue); }
.cdet.is-red  { --accent: var(--red); }
.cdet.is-blue { --accent: var(--blue); }
.cdet.is-ink  { --accent: var(--ink-3); }
.cdet.is-gold { --accent: var(--gold); }

/* ── Portada ── */
.cdet-hero {
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  min-height: clamp(360px, 56vh, 560px);
  padding: calc(var(--nav-h) + 3rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: var(--ink); color: #fff;
}
.cdet-hero-media { position: absolute; inset: 0; }
.cdet-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cdet-hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,26,.35) 0%, rgba(10,12,26,.55) 45%, rgba(10,12,26,.92) 100%);
}
.cdet-hero-body { position: relative; z-index: 2; }
.cdet-crumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.cdet-crumb a { color: rgba(255,255,255,.72); text-decoration: none; }
.cdet-crumb a:hover { color: #fff; }
.cdet-crumb span { color: rgba(255,255,255,.4); }
.cdet-kicker { color: #fff; }
.cdet-kicker::before { background: var(--accent); }
.cdet-title { font-size: clamp(2.6rem, 7vw, 5rem); line-height: .95; margin-top: .4rem; }
.cdet-dates { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-top: 1rem;
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.82); }
.cdet-days { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1; letter-spacing: .02em; color: #fff; }
.cdet-badge { position: static; display: inline-block; margin-top: 1.1rem; }

/* ── Cuerpo ── */
.cdet-body { padding-top: clamp(3rem, 6vw, 5rem); }
.cdet-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cdet-main > * + * { margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.cdet-intro { font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.7; color: var(--muted);
  white-space: pre-line; }
.cdet-h2 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .03em;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1; margin-bottom: 1rem; }

.cdet-points { list-style: none; display: grid; gap: .85rem; }
.cdet-points li { display: flex; gap: .8rem; align-items: flex-start; line-height: 1.5; }
.cdet-points svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: .15rem; color: var(--accent); }

.cdet-box { border: 1px solid var(--line); border-radius: 3px; background: var(--paper);
  padding: clamp(1.35rem, 3vw, 2rem); }
.cdet-includes { border-left: 3px solid var(--accent); }
.cdet-check { list-style: none; display: grid; gap: .7rem; }
.cdet-check li { display: flex; gap: .7rem; align-items: flex-start; line-height: 1.5; }
.cdet-check svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: .2rem; color: var(--accent); }

.cdet-signup { background: var(--ink-2); color: #fff; border-color: transparent; }
.cdet-place { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: .02em; line-height: 1; }
.cdet-addr, .cdet-hours { display: flex; gap: .65rem; align-items: flex-start; margin-top: .85rem;
  color: rgba(255,255,255,.82); white-space: pre-line; line-height: 1.5; }
.cdet-addr svg, .cdet-hours svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: .2rem; color: var(--red-hi); }
.cdet-signup .cdet-note { color: rgba(255,255,255,.62); }
.cdet-note { margin-top: 1rem; font-size: .88rem; line-height: 1.55; color: var(--muted); }
.cdet-ig { margin-top: 1.35rem; color: #fff; border-color: rgba(255,255,255,.28); gap: .5rem; }
.cdet-ig:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cdet-ig svg { width: 18px; height: 18px; }

.cdet-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .7rem; }
.cdet-gallery figure { margin: 0; overflow: hidden; border-radius: 2px; aspect-ratio: 4 / 3; background: var(--ink); }
.cdet-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Columna lateral ── */
.cdet-side { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.cdet-card { border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 3px;
  background: var(--paper); box-shadow: var(--shadow-m); overflow: hidden; }
.cdet-price { padding: clamp(1.35rem, 3vw, 1.75rem); border-bottom: 1px solid var(--line);
  background: var(--paper-2); }
.cdet-price-tag { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); }
.cdet-price-amount { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 6vw, 3.4rem);
  line-height: 1; letter-spacing: .01em; margin-top: .4rem; }
.cdet-price-cond { margin-top: .5rem; font-size: .9rem; font-weight: 600; line-height: 1.45; }
.cdet-price .cdet-note { margin-top: .7rem; }
.cdet-facts { padding: clamp(1.2rem, 3vw, 1.5rem); }
.cdet-actions { display: grid; gap: .6rem; padding: 0 clamp(1.2rem, 3vw, 1.5rem) clamp(1.35rem, 3vw, 1.6rem); }

/* ── Otras clínicas ── */
.cdet-others-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.cdet-other { --accent: var(--blue); position: relative; display: block; text-decoration: none; color: inherit;
  padding: 1.35rem 3rem 1.35rem 1.35rem; background: var(--paper);
  border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 3px;
  transition: transform .3s, box-shadow .3s; }
.cdet-other.is-red { --accent: var(--red); }
.cdet-other.is-ink { --accent: var(--ink-3); }
.cdet-other.is-gold { --accent: var(--gold); }
@media (hover: hover) { .cdet-other:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); } }
.cdet-other-days { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  line-height: 1; color: var(--accent); }
.cdet-other-title { display: block; margin-top: .45rem; font-weight: 700; font-size: 1.05rem; }
.cdet-other-sub { display: block; margin-top: .2rem; font-size: .85rem; color: var(--muted); }
.cdet-other-arrow { position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--accent); transition: transform .3s; }
@media (hover: hover) { .cdet-other:hover .cdet-other-arrow { transform: translateY(-50%) translateX(5px); } }

@media (max-width: 900px) {
  .cdet-grid { grid-template-columns: 1fr; }
  .cdet-side { position: static; }
  .cdet-main + .cdet-side { margin-top: 0; }
}
