/* =============================================
   ALMA YOGA STUDIO · Stylesheet
   Paleta: Sage Green · Crema · Tierra · Oscuro
   Tipografía: Playfair Display + DM Sans
   ============================================= */

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

:root {
  /* Colors */
  --sage:        #6b8f6b;
  --sage-light:  #8aad8a;
  --sage-dark:   #4a6e4a;
  --sage-pale:   #c8dbc8;
  --cream:       #f7f2ea;
  --cream-dark:  #ede4d4;
  --gold:        #cda358;
  --gold-light:  #e8c080;
  --gold-dark:   #a07836;
  --earth:       #8b6347;
  --earth-light: #b8865e;
  --deep:        #1a1f1a;
  --deep2:       #222922;
  --deep3:       #2a332a;
  --white:       #ffffff;
  --text-dark:   #2a2a22;
  --text-mid:    #5a5a4a;
  --text-light:  rgba(255,255,255,0.85);
  --text-dim:    rgba(255,255,255,0.5);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-italic:  'Cormorant', 'Playfair Display', Georgia, serif;

  /* Misc */
  --radius:      14px;
  --radius-lg:   24px;
  --shadow:      0 8px 40px rgba(26,31,26,0.15);
  --shadow-deep: 0 16px 60px rgba(26,31,26,0.3);
  --ease:        cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition:  all 0.3s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─────────────────── FADE IN ANIMATION ─────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────── TYPOGRAPHY ─────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep);
  margin-bottom: 16px;
}
.section-title span { color: var(--sage); }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--gold-light); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}
.section-label.light { color: var(--gold-light); }
.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-desc.light { color: var(--text-dim); }

.section-header { text-align: center; margin-bottom: 60px; }

/* ─────────────────── BUTTONS ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-align: center;
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,143,107,0.4);
}
.btn-sage-solid {
  background: var(--sage);
  color: var(--white);
}
.btn-sage-solid:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,143,107,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}
.btn-outline-dark:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  padding: 10px 22px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* ─────────────────── NAVBAR ─────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(247,242,234,0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26,31,26,0.1);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-lotus {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(205,163,88,0.4));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
#navbar.scrolled .brand-name { color: var(--deep); }
#navbar.scrolled .brand-sub { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold-light); }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--sage); }
#navbar.scrolled .btn-nav { color: var(--white) !important; }

.nav-phone {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  white-space: nowrap;
}
#navbar.scrolled .nav-phone { color: var(--text-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--deep); }

/* Mobile drawer */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,31,26,0.6);
  z-index: 998;
}
.mobile-overlay.open { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0; right: -300px;
  width: 290px;
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.35s var(--ease);
  box-shadow: -4px 0 32px rgba(0,0,0,0.2);
}
.mobile-drawer.open { right: 0; }
.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-mid);
}
.drawer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}
.drawer-link {
  padding: 12px 8px;
  color: var(--text-mid);
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.drawer-link:hover { background: var(--cream-dark); color: var(--sage-dark); }
.drawer-cta {
  margin-top: 12px;
  background: var(--sage);
  color: var(--white) !important;
  border-radius: 50px;
  text-align: center;
  padding: 14px;
}
.drawer-info {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.9;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { justify-content: space-between; }
}

/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,31,26,0.88) 0%,
    rgba(42,51,42,0.6) 50%,
    rgba(26,31,26,0.92) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-mandala {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  padding-right: 5%;
}
.hero-mandala svg {
  width: min(600px, 55vw);
  height: auto;
  animation: rotateSlow 60s linear infinite;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 80px 24px 80px;
  max-width: 680px;
  margin-left: max(5%, calc(50vw - 590px + 24px));
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(205,163,88,0.5);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  font-style: normal;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  font-size: 0.7em;
  display: block;
  line-height: 1.3;
}
.hero-highlight {
  color: var(--sage-light);
  text-shadow: 0 4px 40px rgba(107,143,107,0.4);
  font-style: normal;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sage-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}
.hero-stat-sep {
  color: rgba(255,255,255,0.2);
  font-size: 1.5rem;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 24px 80px;
  }
  .hero-mandala { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
}

/* ─────────────────── FEATURES STRIP ─────────────────── */
.features-strip {
  background: var(--deep2);
  border-top: 1px solid rgba(205,163,88,0.12);
  border-bottom: 1px solid rgba(205,163,88,0.12);
  overflow: hidden;
}
.features-ticker-wrap {
  overflow: hidden;
  width: 100%;
}
.features-ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
  width: max-content;
}
.features-ticker:hover { animation-play-state: paused; }
.ticker-clone { display: inline-flex; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  flex-shrink: 0;
}
.feature-item > div {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.feature-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
}
.feature-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}
.feature-sep { display: none; }

/* ─────────────────── SECTION BASE ─────────────────── */
.section { padding: 100px 0; }
.section-dark {
  background: var(--deep);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-label { color: var(--gold-light); }
.section-dark .section-desc { color: rgba(255,255,255,0.55); }

/* ─────────────────── ABOUT ─────────────────── */
.section-about {
  background: var(--cream);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}
.about-img-bg {
  position: absolute;
  bottom: 0; right: 0;
  width: 85%;
  aspect-ratio: 3/4;
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
}
.about-img-main {
  position: relative;
  z-index: 1;
  width: 85%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: linear-gradient(135deg, var(--deep2), var(--deep3));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.4);
}
.lotus-icon { font-size: 4rem; margin-bottom: 12px; filter: drop-shadow(0 4px 16px rgba(205,163,88,0.3)); }
.about-img-placeholder p { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }
.about-badge-float {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-badge-float strong { display: block; font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.about-badge-float span { font-size: 0.7rem; opacity: 0.85; }
.about-quote-card {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 3px solid var(--sage);
}
.about-quote-card blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 8px;
}
.about-quote-card cite {
  font-size: 0.78rem;
  color: var(--sage);
  font-style: normal;
  font-weight: 600;
}

.about-text .section-title { color: var(--deep); margin-bottom: 20px; }
.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  font-size: 1.4rem;
  min-width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong { display: block; font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.value-item span { color: var(--text-mid); font-size: 0.82rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
}

/* ─────────────────── CLASES ─────────────────── */
.clases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.clase-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.clase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,143,107,0.05), rgba(205,163,88,0.03));
  opacity: 0;
  transition: opacity 0.3s;
}
.clase-card:hover {
  border-color: rgba(107,143,107,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.clase-card:hover::before { opacity: 1; }
.clase-card-highlight {
  border-color: rgba(205,163,88,0.3);
  background: rgba(205,163,88,0.07);
}
.clase-card-highlight:hover { border-color: var(--gold); }

.clase-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.clase-icon { font-size: 2.2rem; }
.clase-level {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.nivel-principiante { background: rgba(138,173,138,0.2); color: var(--sage-light); }
.nivel-intermedio { background: rgba(184,134,94,0.2); color: var(--earth-light); }
.nivel-avanzado { background: rgba(220,100,80,0.15); color: #e88060; }
.nivel-todos { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.nivel-especial { background: rgba(205,163,88,0.2); color: var(--gold-light); }
.nivel-premium { background: rgba(205,163,88,0.3); color: var(--gold); border: 1px solid rgba(205,163,88,0.4); }

.clase-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.clase-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 18px;
}
.clase-details {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.clase-details span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 50px;
}
.btn-clase {
  display: inline-block;
  color: var(--sage-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.btn-clase:hover {
  color: var(--white);
  border-bottom-color: var(--sage-light);
}
.btn-clase-gold {
  color: var(--gold);
}
.btn-clase-gold:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ─────────────────── SCHEDULE ─────────────────── */
.section-schedule {
  background: var(--cream-dark);
}
.schedule-wrap { overflow-x: auto; }
.schedule-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--sage-pale);
  background: transparent;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.schedule-table {
  min-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}
.schedule-header {
  display: grid;
  grid-template-columns: 80px repeat(6, 1fr);
  background: var(--sage);
  color: var(--white);
}
.sch-col {
  padding: 14px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}
.sch-hora { font-weight: 700; text-align: left; padding-left: 16px; }
.sch-row {
  display: grid;
  grid-template-columns: 80px repeat(6, 1fr);
  border-bottom: 1px solid var(--cream-dark);
  background: var(--white);
}
.sch-row:last-child { border-bottom: none; }
.sch-row:nth-child(even) { background: rgba(247,242,234,0.6); }
.sch-cell {
  padding: 10px 6px;
  min-height: 64px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--cream-dark);
}
.sch-cell:last-child { border-right: none; }
.sch-hora-cell {
  padding-left: 16px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.sch-clase {
  width: 100%;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: var(--transition);
}
.sch-clase small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 0.65rem;
}
.sch-clase:hover { transform: scale(1.03); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.hatha    { background: rgba(107,143,107,0.15); color: var(--sage-dark); border-left: 3px solid var(--sage); }
.vinyasa  { background: rgba(184,134,94,0.15); color: var(--earth); border-left: 3px solid var(--earth-light); }
.yin      { background: rgba(120,100,180,0.12); color: #6048a8; border-left: 3px solid #9070d0; }
.ashtanga { background: rgba(220,80,60,0.12); color: #a03020; border-left: 3px solid #d06050; }
.meditacion { background: rgba(205,163,88,0.15); color: var(--gold-dark); border-left: 3px solid var(--gold); }
.restaurativo { background: rgba(100,160,160,0.15); color: #2a7070; border-left: 3px solid #60a8a8; }
.prenatal { background: rgba(220,140,180,0.15); color: #984070; border-left: 3px solid #d080b0; }
.infantil { background: rgba(100,180,100,0.15); color: #306830; border-left: 3px solid #70c070; }

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.hatha-dot { background: var(--sage); }
.vinyasa-dot { background: var(--earth-light); }
.yin-dot { background: #9070d0; }
.ashtanga-dot { background: #d06050; }
.meditacion-dot { background: var(--gold); }
.restaurativo-dot { background: #60a8a8; }
.prenatal-dot { background: #d080b0; }
.infantil-dot { background: #70c070; }

/* ─────────────────── PRECIOS ─────────────────── */
.section-pricing { background: var(--cream); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.toggle-label { font-weight: 600; color: var(--text-mid); font-size: 0.9rem; }
.active-label { color: var(--text-dark); }
.toggle-switch { position: relative; width: 50px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--sage-pale);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: var(--sage);
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.toggle-switch input:checked + .toggle-slider { background: var(--sage-pale); }
.discount-badge {
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  font-style: normal;
  margin-left: 6px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card-featured {
  background: var(--deep);
  border-color: var(--sage);
  color: var(--white);
  transform: scale(1.04);
}
.price-card-featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-card-header { text-align: center; margin-bottom: 24px; }
.price-icon { font-size: 2.2rem; margin-bottom: 10px; }
.price-card-header h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.price-card:not(.price-card-featured) h3 { color: var(--deep); }
.price-card-featured h3 { color: var(--white); }
.price-card-header p { font-size: 0.82rem; color: var(--text-mid); }
.price-card-featured .price-card-header p { color: rgba(255,255,255,0.55); }
.price-amount {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.price-card-featured .price-amount { border-color: rgba(255,255,255,0.12); }
.price-currency { font-size: 1.2rem; color: var(--sage); vertical-align: top; margin-top: 8px; display: inline-block; }
.price-card-featured .price-currency { color: var(--sage-light); }
.price-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--deep);
  line-height: 1;
  transition: all 0.3s;
}
.price-card-featured .price-num { color: var(--white); }
.price-period { font-size: 0.82rem; color: var(--text-mid); }
.price-card-featured .price-period { color: rgba(255,255,255,0.5); }
.price-features { margin-bottom: 28px; }
.price-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
}
.price-card-featured .price-features li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.08);
}
.price-features li:last-child { border-bottom: none; }
.feat-disabled { opacity: 0.4; }

.pricing-extras {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pricing-extras h3 {
  font-size: 1.4rem;
  color: var(--deep);
  margin-bottom: 28px;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.extra-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.extra-item:hover { border-color: var(--sage); transform: translateY(-2px); }
.extra-icon { font-size: 1.5rem; }
.extra-info { flex: 1; text-align: left; }
.extra-info strong { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
.extra-info span { font-size: 0.75rem; color: var(--text-mid); }
.extra-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sage-dark);
  white-space: nowrap;
}
.extras-note { font-size: 0.78rem; color: var(--text-mid); font-style: italic; }

/* ─────────────────── PROFESORES ─────────────────── */
.section-teachers { background: var(--cream-dark); }
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.teacher-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.teacher-card:hover {
  border-color: var(--sage-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}
.teacher-avatar {
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--sage-pale);
}
.teacher-avatar-inner { font-size: 2rem; }
.teacher-info h3 { font-size: 1.1rem; color: var(--deep); margin-bottom: 4px; }
.teacher-esp {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.teacher-info p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.teacher-certs { display: flex; gap: 6px; flex-wrap: wrap; }
.teacher-certs span {
  font-size: 0.68rem;
  background: var(--sage-pale);
  color: var(--sage-dark);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

/* ─────────────────── TESTIMONIOS ─────────────────── */
.section-testimonios { background: var(--deep); }
.section-testimonios .section-title { color: var(--white); }
.section-testimonios .section-label { color: var(--gold-light); }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonio-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonio-card:hover {
  border-color: rgba(107,143,107,0.3);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonio-card > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-italic);
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonio-author strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}
.testimonio-author span { font-size: 0.74rem; color: rgba(255,255,255,0.4); }

/* ─────────────────── RETIROS ─────────────────── */
.section-retiros { background: var(--cream); overflow: hidden; }
.retiros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.retiros-text .section-title { color: var(--deep); }
.retiros-text p { color: var(--text-mid); margin-bottom: 28px; }
.retiro-events {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.retiro-event {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.retiro-event:hover { border-color: var(--sage); transform: translateX(4px); }
.retiro-date {
  min-width: 48px;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
  padding-right: 16px;
}
.retiro-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sage-dark);
  line-height: 1;
}
.retiro-date span { font-size: 0.7rem; text-transform: uppercase; color: var(--text-mid); font-weight: 600; }
.retiro-info { flex: 1; }
.retiro-info h4 { font-size: 0.92rem; color: var(--deep); margin-bottom: 4px; }
.retiro-info span { font-size: 0.76rem; color: var(--text-mid); }
.retiro-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sage);
  font-weight: 700;
  white-space: nowrap;
}

.retiro-visual-card {
  position: relative;
  background: linear-gradient(135deg, var(--deep2), var(--deep3));
  border-radius: var(--radius-lg) * 2;
  border-radius: 32px;
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.retiro-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.deco-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.3;
}
.deco-1 { width: 250px; height: 250px; background: var(--sage); top: -80px; left: -60px; }
.deco-2 { width: 200px; height: 200px; background: var(--gold); bottom: -60px; right: -40px; }
.deco-3 { width: 150px; height: 150px; background: var(--earth); top: 40%; left: 40%; }
.retiro-visual-content { position: relative; z-index: 1; }
.retiro-icon-big { font-size: 4rem; margin-bottom: 20px; }
.retiro-visual-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.retiro-visual-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 28px; }
.retiro-stats-mini { display: flex; justify-content: center; gap: 36px; }
.retiro-stats-mini div { display: flex; flex-direction: column; }
.retiro-stats-mini strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--sage-light); }
.retiro-stats-mini span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .retiros-inner { grid-template-columns: 1fr; }
}

/* ─────────────────── CONTACTO ─────────────────── */
.section-contact { background: var(--deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: flex-start;
}
.contact-info .section-title { color: var(--white); }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(107,143,107,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-item strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 2px; }
.contact-item span { color: rgba(255,255,255,0.55); font-size: 0.83rem; }
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--sage-light); color: var(--sage-light); }

.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s;
}
.form-group select option { background: var(--deep2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.form-check a { color: var(--sage-light); text-decoration: underline; }
.form-check input { width: 16px; height: 16px; accent-color: var(--sage); }
.form-first-class {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.form-first-class strong { color: var(--sage-light); }

.success-msg {
  text-align: center;
  padding: 40px;
}
.success-inner { }
.success-icon { font-size: 3.5rem; margin-bottom: 20px; }
.success-inner h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 14px; }
.success-inner p { color: rgba(255,255,255,0.65); margin-bottom: 12px; font-size: 0.9rem; }
.success-mantra { font-family: var(--font-italic); font-style: italic; color: var(--sage-light) !important; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}

/* ─────────────────── FOOTER ─────────────────── */
.footer {
  background: var(--deep2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-mandala {
  position: absolute;
  top: -30px;
  right: 5%;
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
  filter: blur(2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--sage); background: rgba(107,143,107,0.15); }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-links a:hover { color: var(--sage-light); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─────────────────── FLOAT WA ─────────────────── */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: auto;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent, #b07d62);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
