/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --navy: #123B4A;
  --navy-dark: #0C2A35;
  --teal: #2AAE9B;
  --teal-hover: #229585;
  --teal-bright: #34C2AD;
  --amber: #C97B3C;
  --star: #F0A93C;
  --wa: #25D366;
  --wa-hover: #1FB855;
  --bg: #F3F6F7;
  --ink: #263238;
  --muted: #5A6B72;
  --faint: #9FB0B6;
  --line: #E3EAEC;
  --line-2: #CBD6D9;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }

.container { max-width: 1248px; margin: 0 auto; padding: 0 32px; }

/* ─── Type ───────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-head); color: var(--navy); margin: 0; }

h2 { font-weight: 700; font-size: clamp(24px, 3vw, 38px); line-height: 1.15; letter-spacing: -0.015em; margin-bottom: 16px; }
h2.tight { margin-bottom: 6px; }

.kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 14px;
}
.kicker.light { margin-bottom: 10px; font-size: 11px; letter-spacing: 0.18em; }

.section { padding: 96px 0; }
.section-alt { background: var(--bg); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0; text-wrap: pretty; }
.section-head.centered { margin: 0 auto 52px; text-align: center; max-width: 640px; }
.section-head.split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.section-head.split > div { max-width: 640px; }

.lead { font-size: 17.5px; line-height: 1.65; color: var(--muted); margin: 0 0 34px; max-width: 520px; text-wrap: pretty; }

.centered-title { text-align: center; margin-bottom: 40px; font-size: clamp(24px, 2.6vw, 34px); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
  padding: 15px 26px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn-lg { font-size: 14px; padding: 19px 32px; border-radius: 9px; }
.btn-block { display: block; width: 100%; padding: 16px; border-radius: 9px; font-size: 13.5px; }

.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(42, 174, 155, 0.32); }
.btn-teal:hover { background: var(--teal-hover); color: #fff; }
.hero .btn-teal:hover, .academy .btn-teal:hover, .booking-summary .btn-teal:hover { background: var(--teal-bright); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); color: #fff; }

.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 14px 24px; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }

.btn-outline-gray { background: transparent; color: var(--navy); border: 1.5px solid var(--line-2); padding: 16px 28px; border-radius: 9px; font-size: 13.5px; }
.btn-outline-gray:hover { border-color: var(--navy); color: var(--navy); }

.btn-wa { background: var(--wa); color: #fff; padding: 17px 28px; border-radius: 9px; font-size: 13.5px; }
.btn-wa:hover { background: var(--wa-hover); color: #fff; }

.text-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--teal);
}
.text-link:hover { color: var(--navy); }
.text-link.light { color: #fff; }
.text-link.light:hover { color: var(--teal); }

/* ─── Image slots ────────────────────────────────────────── */
.media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(160deg, #1A4A5C 0%, var(--navy) 55%, var(--navy-dark) 100%);
}
.media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.media::before {
  content: 'CZ';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.07);
}
.media::after {
  content: attr(data-label);
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 24px;
}
.media.has-image::before, .media.has-image::after { display: none; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--teal);
  font-size: 18px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.brand-text small { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--teal); }
.main-nav a.is-active { color: var(--navy); border-bottom-color: var(--teal); }
.main-nav .nav-cta { display: none; }
.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); transition: transform 0.2s, opacity 0.2s; }
.nav-toggle span.short { width: 14px; background: var(--teal); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span.short { width: 20px; background: var(--navy); transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero { background: var(--navy); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  gap: 72px;
  align-items: end;
  padding-top: 84px;
}
.hero-copy { padding-bottom: 84px; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--teal);
  border: 1px solid rgba(42, 174, 155, 0.45);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 28px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
}
.hero h1 span { color: var(--teal); }
.hero-copy > p {
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 36px;
  max-width: 520px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 40px; font-size: 14px; color: rgba(255, 255, 255, 0.72); }
.hero-facts > div { display: flex; flex-direction: column; gap: 4px; }
.hero-facts span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--teal);
}
.hero-facts a { color: rgba(255, 255, 255, 0.72); }
.hero-facts a:hover { color: #fff; }
.hero-media {
  height: 620px;
  border-radius: 16px 16px 0 0;
  align-self: end;
}

/* ─── Áreas ──────────────────────────────────────────────── */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area-card {
  background: #fff;
  border-radius: 14px;
  padding: 38px 34px;
  border-top: 4px solid var(--accent, var(--navy));
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 16px rgba(18, 59, 74, 0.06);
  transition: box-shadow 0.2s;
}
.area-card:hover { box-shadow: 0 14px 40px rgba(18, 59, 74, 0.13); }
.area-card h3 { font-weight: 800; font-size: 21px; letter-spacing: -0.01em; }
.area-card p { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 0; flex: 1; }

/* ─── Tratamientos ───────────────────────────────────────── */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.treatment-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.treatment-num {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(42, 174, 155, 0.14);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--teal);
}
.treatment-card h3 { font-weight: 700; font-size: 18.5px; line-height: 1.25; }
.treatment-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; flex: 1; }
.treatment-card .text-link { font-size: 12px; }

/* ─── Entrenamiento ──────────────────────────────────────── */
.training-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.training-media { height: 560px; }
.training-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 38px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.feature-card h3 { font-weight: 700; font-size: 16.5px; }
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ─── Reserva ────────────────────────────────────────────── */
.booking {
  background: var(--bg);
  border-radius: 18px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
}
.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-list { display: flex; flex-direction: column; gap: 9px; }
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s;
}
.service:hover { border-color: var(--line-2); }
.service .radio {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  flex-shrink: 0;
}
.service.is-selected {
  border: 1.5px solid var(--teal);
  font-weight: 600;
  color: var(--navy);
}
.service.is-selected .radio { border: 0; background: var(--teal); }

.calendar { background: #fff; border-radius: 12px; padding: 20px; border: 1px solid var(--line); }
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-transform: uppercase;
}
.cal-nav {
  background: none;
  border: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--teal);
  cursor: pointer;
  padding: 2px 8px;
}
.cal-nav:disabled { color: var(--line-2); cursor: default; }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--faint);
  text-align: center;
  margin-bottom: 8px;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
}
.cal-day { padding: 8px 0; border-radius: 7px; border: 0; background: none; font: inherit; cursor: pointer; }
.cal-day:hover { background: rgba(42, 174, 155, 0.12); }
.cal-day.is-disabled { color: var(--line-2); cursor: default; background: none; }
.cal-day.is-selected { background: var(--teal); color: #fff; font-weight: 700; }
.cal-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 22px;
}
.slot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 0;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  cursor: pointer;
}
.slot:hover { border-color: var(--teal); }
.slot.is-taken {
  background: #EDF1F2;
  color: #B7C4C9;
  text-decoration: line-through;
  cursor: default;
}
.slot.is-taken:hover { border-color: var(--line); }
.slot.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 700;
}

.booking-summary { background: var(--navy); border-radius: 12px; padding: 24px; }
.summary-body { font-size: 14.5px; color: #fff; line-height: 1.7; margin-bottom: 18px; }
.summary-body .dim { color: rgba(255, 255, 255, 0.6); }

/* ─── Academia ───────────────────────────────────────────── */
.academy { background: var(--navy); }
.academy h2 { color: #fff; font-weight: 800; font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.02em; line-height: 1.1; }
.academy .section-head p { color: rgba(255, 255, 255, 0.75); }
.academy .section-head.split > div { max-width: 620px; }

.courses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.course-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.course-card:hover { background: rgba(255, 255, 255, 0.12); }
.course-tag {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.course-card h3 { color: #fff; font-weight: 700; font-size: 19px; line-height: 1.25; }
.course-card p { font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.68); margin: 0; flex: 1; }
.course-card .text-link { font-size: 12px; }

.academy-foot {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.academy-perks { display: flex; gap: 44px; flex-wrap: wrap; font-size: 14.5px; color: rgba(255, 255, 255, 0.72); }
.academy-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Sobre mí ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.about-media { height: 540px; }
.subtitle { font-size: 16px; color: var(--teal); font-weight: 600; margin-bottom: 26px; }
#sobre-mi blockquote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy);
  margin: 0 0 22px;
  max-width: 560px;
  text-wrap: pretty;
}
#sobre-mi > .container > div > p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 34px;
  max-width: 560px;
  text-wrap: pretty;
}
.stats { display: flex; gap: 48px; margin-bottom: 34px; }
.stats strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
}
.stats span { font-size: 14px; color: var(--muted); line-height: 1.4; display: block; }

/* ─── Testimonios ────────────────────────────────────────── */
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border-radius: 14px; padding: 36px 32px; }
.stars { color: var(--star); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card p { font-size: 16.5px; line-height: 1.7; color: var(--ink); margin: 0 0 18px; text-wrap: pretty; }
.who { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--muted); }
.carousel-dots { display: none; }
.testimonials-cta { display: flex; justify-content: center; margin-top: 40px; }

/* ─── Contacto ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 620px);
  gap: 64px;
  align-items: start;
}
#contacto h2 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 12px; }
#contacto .contact-grid > div > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 420px;
}
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.contact-list > div { display: flex; flex-direction: column; gap: 4px; font-size: 16.5px; color: var(--ink); }
.contact-list span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--teal);
}
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--teal); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-frame {
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  background: #E9EFF0;
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); padding: 56px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-mark { width: 40px; height: 40px; border-radius: 11px; background: rgba(42, 174, 155, 0.16); font-size: 16px; }
.site-footer .brand-text strong { color: #fff; font-size: 14px; }
.site-footer .brand-text small { color: rgba(255, 255, 255, 0.55); font-size: 12.5px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 13.5px; color: rgba(255, 255, 255, 0.6); }
.footer-nav a:hover { color: #fff; }

/* ─── Barra fija móvil ───────────────────────────────────── */
.mobile-cta { display: none; }

/* ─── Tablet ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(18, 59, 74, 0.14);
    padding: 8px 24px 24px;
  }
  .main-nav.is-open a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav.is-open a.is-active { border-bottom: 1px solid var(--line); }
  .main-nav.is-open .nav-cta {
    display: block;
    margin-top: 18px;
    border-bottom: 0;
    color: #fff;
    text-align: center;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 0; padding-top: 56px; }
  .hero-copy { padding-bottom: 56px; }
  .hero-media { height: 420px; border-radius: 16px; margin-bottom: -1px; }

  .areas-grid, .treatments-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }

  .training-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .training-media, .about-media { height: 420px; max-width: 640px; }

  .booking { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── Móvil ──────────────────────────────────────────────── */
@media (max-width: 760px) {
  body { padding-bottom: 96px; }

  .container { padding: 0 24px; }
  .section { padding: 56px 0; }
  .header-inner { padding: 0 20px; height: 72px; }
  .brand-text small { display: none; }
  .brand-mark { width: 38px; height: 38px; font-size: 15px; border-radius: 10px; }

  .section-head, .section-head.centered { margin-bottom: 28px; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 20px; }

  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; padding: 17px; font-size: 13.5px; }
  .hero-facts { gap: 20px; }
  .hero-media { height: 300px; border-radius: 12px; }

  .areas-grid, .treatments-grid, .courses-grid, .training-features { grid-template-columns: 1fr; }
  .areas-grid { gap: 12px; }
  .area-card { border-top: 0; border-left: 4px solid var(--accent, var(--navy)); padding: 22px; border-radius: 12px; }
  .area-card h3 { font-size: 17px; }
  .area-card p { font-size: 14.5px; }

  .treatments-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .treatment-card { padding: 18px; border-radius: 11px; gap: 8px; }
  .treatment-num { display: none; }
  .treatment-card h3 { font-size: 14px; line-height: 1.3; }
  .treatment-card p, .treatment-card .text-link { display: none; }

  .training-media, .about-media { height: 260px; }

  .booking { padding: 24px; border-radius: 14px; }

  .academy-foot { flex-direction: column; align-items: stretch; }
  .academy-perks { gap: 12px 24px; }
  .academy-actions .btn { flex: 1; }

  .stats { gap: 28px; }
  .stats strong { font-size: 26px; }

  /* Testimonios → carrusel con scroll-snap */
  .testimonials-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0 -24px;
    padding: 0 24px;
    scrollbar-width: none;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonial-card { flex: 0 0 88%; scroll-snap-align: center; padding: 24px; }
  .carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
  .carousel-dots .dot { width: 8px; height: 4px; border-radius: 2px; background: var(--line-2); transition: width 0.2s, background 0.2s; }
  .carousel-dots .dot.is-active { width: 22px; background: var(--teal); }

  .map-frame { height: 220px; border-radius: 12px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    align-items: center;
    gap: 12px;
  }
  .mobile-cta-main {
    flex: 1;
    padding: 18px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(42, 174, 155, 0.35);
  }
  .wa-fab {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--wa);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
    flex-shrink: 0;
  }
  .wa-fab:hover { color: #fff; background: var(--wa-hover); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
