/* ── Google Fonts ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&family=Barlow:wght@400;500;700&display=swap');

/* ── Tokens ───────────────────────────────────── */
:root {
  --ce-yellow:        #FEEE00;
  --ce-yellow-dark:   #D9CC00;
  --ce-black:         #000000;
  --ce-surface-1:     #0C0C0C;
  --ce-surface-2:     #141414;
  --ce-surface-3:     #1E1E1E;
  --ce-border-subtle: rgba(255,255,255,0.06);
  --ce-border-accent: #FEEE00;
  --ce-text-primary:  #FFFFFF;
  --ce-text-muted:    rgba(255,255,255,0.55);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', 'Helvetica Neue', sans-serif;

  --nav-height: 72px;
  --container:  1440px;
  --px-desktop: 80px;
  --px-mobile:  24px;

  --clip-sm: polygon(8px  0%, 100% 0%, calc(100% -  8px) 100%, 0% 100%);
  --clip-md: polygon(11px 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
  --clip-lg: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--ce-black); color: var(--ce-text-primary);
        font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--ce-yellow); color: var(--ce-black); }

/* ── Animations ───────────────────────────────── */
@keyframes ce-twinkle {
  0%,100% { opacity: .08; transform: scale(.5);  }
  50%     { opacity: 1;   transform: scale(1.4); }
}
@keyframes ce-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ceStrip {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Utility ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--px-desktop);
  padding-right: var(--px-desktop);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--ce-yellow);
  flex-shrink: 0;
}
.eyebrow span {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ce-yellow);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1;
  transition: all 120ms ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--ce-yellow);
  color: var(--ce-black);
  clip-path: var(--clip-md);
  padding: 13px 36px;
  font-size: 15px;
}
.btn--primary:hover { background: var(--ce-yellow-dark); box-shadow: 0 0 24px rgba(254,238,0,.4); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.25);
  clip-path: var(--clip-md);
  padding: 11px 36px;
  font-size: 15px;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--dark {
  background: var(--ce-surface-2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  clip-path: var(--clip-lg);
  padding: 16px 52px;
  font-size: 18px;
}
.btn--dark:hover { background: var(--ce-surface-3); }
.btn--clubia {
  background: #258DDA;
  color: #fff;
  clip-path: var(--clip-md);
  padding: 13px 32px;
  font-size: 15px;
  gap: 10px;
}
.btn--clubia:hover { background: #1f79c0; box-shadow: 0 0 24px rgba(37,141,218,.4); }
.btn--clubia__icon { width: 15px; height: 15px; flex-shrink: 0; }
.btn--sm  { padding: 8px 28px; font-size: 13px; clip-path: var(--clip-sm); }
.btn--lg  { padding: 16px 52px; font-size: 18px; clip-path: var(--clip-lg); }

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--px-desktop);
  transition: background 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease;
}
.nav.scrolled {
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ce-border-subtle);
}
.nav.menu-open {
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(16px);
}
.nav__logo img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color 120ms ease;
}
.nav__link:hover,
.nav__link--active { color: var(--ce-yellow); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ce-yellow);
  transition: all 250ms ease;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ce-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav__overlay-bar {
  width: 40px;
  height: 3px;
  background: var(--ce-yellow);
  margin-bottom: 48px;
}
.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nav__overlay-link--active { color: var(--ce-yellow) !important; }
.nav__overlay-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(48px, 12vw, 72px);
  text-transform: uppercase;
  color: #fff;
  line-height: .95;
  letter-spacing: -.01em;
  transition: color 120ms ease;
}
.nav__overlay-link:hover { color: var(--ce-yellow); }
.nav__overlay-cta {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.nav__overlay-ig {
  margin-top: 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ce-black);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 65% 50%, rgba(254,238,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__glitter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.hero__glitter-dot {
  position: absolute;
  border-radius: 50%;
  animation: ce-twinkle var(--dur) ease-in-out var(--delay) infinite;
}
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--px-desktop) 80px;
}
.hero__copy { flex: 0 0 55%; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(56px, 8vw, 108px);
  line-height: .87;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
}
.hero__title--accent { color: var(--ce-yellow); }
.hero__subtitle {
  font-size: 17px;
  color: var(--ce-text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin: 28px 0 44px;
}
.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__image {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero__image-glow {
  position: absolute;
  bottom: 5%; left: 15%;
  width: 70%; height: 50%;
  background: radial-gradient(ellipse, rgba(254,238,0,.12), transparent 70%);
  pointer-events: none;
}
/* Hero slideshow */
.hero__slideshow {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.65));
}
.hero__slides-track {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  clip-path: polygon(11px 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
}
.hero__slides-track::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--ce-yellow);
  z-index: 4;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1000ms ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 55%, transparent 100%);
  padding: 64px 20px 24px;
}
.hero__slide-caption span {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 27px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.05;
}
.hero__slide-dots {
  display: flex;
  gap: 5px;
  margin-top: 14px;
  justify-content: flex-end;
  padding-right: 2px;
}
.hero__slide-dot {
  width: 22px;
  height: 3px;
  background: rgba(255,255,255,.18);
  clip-path: polygon(2px 0%, 100% 0%, calc(100% - 2px) 100%, 0% 100%);
  cursor: pointer;
  border: none;
  transition: all 280ms ease;
}
.hero__slide-dot:hover { background: rgba(255,255,255,.45); }
.hero__slide-dot.active {
  background: var(--ce-yellow);
  width: 38px;
}
.hero__edge {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--ce-surface-1);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

/* ── STATS ────────────────────────────────────── */
.stats {
  background: var(--ce-yellow);
  padding: 36px var(--px-desktop);
}
.stats__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(0,0,0,.15);
}
.stats__item:last-child { border-right: none; }
.stats__n {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 52px;
  color: var(--ce-black);
  line-height: 1;
}
.stats__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: rgba(0,0,0,.55);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── GALERÍA ──────────────────────────────────── */
.galeria {
  background: var(--ce-black);
  height: 268px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--ce-border-subtle);
}
.galeria__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ce-black) 0%, transparent 10%, transparent 90%, var(--ce-black) 100%);
  z-index: 2;
  pointer-events: none;
}
.galeria__inner {
  display: flex;
  gap: 8px;
  width: max-content;
  padding: 19px 4px;
}
.galeria__inner--ready {
  animation: ceStrip 60s linear infinite;
}
.galeria__item {
  width: 214px;
  height: 230px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--ce-surface-2);
}
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.galeria__item--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ce-surface-1);
  border: 1px solid var(--ce-border-subtle);
}
.galeria__item--text span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--ce-yellow);
  letter-spacing: .04em;
  text-align: center;
  padding: 0 12px;
}
.galeria__label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  padding: 32px 14px 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .04em;
}

/* ── COACH ────────────────────────────────────── */
.coach {
  background: var(--ce-surface-2);
  padding: 96px var(--px-desktop);
  border-top: 1px solid var(--ce-border-subtle);
}
.coach__inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.coach__photo {
  flex: 0 0 360px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.coach__photo::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--ce-yellow);
  z-index: 2;
}
.coach__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.coach__photo--reel {
  flex-basis: 400px;
  aspect-ratio: auto;
  overflow: visible;
  display: flex;
  justify-content: center;
}
.coach__photo--reel::before { display: none; }
.coach__photo--reel iframe { max-width: 100% !important; }
.coach__content { flex: 1; }
.coach__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 4vw, 60px);
  line-height: .92;
  text-transform: uppercase;
  color: #fff;
  margin: 12px 0 24px;
}
.coach__title span { color: var(--ce-yellow); }
.coach__text {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 16px;
}
.coach__text:last-of-type { margin-bottom: 40px; }

/* ── NUESTRO EQUIPO (coaches) ─────────────────── */
.equipo {
  background: var(--ce-black);
  padding: 96px var(--px-desktop);
  border-top: 1px solid rgba(255,255,255,.05);
}
.equipo__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 5vw, 68px);
  line-height: .9;
  text-transform: uppercase;
  color: #fff;
  margin: 12px 0 48px;
}
.equipo__title span { color: var(--ce-yellow); }
.equipo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.coach-card {
  background: var(--ce-surface-1);
  border: 1px solid var(--ce-border-subtle);
  transition: all 200ms ease;
}
.coach-card:hover {
  border-color: rgba(254,238,0,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.coach-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.coach-card__photo::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--ce-yellow);
  z-index: 2;
}
.coach-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.coach-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ce-surface-2);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 80px;
  color: rgba(254,238,0,.12);
}
.coach-card__info {
  padding: 20px;
}
.coach-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.coach-card__role {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(254,238,0,.12);
  color: var(--ce-yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

/* ── Ubicación ────────────────────────────────── */
.ubicacion {
  background: var(--ce-surface-1);
  padding: 96px var(--px-desktop);
  border-top: 1px solid var(--ce-border-subtle);
}
.ubicacion__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}
.ubicacion__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--ce-text-primary);
  margin: 12px 0 36px;
}
.ubicacion__title span { color: var(--ce-yellow); }
.ubicacion__address {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.ubicacion__address-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ubicacion__address-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ce-yellow);
}
.ubicacion__address-value {
  font-size: 18px;
  color: var(--ce-text-primary);
  font-weight: 500;
}
.ubicacion__map {
  height: 420px;
  border-left: 3px solid var(--ce-yellow);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.ubicacion__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(20%) invert(5%);
}

/* ── CTA ──────────────────────────────────────── */
.cta {
  background: var(--ce-yellow);
  padding: 96px var(--px-desktop);
  position: relative;
  overflow: hidden;
}
.cta__slash-1 {
  position: absolute;
  top: -60px; right: -40px;
  width: 360px; height: 500px;
  background: rgba(0,0,0,.07);
  transform: skewX(-12deg);
  pointer-events: none;
}
.cta__slash-2 {
  position: absolute;
  bottom: -40px; left: 80px;
  width: 200px; height: 300px;
  background: rgba(0,0,0,.05);
  transform: skewX(-12deg);
  pointer-events: none;
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--ce-black);
  margin-bottom: 16px;
}
.cta__text {
  font-size: 17px;
  color: rgba(0,0,0,.6);
  max-width: 460px;
  line-height: 1.65;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta__ig-hint {
  font-size: 13px;
  color: rgba(0,0,0,.45);
  padding-left: 8px;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--ce-black);
  padding: 64px var(--px-desktop) 40px;
  border-top: 1px solid var(--ce-border-subtle);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand img { height: 36px; margin-bottom: 16px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  max-width: 280px;
}
.footer__cols { display: flex; gap: 80px; }
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ce-yellow);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
  transition: color 120ms ease;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid var(--ce-border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer__ig {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ce-yellow);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
═══════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Utilities */
  .container { padding-left: var(--px-mobile); padding-right: var(--px-mobile); }

  /* Nav */
  .nav { padding: 0 var(--px-mobile); }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero — imagen arriba, texto abajo */
  .hero { align-items: flex-start; }
  .hero__glow {
    background: radial-gradient(ellipse 80% 50% at 50% 80%, rgba(254,238,0,.07) 0%, transparent 70%);
  }
  .hero__inner {
    flex-direction: column;
    padding: calc(var(--nav-height) + 16px) 0 56px;
    gap: 28px;
  }
  .hero__image {
    flex: none;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    order: -1;
  }
  .hero__slideshow { max-width: 380px; width: 100%; }
  .hero__slide-caption span { font-size: 15px; }
  .hero__slide-caption em { font-size: 9px; }
  .hero__copy {
    flex: none;
    width: 100%;
    padding: 0 var(--px-mobile);
  }
  .hero__title { font-size: clamp(64px, 18vw, 88px); }
  .hero__subtitle { font-size: 15px; margin: 20px 0 28px; max-width: 100%; }
  .hero__ctas { flex-direction: column; gap: 12px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats { padding: 28px var(--px-mobile); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.12); padding: 12px 0; }
  .stats__item:nth-child(odd)  { border-right: 1px solid rgba(0,0,0,.12); }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4)   { border-bottom: none; }
  .stats__n { font-size: 40px; }

  /* Galería */
  .galeria { height: auto; min-height: 180px; }
  .galeria__inner { padding: 12px 4px; }
  .galeria__item { width: 140px; height: 150px; }
  .galeria__item--text span { font-size: 18px; }
  .galeria__label { font-size: 15px; }

  /* Coach */
  .coach { padding: 64px var(--px-mobile); }
  .coach__inner { flex-direction: column; gap: 32px; }
  .coach__photo { flex: none; width: 100%; max-width: 340px; aspect-ratio: 3/4; align-self: center; }
  .coach__photo--reel { max-width: 400px; aspect-ratio: auto; }
  .coach__content { width: 100%; }
  .coach__text { font-size: 15px; max-width: 100%; }

  /* Equipo coaches */
  .equipo { padding: 64px var(--px-mobile); }
  .equipo__grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

  /* Ubicación */
  .ubicacion { padding: 64px var(--px-mobile); }
  .ubicacion__inner { grid-template-columns: 1fr; gap: 40px; }
  .ubicacion__map { height: 280px; }

  /* CTA */
  .cta { padding: 64px var(--px-mobile); }
  .cta__inner { flex-direction: column; gap: 32px; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 48px var(--px-mobile) 32px; }
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__cols { gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Páginas internas — cabecera */
  .section-title { font-size: clamp(36px, 10vw, 52px); margin-bottom: 24px; }
  .season-select { display: block; }
  .season-select__el { width: 100%; min-width: unset; font-size: 12px; }

  /* Música — filas (definidas después del breakpoint, van aquí) */
  .music-row { padding: 12px 12px; gap: 10px; }
  .music-row__title { font-size: 14px; }
  .music-row__play { width: 24px; font-size: 12px; }

  /* Player mobile — 2 filas: [info + controles] / [barra de progreso] */
  .music-player {
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 16px 14px;
    gap: 10px;
    row-gap: 10px;
  }
  .music-player__info     { flex: 1; min-width: 0; order: 1; }
  .music-player__controls { flex-shrink: 0; order: 2; gap: 6px; }
  .music-player__progress { order: 3; flex: 1 0 100%; gap: 8px; width: 0; }
  .music-player__time,
  .music-player__dur      { display: block; font-size: 10px; min-width: 26px; }
  .music-player__track    { font-size: 13px; }
  .music-player__season   { font-size: 10px; margin-top: 2px; }
  .music-player__btn      { font-size: 15px; padding: 4px; }
  .music-player__btn--play { width: 34px; height: 34px; font-size: 13px; }
  body.player-open        { padding-bottom: 100px; }

  /* Videos (padding override va al final del archivo) */
  .videos-grid { grid-template-columns: 1fr; }
  .video-thumb__play-icon { width: 44px; height: 44px; font-size: 18px; }
  .video-thumb__title { font-size: 14px; }

  /* Modal */
  .video-modal__container { width: 95vw; }
  .video-modal__close { top: -38px; font-size: 18px; }
}

/* ── Páginas internas (musica, videos) ────────── */
.page-main {
  padding-top: var(--nav-height);
  min-height: 80vh;
}
.page-main .music-section,
.page-main .videos-section {
  border-top: none;
}

/* ── Shared section header ────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 5vw, 68px);
  line-height: .9;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 48px;
}
.section-title span { color: var(--ce-yellow); }

.section-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  border: 1px dashed rgba(255,255,255,.1);
  color: rgba(255,255,255,.3);
  font-size: 15px;
  font-family: var(--font-body);
}

/* ── Selector de temporada ────────────────────── */
.season-select {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}
.season-select::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%23FEEE00' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}
.season-select__el {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 2px solid var(--ce-yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 44px 10px 18px;
  min-width: 220px;
  cursor: pointer;
  outline: none;
  transition: background 150ms, border-color 150ms;
}
.season-select__el:focus {
  background: rgba(255,255,255,.11);
  border-bottom-color: #fff;
}
.season-select__el option {
  background: #1a1a1a;
  color: #fff;
  font-style: normal;
}

/* ── MÚSICA ───────────────────────────────────── */
.music-section {
  background: var(--ce-surface-2);
  padding: 96px var(--px-desktop);
  border-top: 1px solid var(--ce-border-subtle);
}
.music-grid { display: block; }

/* Lista de pistas */
.music-list { display: flex; flex-direction: column; }
.music-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ce-border-subtle);
  cursor: pointer;
  transition: background 150ms ease;
  border-left: 3px solid transparent;
}
.music-row:hover { background: rgba(255,255,255,.04); }
.music-row--active {
  border-left-color: var(--ce-yellow);
  background: rgba(254,238,0,.06);
}
.music-row__num {
  width: 28px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
}
.music-row--active .music-row__num { color: var(--ce-yellow); }

/* Barras animadas cuando está reproduciendo */
.music-row__bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.music-row__bars span {
  display: block;
  width: 3px;
  background: var(--ce-yellow);
  border-radius: 1px;
  animation: bar-bounce 0.8s ease-in-out infinite alternate;
}
.music-row__bars span:nth-child(2) { animation-delay: 0.2s; }
.music-row__bars span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bar-bounce {
  from { height: 4px; }
  to   { height: 14px; }
}

.music-row__info { flex: 1; min-width: 0; }
.music-row__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-row--active .music-row__title { color: var(--ce-yellow); }
.music-row__season {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.music-row__play {
  width: 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  transition: color 150ms;
}
.music-row:hover .music-row__play,
.music-row--active .music-row__play { color: var(--ce-yellow); }

/* Player bar fijo */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #111;
  border-top: 1px solid rgba(254,238,0,.25);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 32px;
  z-index: 200;
  transform: translateY(110%);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.music-player.visible { transform: translateY(0); }

.music-player__info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.music-player__track {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.music-player__season {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

.music-player__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.music-player__btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 150ms;
}
.music-player__btn:hover { color: #fff; }
.music-player__btn--mode {
  font-size: 15px;
  color: rgba(255,255,255,.25);
}
.music-player__btn--mode.music-player__btn--active {
  color: var(--ce-yellow);
}
.music-player__btn--play {
  width: 40px; height: 40px;
  background: var(--ce-yellow);
  color: var(--ce-black);
  font-size: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.music-player__btn--play:hover { background: var(--ce-yellow-dark); color: var(--ce-black); }

.music-player__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 260px;
  flex-shrink: 0;
}
.music-player__time,
.music-player__dur {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
}
.music-player__dur { text-align: right; }
.music-player__bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.music-player__fill {
  height: 100%;
  background: var(--ce-yellow);
  border-radius: 2px;
  width: 0%;
  transition: width 1s linear;
}
.music-player__bar:hover .music-player__fill { filter: brightness(1.2); }

/* Espacio en el body cuando el player está abierto */
body.player-open { padding-bottom: 88px; }

/* ── VIDEOS ───────────────────────────────────── */
.videos-section {
  background: var(--ce-surface-1);
  padding: 96px var(--px-desktop);
  border-top: 1px solid var(--ce-border-subtle);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--ce-surface-3);
  border: 1px solid var(--ce-border-subtle);
  transition: all 200ms ease;
}
.video-thumb:hover { border-color: var(--ce-yellow); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.video-thumb__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.video-thumb__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background 200ms ease;
}
.video-thumb:hover .video-thumb__overlay { background: rgba(0,0,0,.15); }
.video-thumb__play-icon {
  width: 56px; height: 56px;
  background: var(--ce-yellow);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--ce-black);
}
.video-thumb__meta {
  padding: 14px 16px 16px;
}
.video-thumb__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}
.video-thumb__team {
  display: inline-flex;
  padding: 2px 8px;
  background: rgba(254,238,0,.12);
  color: var(--ce-yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ── VIDEO MODAL ──────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: pointer;
}
.video-modal__container {
  position: relative;
  z-index: 1;
  width: min(90vw, 960px);
}
.video-modal__close {
  position: absolute;
  top: -44px; right: 0;
  font-size: 22px;
  color: rgba(255,255,255,.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 120ms ease;
}
.video-modal__close:hover { color: var(--ce-yellow); }
.video-modal__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── MODAL DE CONTACTO ────────────────────────── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.contact-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: pointer;
}
.contact-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: var(--ce-surface-1);
  border-top: 3px solid var(--ce-yellow);
  padding: 48px 48px 40px;
  max-height: 90vh;
  overflow-y: auto;
  animation: ce-fade-in 200ms ease;
}
.contact-modal__close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 20px;
  color: rgba(255,255,255,.35);
  transition: color 120ms ease;
}
.contact-modal__close:hover { color: var(--ce-yellow); }
.contact-modal__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(42px, 5vw, 62px);
  line-height: .9;
  text-transform: uppercase;
  color: #fff;
  margin: 12px 0 32px;
}
.contact-modal__title span { color: var(--ce-yellow); }

/* Campos del formulario */
.cform__row { margin-bottom: 20px; }
.cform__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
}
.cform__req { color: var(--ce-yellow); }
.cform__optional { font-weight: 400; font-style: normal; letter-spacing: 0; text-transform: none; font-size: 11px; color: rgba(255,255,255,.25); }
.cform__input {
  width: 100%;
  background: var(--ce-surface-2);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid transparent;
  color: var(--ce-text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 150ms ease, border-left-color 150ms ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.cform__input:focus {
  border-color: rgba(255,255,255,.2);
  border-left-color: var(--ce-yellow);
}
.cform__input::placeholder { color: rgba(255,255,255,.18); }
.cform__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FEEE00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.cform__select option {
  background: var(--ce-surface-2);
  color: #fff;
}
.cform__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
  font-family: var(--font-body);
}
.cform__status {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: none;
  padding: 12px 16px;
  border-left: 3px solid transparent;
}
.cform__status.ok    { display: block; color: var(--ce-yellow); border-left-color: var(--ce-yellow); background: rgba(254,238,0,.06); }
.cform__status.error { display: block; color: #ff6b6b;           border-left-color: #ff6b6b;          background: rgba(255,100,100,.06); }
.cform__submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ── MODAL CLUBIA ─────────────────────────────── */
.clubia-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.clubia-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.clubia-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: pointer;
}
.clubia-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--ce-surface-1);
  border-top: 3px solid var(--ce-yellow);
  padding: 48px 40px 40px;
  text-align: center;
  animation: ce-fade-in 200ms ease;
}
.clubia-modal__close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 20px;
  color: rgba(255,255,255,.35);
  transition: color 120ms ease;
}
.clubia-modal__close:hover { color: var(--ce-yellow); }
.clubia-modal .eyebrow { justify-content: center; }
.clubia-modal__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(38px, 5vw, 50px);
  line-height: .9;
  text-transform: uppercase;
  color: #fff;
  margin: 12px 0 16px;
}
.clubia-modal__title span { color: var(--ce-yellow); }
.clubia-modal__text {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
}
.clubia-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.clubia-modal__actions .btn { width: 100%; }

@media (max-width: 767px) {
  .contact-modal__box { padding: 36px 24px 28px; max-height: 95vh; }
  .contact-modal__title { font-size: clamp(36px, 10vw, 48px); margin-bottom: 24px; }
  .clubia-modal__box { padding: 40px 24px 32px; }
  .cform__input { font-size: 16px; } /* evita zoom en iOS */

  /* Secciones internas — padding reducido (override va aquí porque los estilos
     desktop de estas secciones están definidos después del primer bloque @media) */
  .music-section  { padding: 24px 0 40px; }
  .videos-section { padding: 24px 0 40px; }
}

/* Pantallas muy pequeñas: info en fila propia, controles centrados debajo */
@media (max-width: 420px) {
  .music-player__info {
    flex: 0 0 100%;
    order: 1;
  }
  .music-player__controls {
    order: 2;
    width: 100%;
    justify-content: center;
  }
  .music-player__progress {
    order: 3;
  }
  body.player-open { padding-bottom: 130px; }
}
