/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --white:       #ffffff;
  --off-white:   #e8f1f8;
  --bg-soft:     #ddeaf5;
  --ocean-deep:  #023e8a;
  --ocean:       #0077b6;
  --ocean-mid:   #0096c7;
  --ocean-light: #00b4d8;
  --ocean-pale:  #90e0ef;
  --ocean-foam:  #caf0f8;
  --coral:       #ff5f3d;
  --coral-dark:  #e04a2a;
  --coral-light: #ff7d61;
  --sand:        #f5e6c8;
  --text:        #0b1f2e;
  --text-2:      #3d5a72;
  --text-3:      #7a9ab0;
  --border:      rgba(0,119,182,0.1);
  --border-soft: rgba(0,119,182,0.06);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --nav-h:        72px;

  --shadow-xs:  0 1px 4px rgba(0,65,110,0.07);
  --shadow-sm:  0 2px 12px rgba(0,65,110,0.09);
  --shadow-md:  0 8px 32px rgba(0,65,110,0.12);
  --shadow-lg:  0 20px 56px rgba(0,65,110,0.16);
  --shadow-xl:  0 32px 80px rgba(0,65,110,0.2);

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:   cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     6px;
  --radius-lg:  10px;
  --radius-xl:  14px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
a:not([class]) { text-decoration-thickness: 1px; text-underline-offset: 4px; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); outline: none; border: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ocean-light), var(--coral));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════ */
.wsp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              background 0.2s, box-shadow 0.2s, padding 0.3s var(--ease);
  pointer-events: none;
}
.wsp-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wsp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wsp-float:hover { background: #1ebe5b; box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.wsp-label { white-space: nowrap; }

@keyframes wspPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 8px rgba(37,211,102,0.12); }
}
.wsp-float.visible { animation: wspPulse 3s ease-in-out infinite; }
.wsp-float:hover { animation: none; }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.26s; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 14px;
}
.section-label-light { color: rgba(202,240,248,0.9); }

.clases .section-label,
.disponibilidad .section-label,
.nosotros .section-label { color: var(--coral); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-title-white { color: var(--white); }

.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto 56px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.body-text { font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--text-2); margin-bottom: 20px; }

.text-ocean { color: var(--ocean); }
.text-coral { color: var(--coral); }
.title-outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.title-outline-soft { -webkit-text-stroke: 2px rgba(202,240,248,0.65); color: transparent; }
.title-outline-white { -webkit-text-stroke: 2px rgba(255,255,255,0.45); color: transparent; }
.title-outline-ocean { -webkit-text-stroke: 2px var(--ocean); color: transparent; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 16px rgba(255,95,61,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,95,61,0.48); }
.btn-primary.btn-large { font-size: 17px; padding: 18px 40px; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 5px;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

.btn-submit {
  width: 100%;
  background: var(--ocean);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(0,119,182,0.22);
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--ocean-mid); transform: translateY(-1px); }

.btn-submit-wsp {
  width: 100%;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(37,211,102,0.25);
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn-submit-wsp:hover { background: #1ebe5b; transform: translateY(-1px); }

.btn-nueva-reserva {
  background: var(--ocean);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-nueva-reserva:hover { background: var(--ocean-mid); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s, box-shadow 0.45s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.3s;
  flex-shrink: 0;
}
.nav-logo span { color: var(--ocean-pale); transition: color 0.3s; }
.navbar.scrolled .nav-logo { color: var(--text); }
.navbar.scrolled .nav-logo span { color: var(--ocean); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--text-2); }
.navbar.scrolled .nav-links a:hover { color: var(--ocean); }

.btn-nav-cta {
  flex-shrink: 0;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  border-radius: 4px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(255,95,61,0.28);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--coral-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 8px 0 24px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--ocean); background: var(--bg-soft); }
.mobile-cta {
  margin: 16px 24px 0;
  background: var(--coral);
  color: var(--white) !important;
  text-align: center;
  padding: 16px !important;
  border-radius: 10px;
  border-bottom: none !important;
  font-weight: 700 !important;
}
.mobile-cta:hover { background: var(--coral-dark) !important; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  background-color: var(--ocean-deep);
  background-image: url('../img/Fotodesdearriba.jpg');
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    150deg,
    rgba(2,20,60,0.72) 0%,
    rgba(2,62,138,0.55) 50%,
    rgba(0,119,182,0.35) 100%
  );
}
.hero-light {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 90% 60% at 65% 25%, rgba(144,224,239,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  padding-top: calc(var(--nav-h) + 20px);
  max-width: 820px;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean-foam);
  margin-bottom: 14px;
}
.hero-label-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--ocean-foam);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(2,62,138,0.2);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(202,240,248,0.88);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
/* Badges */
.hero-badges {
  position: absolute;
  bottom: 56px;
  left: 64px;
  z-index: 2;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid rgba(202,240,248,0.45);
  padding: 4px 0 4px 16px;
  text-align: left;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}
.badge-txt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(202,240,248,0.65);
  margin-top: 2px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 60px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(202,240,248,0.6);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(12px); opacity: 1; }
}

/* ═══════════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════════ */
.nosotros { background: var(--off-white); padding: 130px 0; }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nosotros-text .section-title { text-align: left; }

/* Imagen con badge */
.img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.img-frame img { border-radius: var(--radius-xl); object-position: center; }
.img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(2,62,138,0.14);
}
.img-badge-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--ocean);
  line-height: 1;
}
.img-badge-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
}

/* Features list */
.nosotros-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.feature-icon { font-size: 18px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.stats-band {
  background: var(--ocean-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0,150,199,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 56px;
  flex: 1;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--white);
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  color: var(--ocean-pale);
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(202,240,248,0.85);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   CLASES
═══════════════════════════════════════════ */
.clases { background: var(--off-white); padding: 130px 0; }
.clases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.clase-card {
  position: relative;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.35s var(--ease);
}
.clase-card:hover { box-shadow: var(--shadow-xl); }
.clase-card:hover .clase-bg-img { transform: scale(1.06); }
.clase-card.featured {
  height: 540px;
  box-shadow: 0 0 0 2.5px var(--coral), var(--shadow-lg);
}
.clase-card.featured:hover {
  box-shadow: 0 0 0 2.5px var(--coral), var(--shadow-xl);
}

.clase-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.clase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,62,138,0.95) 0%, rgba(2,62,138,0.5) 45%, rgba(0,10,30,0.12) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
}

.clase-nivel-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 5px 11px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 12px;
  align-self: flex-start;
}
.featured-tag {
  background: var(--coral);
  border-color: var(--coral);
}

.clase-nombre {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.clase-nivel-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-pale);
  margin-bottom: 10px;
}
.clase-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.clase-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.precio-ars {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  color: var(--white);
  line-height: 1;
}
.precio-unit {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 2px;
}
.btn-clase {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 10px 18px;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-clase:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.85); }
.btn-clase-featured {
  background: var(--coral);
  border-color: var(--coral);
}
.btn-clase-featured:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

/* ═══════════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════════ */
.como-funciona {
  background: var(--ocean-deep);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.como-funciona::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,150,199,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.como-funciona .container { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }
.como-funciona .section-header { margin-bottom: 56px; }

.pasos-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.paso {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.paso-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: rgba(144,224,239,0.15);
  margin-bottom: -12px;
  display: block;
}
.paso-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(144,224,239,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--ocean-pale);
  background: rgba(0,119,182,0.1);
  transition: background 0.3s, border-color 0.3s;
}
.paso-icon svg { width: 32px; height: 32px; }
.paso:hover .paso-icon {
  background: rgba(0,119,182,0.3);
  border-color: var(--ocean-pale);
}
.paso-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.paso-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(202,240,248,0.88);
}
.paso-arrow {
  font-size: 24px;
  color: rgba(144,224,239,0.3);
  padding-top: 80px;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════
   DISPONIBILIDAD
═══════════════════════════════════════════ */
.disponibilidad { background: var(--off-white); padding: 130px 0 140px; }
.booking-layout { display: grid; grid-template-columns: 380px 1fr; gap: 36px; align-items: start; }

/* Calendario */
.calendar-panel {
  background: var(--white);
  border: 1px solid rgba(0,119,182,0.18);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cal-month {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--text);
}
.cal-nav {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-2);
  font-size: 22px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cal-nav:hover { background: var(--ocean-foam); border-color: var(--ocean-light); color: var(--ocean); }

.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 6px; }
.cal-weekdays span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-3); padding: 4px 0;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }

.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
  border-radius: 8px;
  cursor: default;
  transition: background 0.15s, transform 0.15s;
  position: relative;
  color: var(--text);
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: var(--text-3); opacity: 0.4; }
.cal-day.available { cursor: pointer; font-weight: 600; }
.cal-day.available::after {
  content: ''; position: absolute;
  bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: #22c55e;
}
.cal-day.available:hover { background: rgba(34,197,94,0.1); transform: scale(1.08); }
.cal-day.low-availability { cursor: pointer; font-weight: 600; }
.cal-day.low-availability::after {
  content: ''; position: absolute;
  bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: #f97316;
}
.cal-day.low-availability:hover { background: rgba(249,115,22,0.1); transform: scale(1.08); }
.cal-day.full { color: var(--text-3); cursor: not-allowed; }
.cal-day.full::after {
  content: ''; position: absolute;
  bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: #ef4444;
}
.cal-day.selected {
  background: var(--ocean) !important;
  color: var(--white) !important;
  transform: scale(1.1) !important;
  font-weight: 700;
}
.cal-day.selected::after { display: none; }
.cal-day.today { outline: 2px solid var(--ocean-light); outline-offset: -2px; }

.cal-legend {
  display: flex; gap: 14px;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-3); }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-ok { background: #22c55e; }
.dot-low { background: #f97316; }
.dot-full { background: #ef4444; }

/* Panel derecho booking */
.booking-right { min-height: 420px; }

.booking-placeholder {
  border: 2px dashed rgba(0,119,182,0.25);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  background: var(--bg-soft);
}
.placeholder-wave { margin: 0 auto 20px; width: 120px; opacity: 0.6; }
.placeholder-wave svg { width: 100%; height: auto; }
.placeholder-title { font-family: var(--font-display); font-size: 24px; color: var(--text); margin-bottom: 10px; }
.placeholder-sub { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* Slots panel */
.slots-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  animation: panelIn 0.4s var(--ease);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
.slots-header { margin-bottom: 24px; }
.slots-date {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 0.03em;
  color: var(--text); margin-bottom: 4px;
}
.slots-sub { font-size: 14px; color: var(--text-3); }
.slots-list { display: flex; flex-direction: column; gap: 12px; }

.slot-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-wrap: wrap; gap: 10px;
}
.slot-item.clickable { cursor: pointer; }
.slot-item.clickable:hover {
  border-color: var(--ocean-light);
  background: var(--ocean-foam);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.slot-item.slot-full { opacity: 0.45; cursor: not-allowed; }
.slot-left { display: flex; flex-direction: column; gap: 3px; }
.slot-hora {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px; letter-spacing: 0.03em;
  color: var(--text); line-height: 1;
}
.slot-info { font-size: 13px; color: var(--text-2); }
.slot-right { display: flex; align-items: center; gap: 14px; }
.slot-cupos { font-size: 13px; color: var(--text-3); text-align: right; line-height: 1.5; }
.slot-cupos strong { color: var(--text); font-weight: 700; }
.slot-badge {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; white-space: nowrap;
}
.badge-available { background: rgba(34,197,94,0.12); color: #15803d; }
.badge-low { background: rgba(249,115,22,0.12); color: #c2410c; }
.badge-full { background: rgba(239,68,68,0.1); color: #dc2626; }

/* Formulario de reserva */
.reserva-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  animation: panelIn 0.4s var(--ease);
}
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--ocean);
  margin-bottom: 24px;
  transition: opacity 0.2s;
}
.back-btn svg { width: 16px; height: 16px; }
.back-btn:hover { opacity: 0.7; }

.reserva-summary {
  background: var(--ocean-foam);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.95;
}
.reserva-summary strong { color: var(--text); font-weight: 600; }

.reserva-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px; font-weight: 700;
  color: var(--text-2); letter-spacing: 0.04em; text-transform: uppercase;
}
.label-opt { font-weight: 400; text-transform: none; opacity: 0.6; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ocean-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group select option { background: var(--white); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-group input.field-error,
.form-group textarea.field-error,
.form-group select.field-error {
  border-color: #ef4444;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.field-error-msg {
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
  min-height: 16px;
  display: block;
  margin-top: 2px;
}

/* Confirmación */
.confirmacion-panel {
  background: linear-gradient(160deg, #f0fbf5 0%, #e4f4ff 100%);
  border: 1.5px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: panelIn 0.4s var(--ease);
}
.confirm-check {
  width: 64px; height: 64px;
  background: #22c55e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}
.confirm-title {
  font-family: var(--font-display);
  font-size: 34px; letter-spacing: 0.03em;
  color: var(--text); margin-bottom: 12px;
}
.confirm-sub {
  color: var(--text-2); font-size: 15px;
  line-height: 1.7; max-width: 400px;
  margin: 0 auto 24px;
}
.confirm-details {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px;
  margin-bottom: 28px; text-align: left;
  font-size: 14px; color: var(--text-2); line-height: 2;
}
.confirm-details strong { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════
   GALERÍA
═══════════════════════════════════════════ */
.galeria { background: var(--white); padding: 130px 0; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.gal-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gal-item.span-2 { grid-column: span 2; }
.gal-item.row-2 { grid-row: span 2; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gal-item:hover img { transform: scale(1.04); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,62,138,0.6) 0%, rgba(0,100,160,0.1) 60%, transparent 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-plus {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--white); font-weight: 300;
}
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(2,62,138,0.96);
  z-index: 9998; align-items: center; justify-content: center;
  padding: 48px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 28px; color: var(--white); opacity: 0.7;
  transition: opacity 0.2s; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1);
}
.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════
   INSTRUCTORES
═══════════════════════════════════════════ */
.instructores { background: var(--off-white); padding: 130px 0; }
.instructores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.instructor-card {
  position: relative;
  height: 370px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
}
.instructor-card:hover { box-shadow: var(--shadow-lg); }
.instructor-card:hover .instructor-bg-img { transform: scale(1.05); }
.instructor-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.instructor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,62,138,0.93) 0%, rgba(2,62,138,0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.instructor-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 3px;
}
.instructor-rol {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ocean-pale); margin-bottom: 10px;
}
.instructor-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.instructor-tags span {
  font-size: 10px; font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 9px; border-radius: 20px;
}

/* ═══════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════ */
.testimonios { background: var(--white); padding: 130px 0; }
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.testimonio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 0.7;
  color: var(--ocean-foam);
  margin-bottom: 16px;
  display: block;
  font-weight: 700;
}
.testimonio-text {
  font-size: 15px; line-height: 1.8;
  color: var(--text-2); flex: 1; margin-bottom: 24px;
}
.testimonio-footer { margin-top: auto; }
.stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonio-autor { display: flex; align-items: center; gap: 12px; }
.testimonio-autor img {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ocean-foam);
}
.testimonio-autor strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.testimonio-autor span { display: block; font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--coral) 0%, #e8430f 40%, var(--ocean) 100%);
  z-index: 0;
}
.cta-band-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-band-content {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 10px;
}
.cta-band-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.93;
  color: var(--white);
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}
.btn-wsp-band {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 600; font-size: 15px;
  padding: 15px 24px;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
  justify-content: center;
}
.btn-wsp-band:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════ */
.contacto { background: var(--off-white); padding: 130px 0; }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contacto-form { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.info-card h4 {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: 0.04em;
  color: var(--text); margin-bottom: 5px;
}
.info-card p { font-size: 15px; color: var(--text-2); line-height: 1.65; }

.btn-whatsapp-full {
  display: flex; align-items: center; gap: 12px;
  background: #25d366; color: var(--white);
  font-weight: 700; font-size: 16px;
  padding: 18px 28px; border-radius: 12px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  margin-top: 8px;
}
.btn-whatsapp-full svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-whatsapp-full:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--ocean-deep); padding: 80px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px; letter-spacing: 0.06em;
  color: var(--white); display: block; margin-bottom: 14px;
}
.footer-logo span { color: var(--ocean-pale); }
.footer-brand > p { font-size: 14px; color: rgba(202,240,248,0.55); line-height: 1.7; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(202,240,248,0.55);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { color: var(--white); border-color: var(--ocean-light); background: rgba(0,150,199,0.15); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(144,224,239,0.45); margin-bottom: 8px;
}
.footer-col a, .footer-col span {
  font-size: 14px; color: rgba(202,240,248,0.55);
  transition: color 0.2s; line-height: 1.4;
}
.footer-col a { text-underline-offset: 4px; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(202,240,248,0.3); }
.footer-bottom a { color: var(--ocean-pale); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .instructores-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pasos-grid { gap: 0; }
  .paso { padding: 0 16px; }
  .nav-container { padding: 0 24px; }
}

@media (max-width: 900px) {
  .clases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .clase-card, .clase-card.featured { height: 420px; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 48px; }
  .nosotros-visual { order: -1; }
  .img-frame { aspect-ratio: 16/9; }
  .booking-layout { grid-template-columns: 1fr; }
  .calendar-panel { position: static; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gal-item.span-2 { grid-column: span 2; }
  .gal-item.row-2 { grid-row: span 1; }
  .testimonios-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contacto-grid { grid-template-columns: 1fr; gap: 56px; }
  .pasos-grid { flex-direction: column; gap: 32px; align-items: center; }
  .paso-arrow { display: none; }
  .paso { max-width: 320px; }
  .cta-band-content { flex-direction: column; text-align: center; }
  .cta-band-actions { width: 100%; max-width: 360px; }
  .stats-grid { flex-wrap: wrap; }
  .stat { min-width: 45%; padding: 16px 20px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 20px; padding-top: calc(var(--nav-h) + 16px); }
  .hero-title { font-size: clamp(40px, 9vw, 64px); }
  .hero-badges { left: 20px; bottom: 40px; gap: 20px; }
  .badge-num { font-size: 18px; }
  .scroll-hint { display: none; }
  .nosotros-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .instructores-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: clamp(32px, 8vw, 52px); }
  .galeria-grid { grid-auto-rows: 200px; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .galeria-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-item.span-2, .gal-item.row-2 { grid-column: span 1; grid-row: span 1; }
  .hero-content { padding: 0 16px; padding-top: calc(var(--nav-h) + 12px); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline-white { width: 100%; justify-content: center; }
  .hero-badges { display: none; }
  .instructores-grid { grid-template-columns: repeat(2, 1fr); }
  .instructor-card { height: 300px; }
  .wsp-float .wsp-label { display: none; }
  .wsp-float { padding: 14px; border-radius: 50%; }
  .stats-grid { flex-direction: column; }
  .stat-divider { display: none; }
  .cta-band-actions { flex-direction: column; }
  .hero-sub { font-size: 16px; }
  .booking-layout { gap: 20px; }
}
