/* =================================================================
   KRAFT PÁDEL CENTER — styles.css
   Premium one-page · verde profundo + lima + serif crema
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  --green-deep:  #1B4332;
  --green:       #2D6A4F;
  --lime:        #B5E550;
  --lime-bright: #C9F567;
  --bg:          #0A0F0C;
  --surface:     #111814;
  --cream:       #F4F1E8;
  --white:       #FFFFFF;
  --muted:       rgba(244,241,232,0.5);
  --border:      rgba(181,229,80,0.12);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- GRAIN ---------- */
body::before {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

section { position: relative; }

/* ---------- TYPE HELPERS ---------- */
.section-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--lime);
  display: inline-flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--lime); opacity: 0.6;
}
.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 5vw, 68px); line-height: 1.04;
  color: var(--cream); margin-top: 20px; letter-spacing: -0.01em;
}
.lime { color: var(--lime); }
.dot { color: var(--lime); }

/* split words — padding extra abajo para no cortar descenders (g, p, í...),
   compensado con margen negativo para NO aumentar la altura de línea */
.split-words .word {
  display: inline-block; overflow: hidden;
  padding-bottom: 0.18em; margin-bottom: -0.18em;
}
.split-words .word > span { display: inline-block; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 30px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease),
              box-shadow .35s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn-lime {
  background: var(--lime); color: #0A0F0C;
  box-shadow: 0 8px 30px rgba(181,229,80,0.18);
}
.btn-lime:hover {
  background: var(--lime-bright);
  box-shadow: 0 14px 44px rgba(181,229,80,0.32);
}
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(244,241,232,0.25);
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

/* =================================================================
   PROGRESS BAR + CURSOR
   ================================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--lime); z-index: 9999; transform-origin: left;
}

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9999; border-radius: 50%; opacity: 0;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 5px; height: 5px; background: var(--lime); }
.cursor-ring {
  width: 32px; height: 32px; border: 1px solid var(--lime);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s var(--ease), opacity .3s ease, border-color .3s ease;
}
.cursor-ring.is-hover {
  width: 52px; height: 52px; background: rgba(181,229,80,0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
/* en desktop ocultamos el cursor nativo: queda solo el círculo */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button, .slot, .cal-day, [data-cursor="hover"] { cursor: none; }
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
              border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,15,12,0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding .4s var(--ease);
}
.nav.is-scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.nav-logo-placeholder {
  font-family: var(--serif); font-weight: 700; font-size: 26px;
  letter-spacing: 0.01em; color: var(--cream);
}
.nav-logo { height: 34px; width: auto; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  position: relative; transition: color .3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--lime); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 11px 22px; }

.nav-burger {
  display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 1100;
}
.nav-burger span {
  width: 26px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); }

/* mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: linear-gradient(160deg, var(--green-deep), var(--bg));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-overlay-links { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.nav-overlay-links a {
  font-family: var(--serif); font-size: 34px; color: var(--cream);
  padding: 8px; transition: color .3s ease;
}
.nav-overlay-links a:hover { color: var(--lime); }
.nav-overlay-cta { margin-top: 18px; }
.nav-overlay-handle { color: var(--lime); font-size: 14px; letter-spacing: 0.1em; margin-top: 10px; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 70px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: -8% 0 0 0; z-index: -2; will-change: transform; }
.hero-bg img { position: relative; z-index: 0; width: 100%; height: 116%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;   /* POR ENCIMA de la imagen */
  background:
    linear-gradient(180deg, rgba(10,15,12,0.7) 0%, rgba(10,15,12,0.45) 35%, rgba(27,67,50,0.65) 78%, var(--bg) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(27,67,50,0.65), transparent 60%),
    rgba(10,15,12,0.32);
}
/* alineado al MISMO margen que el logo del nav (mismo max-width + padding) */
.hero-content {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad); text-align: left;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(181,229,80,0.4);
  background: rgba(181,229,80,0.06);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime);
}
.hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

.hero-eyebrow {
  margin-top: 26px; font-size: 13px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
}

.hero-title {
  font-family: var(--serif); font-weight: 700;
  line-height: 0.92; margin-top: 8px; letter-spacing: -0.02em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .line-inner { display: block; }
.hero-title .line:first-child .line-inner { font-size: clamp(64px, 11vw, 150px); color: var(--cream); }
.hero-title-sub .line-inner {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(20px, 3.4vw, 40px); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); margin-top: 4px;
}

.hero-sub {
  max-width: 560px; margin-top: 26px;
  font-size: clamp(16px, 1.5vw, 19px); color: rgba(244,241,232,0.78); font-weight: 300;
}

.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.cat-pill {
  padding: 9px 20px; border-radius: 100px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(244,241,232,0.22); color: rgba(244,241,232,0.8);
}
.cat-pill.is-active { background: var(--lime); border-color: var(--lime); color: #0A0F0C; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-foot {
  max-width: var(--maxw); margin: clamp(40px, 7vh, 80px) auto 0; width: 100%;
  padding: 0 var(--pad);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.hero-handle { font-size: 14px; letter-spacing: 0.1em; color: var(--muted); transition: color .3s ease; }
.hero-handle:hover { color: var(--lime); }
.hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.hero-scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--lime), transparent); animation: scrollPulse 2s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* =================================================================
   SPONSORS LOOP
   ================================================================= */
.sponsors {
  padding: 38px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); overflow: hidden; position: relative;
}
.sponsors::before, .sponsors::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 14vw; z-index: 2; pointer-events: none;
}
.sponsors::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.sponsors::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }

.sponsors-track { display: flex; width: max-content; will-change: transform; }
.sponsors-group { display: flex; align-items: center; }
.sponsor {
  padding: 0 clamp(30px, 4vw, 60px);
  display: inline-flex; align-items: center; gap: 14px;
}
.sponsor img {
  height: 30px; width: auto; object-fit: contain;
  opacity: 0.42;                 /* gris por defecto (silueta blanca atenuada) */
  transition: opacity .35s ease;
}
.sponsor:hover img { opacity: 1; }  /* se enciende a blanco */
.sponsor-partner em {
  font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); border: 1px solid var(--lime); border-radius: 100px; padding: 4px 10px;
}

/* =================================================================
   INTRO
   ================================================================= */
.intro { padding: clamp(90px, 14vh, 170px) 0; text-align: center; }
.intro-headline {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 8vw, 110px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 26px auto 0; max-width: 14ch;
}
.intro-text { max-width: 620px; margin: 34px auto 0; font-size: clamp(17px, 1.8vw, 21px); color: rgba(244,241,232,0.72); }
.intro-founder { max-width: 560px; margin: 22px auto 0; font-size: 15px; color: var(--muted); }
.intro-founder strong { color: var(--cream); font-weight: 500; }

/* =================================================================
   SERVICES
   ================================================================= */
.services { padding: clamp(70px, 10vh, 130px) 0; }
.services-head { margin-bottom: clamp(40px, 6vh, 72px); max-width: 720px; }

.services-list { border-top: 1px solid var(--border); }
.service {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 30px; align-items: center;
  padding: clamp(28px, 4vh, 46px) 0;
  padding-left: 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left .45s var(--ease);
}
/* relleno: aparece por ENCIMA de la línea, borde izquierdo RECTO (sin curva) */
.service::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(45,106,79,0.42) 0%, rgba(45,106,79,0.12) 45%, transparent 80%);
  opacity: 0; transition: opacity .45s var(--ease);
}
/* barra de acento lima en el borde izquierdo recto */
.service::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; z-index: 2;
  background: var(--lime); transform: scaleY(0); transform-origin: center;
  transition: transform .45s var(--ease);
}
.service:hover { padding-left: 26px; }
.service:hover::after { opacity: 1; }
.service:hover::before { transform: scaleY(1); }
.service-num, .service-body, .service-action { position: relative; z-index: 3; }
.service-num {
  font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--lime);
  transition: transform .4s var(--ease);
}
.service:hover .service-num { transform: translateX(6px); }
.service-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3.2vw, 40px);
  color: var(--cream); letter-spacing: -0.01em; transition: color .3s ease;
}
.service:hover .service-title { color: var(--lime-bright); }
.service-desc { margin-top: 10px; max-width: 56ch; color: var(--muted); font-size: 15.5px; }
.service-desc strong { color: var(--lime); font-weight: 600; }
.service-tag {
  display: inline-block; vertical-align: middle; margin-left: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #0A0F0C; background: var(--lime); border-radius: 100px; padding: 4px 11px;
  transform: translateY(-2px);
}
.service-link {
  font-size: 14px; font-weight: 600; color: var(--cream); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px; transition: color .3s ease;
}
.service-link .arrow { transition: transform .35s var(--ease); }
.service-link:hover { color: var(--lime); }
.service-link:hover .arrow { transform: translateX(6px); }

/* =================================================================
   PLANS
   ================================================================= */
.plans { padding: clamp(70px, 10vh, 130px) 0; background: var(--green-deep); }
.plans-head { text-align: center; margin-bottom: clamp(40px, 6vh, 70px); }
.plans-head .section-label { justify-content: center; }
.plans-head .section-label::before { display: none; }

.plans-media {
  max-width: 900px; margin: 0 auto clamp(28px, 4vh, 48px);
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 21 / 8;
  border: 1px solid var(--border);
}
.plans-media img { width: 100%; height: 100%; object-fit: cover; }
.plans-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 900px; margin: 0 auto;
}
.plan-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px 36px;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.plan-card:hover {
  transform: translateY(-6px); border-color: rgba(181,229,80,0.4);
  box-shadow: 0 26px 60px rgba(0,0,0,0.4), 0 0 40px rgba(45,106,79,0.25);
}
.plan-pro {
  background: linear-gradient(165deg, #16271d, #0d1410);
  border-color: rgba(181,229,80,0.45);
  box-shadow: 0 0 0 1px rgba(181,229,80,0.1), 0 20px 50px rgba(0,0,0,0.35);
}
.plan-badge {
  position: absolute; top: 22px; right: 22px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #0A0F0C; background: var(--lime); padding: 5px 12px; border-radius: 100px;
}
.plan-name { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--cream); }
.plan-tagline { color: var(--muted); font-size: 14px; margin-top: 4px; }
.plan-price { margin: 26px 0 8px; display: flex; align-items: baseline; gap: 8px; }
.plan-amount { font-size: 46px; font-weight: 700; color: var(--lime); letter-spacing: -0.02em; }
.plan-period { font-size: 15px; color: var(--muted); }
.plan-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.plan-features li {
  font-size: 15px; color: rgba(244,241,232,0.82); padding-left: 28px; position: relative;
}
.plan-features li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 8px;
  border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.plan-cta { margin-top: auto; width: 100%; }
.plans-note { text-align: center; margin-top: 34px; color: var(--muted); font-size: 14px; }

/* =================================================================
   COACH
   ================================================================= */
.coach { padding: clamp(70px, 10vh, 130px) 0; }
.coach-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
/* versión invertida: texto izquierda, imagen derecha */
.coach-reverse { padding-top: 0; }
.coach-reverse .coach-grid { grid-template-columns: 1fr 0.85fr; }
.coach-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.coach-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.coach-media:hover img { transform: scale(1.05); }
.coach-media-tag {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--lime); color: #0A0F0C; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
}
.coach-name { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4.5vw, 60px); color: var(--cream); margin-top: 18px; letter-spacing: -0.01em; }
.coach-role { color: var(--lime); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 13px; margin-top: 8px; }
.coach-bio { margin-top: 22px; font-size: 17px; color: rgba(244,241,232,0.72); max-width: 50ch; }
.coach-detail { margin: 22px 0 30px; font-size: 15px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.coach-detail strong { color: var(--cream); font-weight: 500; }
.coach-detail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

/* =================================================================
   BOOKING
   ================================================================= */
.booking { padding: clamp(70px, 10vh, 130px) 0; background: var(--surface); }
.booking-head { text-align: center; margin-bottom: clamp(36px, 5vh, 60px); }
.booking-head .section-label { justify-content: center; }
.booking-head .section-label::before { display: none; }
.booking-note { color: var(--muted); margin-top: 16px; font-size: 15px; }

.booking-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 920px; margin: 0 auto; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; background: var(--bg);
}
.booking-calendar { padding: 34px; border-right: 1px solid var(--border); }
.cal-header { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.cal-month { font-family: var(--serif); font-size: 22px; color: var(--cream); text-transform: capitalize; }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-weekdays span { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: var(--muted); padding-bottom: 8px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 14px; border-radius: 10px; color: rgba(244,241,232,0.8);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.cal-day.is-empty { pointer-events: none; }
.cal-day.is-past { color: rgba(244,241,232,0.2); pointer-events: none; }
.cal-day:not(.is-empty):not(.is-past):hover { background: rgba(181,229,80,0.12); color: var(--cream); }
.cal-day.is-today { border: 1px solid rgba(181,229,80,0.4); }
.cal-day.is-selected { background: var(--lime); color: #0A0F0C; font-weight: 600; transform: scale(1.04); }

.booking-slots { padding: 34px; display: flex; flex-direction: column; }
.booking-slots-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot {
  padding: 13px 0; border-radius: 10px; border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: rgba(244,241,232,0.8);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.slot:hover { border-color: rgba(181,229,80,0.5); color: var(--cream); }
.slot.is-selected { background: var(--lime); border-color: var(--lime); color: #0A0F0C; font-weight: 600; }
.booking-summary {
  margin: 22px 0 18px; padding: 14px 18px; border-radius: 12px;
  background: rgba(181,229,80,0.06); border: 1px solid var(--border);
  font-size: 14px; color: var(--cream);
}
.booking-summary strong { color: var(--lime); }
.booking-confirm { margin-top: auto; width: 100%; }
.booking-confirm.is-disabled {
  background: rgba(181,229,80,0.18); color: rgba(244,241,232,0.55);
  box-shadow: none; cursor: not-allowed;
}
.booking-confirm.is-disabled:hover { background: rgba(181,229,80,0.18); }
@keyframes summaryShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); } 40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); } 80% { transform: translateX(4px); }
}
.booking-summary.shake {
  animation: summaryShake .4s ease;
  border-color: rgba(181,229,80,0.5);
}

/* =================================================================
   STATS
   ================================================================= */
.stats { padding: clamp(60px, 9vh, 110px) 0; background: var(--green-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-weight: 700; font-size: clamp(48px, 6vw, 84px); color: var(--lime); line-height: 1; display: block; letter-spacing: -0.02em; }
.stat-label { display: block; margin-top: 14px; font-size: 13.5px; color: rgba(244,241,232,0.72); letter-spacing: 0.02em; }

/* =================================================================
   COMMUNITY
   ================================================================= */
.community { padding: clamp(70px, 10vh, 130px) 0; }
.community-head { max-width: 760px; margin-bottom: clamp(40px, 6vh, 64px); }
.community-headline { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5.5vw, 76px); line-height: 1.02; letter-spacing: -0.02em; margin-top: 22px; }
.community-text { margin-top: 26px; font-size: 17px; color: rgba(244,241,232,0.72); max-width: 60ch; }

.community-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px;
}
.community-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.community-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.community-item:hover img { transform: scale(1.06); }
.community-item figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream);
}
.community-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(10,15,12,0.7)); }
.community-item-lg { grid-column: span 2; grid-row: span 2; }
.community-item-wide { grid-column: span 2; }

/* =================================================================
   CTA FINAL
   ================================================================= */
.cta-final {
  padding: clamp(100px, 16vh, 200px) 0; text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(45,106,79,0.5), transparent 60%),
    var(--green-deep);
}
.cta-final-title {
  font-family: var(--serif); font-weight: 600; color: var(--cream);
  font-size: clamp(44px, 9vw, 130px); line-height: 0.98; letter-spacing: -0.02em;
  max-width: 12ch; margin: 0 auto;
}
.cta-final-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { padding: clamp(60px, 9vh, 100px) 0 36px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { font-size: 34px; }
.footer-tagline { color: var(--muted); margin-top: 14px; font-size: 14px; letter-spacing: 0.02em; }
.footer-founder { margin-top: 18px; font-size: 14px; color: rgba(244,241,232,0.6); }
.footer-founder .founder-link { transition: opacity .3s ease; }
.footer-founder .founder-link strong { color: var(--lime); font-weight: 600; }
.footer-founder .founder-link:hover { opacity: 0.7; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 12px; transition: color .3s ease; }
.footer-col a:hover { color: var(--lime); }
/* el CTA del footer no debe heredar el color de link (quedaba ilegible) */
.footer-col a.footer-btn,
.footer-col a.footer-btn:hover { color: #0A0F0C; margin-top: 4px; margin-bottom: 0; }
.footer-bottom {
  max-width: var(--maxw); margin: clamp(40px, 6vh, 70px) auto 0; padding: 26px var(--pad) 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--muted);
}
.footer-credit a { color: var(--cream); transition: color .3s ease; }
.footer-credit a:hover { color: var(--lime); }

/* =================================================================
   REVEAL STATE
   ================================================================= */
[data-reveal] { opacity: 0; transform: translateY(50px); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .plans-grid { grid-template-columns: 1fr; max-width: 460px; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-media { max-width: 420px; aspect-ratio: 4/4.4; }
  .booking-panel { grid-template-columns: 1fr; }
  .booking-calendar { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .service { grid-template-columns: 50px 1fr; gap: 16px 18px; }
  .service-num { font-size: 18px; }
  .service-action { grid-column: 2; }
  .service-desc { font-size: 14.5px; }

  .community-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .community-item-lg { grid-column: span 2; grid-row: span 1; }
  .community-item-wide { grid-column: span 2; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}
