/* ═══════════════════════════════════════════════
   THE ELEVATE EXPERIENCE — styles.css
   Mobile-first · OKLCH colors · Bebas Neue + DM Sans
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --orange:     oklch(65% 0.2 40);
  --orange-h:   oklch(58% 0.22 35);
  --dark:       oklch(14% 0.02 260);
  --dark-2:     oklch(20% 0.02 260);
  --gray:       oklch(35% 0.01 260);
  --gray-light: oklch(92% 0.005 60);
  --cream:      oklch(97% 0.01 75);
  --white:      oklch(99% 0.005 60);

  --font-head: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --shadow-card: 0 4px 24px oklch(14% 0.02 260 / 0.12);
  --shadow-lift: 0 12px 40px oklch(14% 0.02 260 / 0.18);

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ── */
.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── SCROLL PROGRESS ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--orange);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--orange); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.section-title--light { color: oklch(99% 0.005 60); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px oklch(65% 0.2 40 / 0.35);
}
.btn--primary:hover {
  background: var(--orange-h);
  box-shadow: 0 8px 28px oklch(65% 0.2 40 / 0.45);
}

.btn--outline {
  background: oklch(99% 0.005 60 / 0.08);
  color: var(--white);
  border: 2px solid oklch(99% 0.005 60 / 0.7);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  border-color: var(--white);
  background: oklch(99% 0.005 60 / 0.18);
}

.btn--sm { padding: 0.625rem 1.375rem; font-size: 0.875rem; }
.btn--lg { padding: 1.125rem 2.5rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  padding: 1.25rem 0;
}
.nav.scrolled {
  box-shadow: 0 1px 0 oklch(99% 0.005 60 / 0.07);
  padding: 0.625rem 0;
}
/* backdrop-filter en pseudo-elemento para no crear containing block en hijos fixed */
.nav.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: oklch(11% 0.02 260 / 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}
.nav.scrolled .nav__links a { color: oklch(92% 0.005 60); }
.nav.scrolled .nav__links a:hover { color: var(--orange); }
.nav.scrolled .lang-toggle { color: oklch(92% 0.005 60); border-color: oklch(92% 0.005 60 / 0.3); }
.nav.scrolled .nav__burger span { background: oklch(92% 0.005 60); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.nav__logo-img {
  height: 52px;
  width: auto;
  transition: opacity 0.3s;
}
.nav__logo-img:hover { opacity: 0.85; }

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(99% 0.005 60);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 201;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LANG TOGGLE ── */
.lang-toggle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border: 1px solid oklch(99% 0.005 60 / 0.4);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 0.25rem;
}
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }
.lang-toggle__sep { opacity: 0.4; }

[data-lang="es"] .lang-toggle__es { color: var(--orange); }
[data-lang="en"] .lang-toggle__en { color: var(--orange); }

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  border: 1px solid oklch(99% 0.005 60 / 0.4);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); }
.theme-toggle__icon { display: none; }
[data-theme="dark"] .theme-toggle__icon--sun { display: block; }
[data-theme="light"] .theme-toggle__icon--moon { display: block; }
.nav.scrolled .theme-toggle { color: oklch(92% 0.005 60); border-color: oklch(92% 0.005 60 / 0.3); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: max(100svh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    oklch(14% 0.02 260 / 0.55) 0%,
    oklch(14% 0.02 260 / 0.72) 60%,
    oklch(14% 0.02 260 / 0.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: oklch(99% 0.005 60);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: oklch(99% 0.005 60 / 0.8);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out) 0.6s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out) 0.8s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll:hover { opacity: 1; }

/* ── PROOF BAR ── */
.proof {
  background: var(--dark);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.proof__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.proof__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proof__number-row {
  display: flex;
  align-items: flex-end;
  gap: 0.15em;
}
.proof__number {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: oklch(99% 0.005 60);
  line-height: 1;
  display: inline-block;
}
.proof__plus {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3.75vw, 2.75rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.15em;
}
.proof__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(99% 0.005 60 / 0.55);
  margin-top: 0.25rem;
}
.proof__divider {
  width: 1px;
  height: 60px;
  background: oklch(99% 0.005 60 / 0.12);
}
.proof__logos { flex: 1 1 100%; min-width: 0; text-align: center; margin-top: clamp(1rem, 3vw, 2rem); }
.proof__logos-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(99% 0.005 60 / 0.4);
  margin-bottom: 0.75rem;
}
.logos__carousel-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.logos__carousel-wrap::-webkit-scrollbar { display: none; }
.logos__carousel-wrap.dragging { cursor: grabbing; }
.logos__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: max-content;
  padding: 0.5rem clamp(1.25rem, 5vw, 3rem);
}
.logos__slide { flex: 0 0 auto; display: flex; align-items: center; }
.proof__logo-img {
  height: clamp(51px, 6.4vw, 67px);
  width: auto;
  max-width: 208px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.proof__logo-img:hover { opacity: 0.9; }
.proof__logo-img--kia { height: calc(clamp(51px, 6.4vw, 67px) * 1.2); }

/* ── SERVICES ── */
.services {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.service-card__media {
  height: 200px;
  overflow: hidden;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }

.service-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__cta {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.service-card__cta::after {
  content: "→";
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover .service-card__cta::after {
  transform: translateX(4px);
}
.service-card__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.625rem;
}
.service-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1;
}
.service-card__body > p:not(.service-card__kicker):not(.service-card__tags) {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--gray);
  margin-bottom: 1.1rem;
}
.service-card__tags {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 500px;
  box-shadow: var(--shadow-lift);
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__header {
  margin-bottom: 2.5rem;
}
.about__header .section-eyebrow { margin-bottom: 0.4rem; }
.about__header .section-title { margin-bottom: 0; }

.about__video-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 9/14;
  max-height: 560px;
  width: 100%;
}
.about__video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__certs-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(65% 0.2 40);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.about__certs-link:hover { opacity: 1; }

.about__content { display: flex; flex-direction: column; gap: 1rem; }
.about__content .section-title { margin-bottom: 0.5rem; }
.about__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
}
.about__quote {
  margin: 0.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--orange);
  background: var(--cream);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.about__quote p {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--dark) !important;
  margin: 0;
}
.about__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.social-link:hover { color: var(--orange); }

/* ── COACHES (within .about) ── */
.coach {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.coach + .coach {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--gray-light);
}
.coach__visual { display: flex; flex-direction: column; gap: 1.5rem; }
.coach__content { display: flex; flex-direction: column; gap: 1rem; }
.coach__content p { font-size: 1rem; line-height: 1.75; color: var(--gray); }
.coach__role {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}
.coach__name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) 0 0;
}
.portfolio .section-eyebrow { color: var(--orange); }
.portfolio .section-title { color: var(--white); }
.portfolio .section-header { padding-bottom: clamp(2rem, 4vw, 3.5rem); }

/* Auto-scrolling + draggable carousel */
.portfolio__carousel-wrap {
  width: 100%;
  padding-bottom: clamp(3rem, 5vw, 5rem);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.portfolio__carousel-wrap::-webkit-scrollbar { display: none; }
.portfolio__carousel-wrap.dragging { cursor: grabbing; }
.portfolio__track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.portfolio__slide {
  flex: 0 0 auto;
  width: clamp(240px, 38vw, 420px);
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.portfolio__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out);
}
.portfolio__slide:hover img { transform: scale(1.05); }

/* ── GALLERY LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: oklch(10% 0.02 260 / 0.92);
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px oklch(0% 0 0 / 0.5);
}
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  background: none;
  border: none;
  color: oklch(99% 0.005 60 / 0.8);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--white); }

/* ── NEXT EVENT ── */
.next-event {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.next-event .section-eyebrow {
  font-size: 1.05rem;
  font-weight: 700;
}
.next-event__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.next-event__header { grid-column: 1 / -1; }
.next-event__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
  box-shadow: var(--shadow-lift);
}
.next-event__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.next-event__content { display: flex; flex-direction: column; gap: 0.5rem; }
.next-event__activity {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin: 0.25rem 0 1rem;
}
.next-event__details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.next-event__details li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}
.next-event__details li span { color: var(--gray); }
.next-event__details li strong { color: var(--dark); font-weight: 600; }
.next-event__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid oklch(65% 0.2 40 / 0.35);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 0.75rem;
}
.next-event__partner {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.next-event__cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  align-self: flex-start;
  transition: color 0.2s;
}
.next-event__cta:hover { color: var(--orange); }

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
  text-align: center;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: oklch(14% 0.02 260 / 0.78);
}
.cta-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-section__sub {
  font-size: 1rem;
  color: oklch(99% 0.005 60 / 0.75);
  max-width: 480px;
  line-height: 1.7;
}

/* ── CONTACT ── */
.contact {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.contact__info .section-title { margin-bottom: 0.5rem; }
.contact__info > p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 420px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact-detail {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.contact-detail:hover { color: var(--orange); }
.contact-detail--plain {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray);
  cursor: default;
}
.contact-detail--plain:hover { color: var(--gray); }
.contact__social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.social-icon-btn:hover { background: var(--orange); transform: translateY(-2px); }

/* ── FORM ── */
.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.form-group select {
  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='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--orange);
  padding: 0.75rem;
  background: oklch(65% 0.2 40 / 0.08);
  border-radius: var(--r-sm);
}
.form-success.visible { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__logo img {
  height: 56px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer__logo:hover img { opacity: 1; }
.footer__tagline {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: oklch(99% 0.005 60 / 0.4);
}
.footer__copy {
  font-size: 0.78rem;
  color: oklch(99% 0.005 60 / 0.3);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px oklch(0% 0 0 / 0.2);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px oklch(0% 0 0 / 0.28);
}
.whatsapp-btn__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
  pointer-events: none;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ═══════════════════════════════
   TABLET — 640px+
   ═══════════════════════════════ */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: 1fr 1fr; }

  .contact__grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════
   DESKTOP — 960px+
   ═══════════════════════════════ */
@media (min-width: 960px) {
  .nav__burger { display: none; }
  .nav__links {
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .services__grid { grid-template-columns: 1fr 1fr 1fr; }

  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__img-wrap { max-height: none; aspect-ratio: 4/5; }

  .coach { grid-template-columns: 1fr 1fr; }
  .coach--reverse .coach__visual { order: 2; }
  .coach--reverse .coach__content { order: 1; }
  .coach__visual .about__img-wrap { aspect-ratio: 3/2; }

  .next-event__grid { grid-template-columns: 1fr 1fr; }
  .next-event__visual { max-height: none; }
}

/* ── MOBILE NAV OPEN ── */
@media (max-width: 959px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: oklch(14% 0.02 260 / 0.82);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a {
    font-size: 2rem;
    font-family: var(--font-head);
    letter-spacing: 0.05em;
    color: oklch(99% 0.005 60);
  }
  .nav.scrolled .nav__links a { color: oklch(99% 0.005 60); }
  .nav__lang { margin-top: 1rem; }
  .lang-toggle { border-color: oklch(99% 0.005 60 / 0.3); color: oklch(99% 0.005 60); }
  .nav__theme { margin-top: 1rem; }
  .theme-toggle { border-color: oklch(99% 0.005 60 / 0.3); color: oklch(99% 0.005 60); }
}

/* ── DARK MODE (toggle-controlled via [data-theme]) ──
   REGLA: nunca sobreescribir --white/--dark globales.
   Solo parchar las secciones de fondo claro.
   Las secciones siempre-oscuras (hero, proof, portfolio,
   cta-section, footer) ya usan valores absolutos.
   El tema por defecto es dark (ver script inline en <head>).
   ─────────────────────────────────────────────────── */
[data-theme="dark"] body { background: oklch(12% 0.02 260); }

/* Nav — ya es oscuro siempre, nada que cambiar en dark mode */

/* Sección servicios */
[data-theme="dark"] .services { background: oklch(13% 0.02 260); }
[data-theme="dark"] .service-card { background: oklch(18% 0.015 260); }
[data-theme="dark"] .service-card__body h3 { color: oklch(94% 0.005 60); }
[data-theme="dark"] .service-card__body > p:not(.service-card__kicker):not(.service-card__tags) { color: oklch(68% 0.01 260); }
[data-theme="dark"] .service-card__tags { color: oklch(60% 0.01 260); }
[data-theme="dark"] .section-title { color: oklch(94% 0.005 60); }

/* Sección about */
[data-theme="dark"] .about { background: oklch(11% 0.02 260); }
[data-theme="dark"] .about__content p { color: oklch(68% 0.01 260); }
[data-theme="dark"] .about__quote { background: oklch(16% 0.02 260); }
[data-theme="dark"] .about__quote p { color: oklch(94% 0.005 60) !important; }
[data-theme="dark"] .coach + .coach { border-color: oklch(22% 0.015 260); }
[data-theme="dark"] .coach__content p { color: oklch(68% 0.01 260); }
[data-theme="dark"] .coach__name { color: oklch(94% 0.005 60); }
[data-theme="dark"] .cred { background: oklch(18% 0.015 260); color: oklch(90% 0.005 60); border-color: oklch(65% 0.2 40 / 0.2); }

/* Sección próximo evento */
[data-theme="dark"] .next-event { background: oklch(11% 0.02 260); }
[data-theme="dark"] .next-event__details { border-color: oklch(22% 0.015 260); }
[data-theme="dark"] .next-event__details li strong { color: oklch(94% 0.005 60); }
[data-theme="dark"] .next-event__partner { color: oklch(68% 0.01 260); }
[data-theme="dark"] .next-event__cta { color: oklch(90% 0.005 60); }

/* Sección contacto */
[data-theme="dark"] .contact { background: oklch(13% 0.02 260); }
[data-theme="dark"] .contact__info > p { color: oklch(68% 0.01 260); }
[data-theme="dark"] .contact-detail { color: oklch(88% 0.005 60); }
[data-theme="dark"] .contact-detail--plain { color: oklch(55% 0.01 260); }
[data-theme="dark"] .contact-detail--plain:hover { color: oklch(55% 0.01 260); }
[data-theme="dark"] .contact-form { background: oklch(18% 0.015 260); }
[data-theme="dark"] .form-group label { color: oklch(90% 0.005 60); }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: oklch(14% 0.02 260);
  color: oklch(92% 0.005 60);
  border-color: oklch(30% 0.015 260);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  background: oklch(16% 0.02 260);
  border-color: var(--orange);
}
