/* ==========================================================================
   PRĀPTI YOGA STUDIO — Warm Editorial Palette System (#D8CFC5, #313340, #B59F72, #4E4740, #EFE6DF)
   ========================================================================== */

:root {
  /* Palette Colors */
  --bg-canvas: #D8CFC5;             /* FONDO: #D8CFC5 */
  --bg-surface: #EFE6DF;            /* ELEMENTOS NEUTROS O FONDO SECUNDARIO: #EFE6DF */
  --bg-card: #FAF6F0;               /* Tarjetas / Contenedores claros */
  --bg-dark-container: #313340;     /* Contenedores oscuros / Footer / Hero widgets (TEXTO PPAL) */
  --bg-dark-hover: #232530;         /* Hover sobre elementos oscuros */

  --text-main: #313340;             /* TEXTO PPAL: #313340 */
  --text-muted: #4E4740;            /* TEXTO SECUNDARIO: #4E4740 */
  --text-light: #EFE6DF;            /* Texto claro sobre fondo oscuro */
  --text-light-muted: #C5BBB0;      /* Texto atenuado sobre fondo oscuro */

  --accent-clay: #B59F72;           /* DETALLES: #B59F72 */
  --accent-clay-hover: #9E885B;     /* Hover botones de acento */
  --accent-soft: #EFE6DF;           /* Acento suave neutro */
  --accent-sage: #B59F72;           /* Borde hover en tarjetas */

  --border-color: #C6BCB1;          /* Borde suave en armonía con #D8CFC5 */
  --border-dark: #4E4740;           /* Borde oscuro */

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-elvara: 'Elvara', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Elevation */
  --shadow-sm: 0 4px 16px rgba(49, 51, 64, 0.05);
  --shadow-md: 0 12px 32px rgba(49, 51, 64, 0.09);
  --shadow-lg: 0 20px 48px rgba(49, 51, 64, 0.14);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
}

/* Custom Font Declaration: Elvara Bold */
@font-face {
  font-family: 'Elvara';
  src: url('assets/Elvara.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-canvas);
  color: var(--text-main);
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

/* Transparent PNG Logo Styling */
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

/* Footer logo version for dark background */
.logo-img-footer {
  height: 58px;
  width: auto;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* Compact Editorial Quote Banner Component */
.quote-banner {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 500;
  color: var(--bg-dark-container);
  max-width: 840px;
  margin: 0 auto 0.4rem auto;
  line-height: 1.35;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 2.25rem;
  }
}

.quote-author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-clay);
  position: relative;
  z-index: 2;
}

/* Side Botanical Placement for Quote Banner */
.quote-botanical-left {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%) rotate(-15deg);
  width: 140px;
  height: 140px;
  object-fit: contain;
  opacity: 0.38;
  pointer-events: none;
  z-index: 1;
  animation: floatGentle 12s ease-in-out infinite alternate;
}

.quote-botanical-right {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(15deg);
  width: 140px;
  height: 140px;
  object-fit: contain;
  opacity: 0.38;
  pointer-events: none;
  z-index: 1;
  animation: swayLeaf 14s ease-in-out infinite alternate 1.5s;
}

@media (max-width: 900px) {
  .quote-botanical-left,
  .quote-botanical-right {
    display: none;
  }
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-main);
}

.text-center { text-align: center; }
.text-clay { color: var(--accent-clay); }
.text-olive { color: var(--bg-dark-container); }

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section-spacing {
  padding: 4.5rem 0;
  position: relative;
}

@media (min-width: 1024px) {
  .section-spacing {
    padding: 6.5rem 0;
  }
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Gentle Float & Botanical Sway Animations */
@keyframes floatAnimation {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes swayLeaf {
  0% { transform: rotate(0deg) translateY(0px) scale(1); }
  50% { transform: rotate(8deg) translateY(-16px) scale(1.04); }
  100% { transform: rotate(-5deg) translateY(-6px) scale(0.97); }
}

@keyframes swayLeafReverse {
  0% { transform: rotate(0deg) translateY(0px); }
  50% { transform: rotate(-10deg) translateY(-20px); }
  100% { transform: rotate(6deg) translateY(-4px); }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.18); opacity: 0.55; }
}

.animate-float {
  animation: floatAnimation 5s ease-in-out infinite;
}

/* Animated Organic Glow Background Orbs */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-1 {
  top: 10%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(181, 159, 114, 0.35) 0%, rgba(216, 207, 197, 0) 70%);
  animation: pulseGlow 10s ease-in-out infinite;
}

.glow-orb-2 {
  bottom: 12%;
  right: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(78, 71, 64, 0.22) 0%, rgba(216, 207, 197, 0) 70%);
  animation: pulseGlow 12s ease-in-out infinite 2s;
}

/* Distributed Section Botanical PNG Elements */
.section-botanical-left {
  position: absolute;
  top: 8%;
  left: -20px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
  animation: floatGentle 14s ease-in-out infinite alternate;
}

.section-botanical-right {
  position: absolute;
  bottom: 6%;
  right: 0;
  width: 200px;
  height: 200px;
  object-fit: contain;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
  animation: swayLeaf 16s ease-in-out infinite alternate;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.2rem 0;
}

.navbar.scrolled {
  background-color: rgba(216, 207, 197, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--bg-dark-container);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--bg-dark-container);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-olive {
  background-color: var(--bg-dark-container);
  color: var(--text-light);
}

.btn-olive:hover {
  background-color: var(--bg-dark-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-clay {
  background-color: var(--accent-clay);
  color: #FFFFFF;
}

.btn-clay:hover {
  background-color: var(--accent-clay-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-white-glass:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1.5px solid var(--bg-dark-container);
  color: var(--bg-dark-container);
}

.btn-outline:hover {
  background-color: var(--bg-dark-container);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Cinematic Clean Hero Section */
.hero-cinematic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 1.25rem 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-cinematic {
    padding: 6.5rem 1.5rem 1.5rem 1.5rem;
  }
}

.hero-cinematic-card {
  position: relative;
  width: 98%;
  max-width: 1720px;
  min-height: 75vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198, 188, 177, 0.6);
}

.hero-cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.8s ease;
}

.hero-cinematic-card:hover .hero-cinematic-bg {
  transform: scale(1.02);
}

.hero-cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(49, 51, 64, 0.28) 0%,
    rgba(49, 51, 64, 0.20) 40%,
    rgba(49, 51, 64, 0.78) 100%
  );
  z-index: 1;
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3.5rem 2.5rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .hero-cinematic-content {
    padding: 4.5rem 4rem;
  }
}

.hero-cinematic-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  align-self: flex-start;
}

.hero-cinematic-logo-badge img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.hero-cinematic-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero-cinematic-title {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    white-space: nowrap;
  }
}

.hero-cinematic-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.hero-cinematic-widget {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Section Header */
.section-header {
  max-width: 720px;
  margin: 0 auto 4.5rem auto;
}

.section-title {
  font-size: 2.75rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Studio Gallery (Vistas) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  min-height: 320px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card.col-12 { grid-column: span 12; min-height: 480px; }
.gallery-card.col-7 { grid-column: span 7; }
.gallery-card.col-5 { grid-column: span 5; }
.gallery-card.col-4 { grid-column: span 4; }

@media (max-width: 900px) {
  .gallery-card.col-7,
  .gallery-card.col-5,
  .gallery-card.col-4 {
    grid-column: span 12;
  }
}

/* Cards & Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-sage);
}

.service-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-surface);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-clay);
  background-color: rgba(181, 159, 114, 0.14);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(181, 159, 114, 0.25);
}

.service-card h3 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Banner Container (Olive Dark Surface) */
.banner-olive {
  background-color: var(--bg-dark-container);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 992px) {
  .banner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.banner-content {
  padding: 4rem 3rem;
}

@media (min-width: 768px) {
  .banner-content {
    padding: 5.5rem 4.5rem;
  }
}

.banner-content h2 {
  font-size: 3.25rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.banner-content p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.banner-media {
  height: 100%;
  min-height: 380px;
}

.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pricing Section & Carousel */
.pricing-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.carousel-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-clay);
  background: var(--bg-card);
  color: var(--accent-clay);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
  background: var(--accent-clay);
  color: #FFFFFF;
  border-color: var(--accent-clay);
  transform: scale(1.06);
}

.pricing-carousel {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-clay) transparent;
}

.pricing-carousel::-webkit-scrollbar {
  height: 6px;
}

.pricing-carousel::-webkit-scrollbar-track {
  background: rgba(198, 188, 177, 0.3);
  border-radius: var(--radius-pill);
}

.pricing-carousel::-webkit-scrollbar-thumb {
  background: var(--accent-clay);
  border-radius: var(--radius-pill);
}

.pricing-card-slide {
  flex: 0 0 310px;
  min-width: 310px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .pricing-card-slide {
    flex: 0 0 360px;
    min-width: 360px;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--accent-clay);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  height: 100%;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-clay-hover);
}

.pricing-card .price {
  color: var(--accent-clay);
}

.pricing-card.featured {
  background-color: var(--bg-dark-container);
  color: var(--text-light);
  border: 2px solid var(--accent-clay);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--accent-clay);
}

.pricing-card.featured p,
.pricing-card.featured .pricing-features li {
  color: var(--text-light-muted);
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent-clay);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Schedule Section (Horario de Clases) */
.schedule-container {
  margin-top: 4.5rem;
  background: var(--bg-card);
  border: 1.5px solid var(--accent-clay);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.schedule-header-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-clay);
  background-color: rgba(181, 159, 114, 0.14);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(181, 159, 114, 0.25);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.schedule-day-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-day-header {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-dark-container);
  text-align: center;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--accent-clay);
  margin-bottom: 0.5rem;
}

.schedule-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.85rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-clay);
  background: #FFFFFF;
}

.schedule-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.35rem;
}

.schedule-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bg-dark-container);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.schedule-instructor {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-clay);
  display: block;
}

/* Day Filter Tabs for Mobile (< 992px) */
.schedule-tabs {
  display: none;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  .schedule-tabs {
    display: flex;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .schedule-day-col {
    display: none;
  }
  .schedule-day-col.active {
    display: flex;
  }
}

.schedule-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.schedule-tab-btn.active {
  background: var(--bg-dark-container);
  color: var(--text-light);
  border-color: var(--bg-dark-container);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  font-size: 0.95rem;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(198, 188, 177, 0.4);
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  color: var(--accent-clay);
  flex-shrink: 0;
}

/* Map & Location Section */
.location-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .location-card {
    grid-template-columns: 1fr 1.1fr;
  }
}

.location-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.location-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent-clay);
  margin-top: 2px;
  flex-shrink: 0;
}

.location-map {
  width: 100%;
  min-height: 420px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* Footer */
.footer {
  background-color: var(--bg-dark-container);
  color: var(--text-light);
  padding: 5rem 0 3rem 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--text-light-muted);
  max-width: 380px;
  font-size: 0.975rem;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-clay);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Mobile Anti-Slop High-End Responsive Overrides (Max Width 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 0 !important;
  }

  .navbar-container {
    padding: 0 1rem;
  }

  .logo-img {
    height: 38px !important;
  }

  .navbar-actions .btn-olive-mobile-hide {
    display: none !important;
  }

  .navbar-actions .btn {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.775rem !important;
  }

  .hero-cinematic {
    padding: 4.5rem 0.65rem 1rem 0.65rem !important;
  }

  .hero-cinematic-card {
    min-height: 80vh !important;
    border-radius: 20px !important;
  }

  .hero-cinematic-logo-badge {
    display: none !important; /* Elimina la insignia flotante redundante que tapaba a la instructora en celular */
  }

  .hero-cinematic-overlay {
    background: linear-gradient(
      180deg,
      rgba(49, 51, 64, 0.10) 0%,
      rgba(49, 51, 64, 0.35) 40%,
      rgba(49, 51, 64, 0.92) 100%
    ) !important;
  }

  .hero-cinematic-content {
    padding: 1.75rem 1.25rem !important;
  }

  .hero-cinematic-title {
    font-size: 2.1rem !important;
    line-height: 1.18 !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }

  .hero-cinematic-subtitle {
    font-size: 0.925rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.95;
  }

  .hero-cinematic-actions {
    flex-direction: column !important;
    gap: 0.65rem !important;
    width: 100% !important;
  }

  .hero-cinematic-actions .btn {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
    text-align: center;
  }

  .quote-banner {
    padding: 1.75rem 1rem !important;
  }

  .quote-text {
    font-size: 1.4rem !important;
  }

  .quote-author {
    font-size: 0.725rem !important;
  }

  .section-spacing {
    padding: 3.5rem 0 !important;
  }

  .section-title {
    font-size: 1.85rem !important;
  }

  .section-desc {
    font-size: 0.925rem !important;
  }
}

/* Impeccable Mobile Navigation Drawer Component */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(216, 207, 197, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 30px rgba(49, 51, 64, 0.12);
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  pointer-events: none;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(78, 71, 64, 0.15);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--accent-clay);
  padding-left: 0.5rem;
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* Reservation and first-visit refinements. */
:root { --accent-ink: #75603b; }
::selection { background: #B59F72; color: #232530; }
:focus-visible { outline: 3px solid var(--accent-ink); outline-offset: 5px; }
a { text-underline-offset: 0.22em; }
[hidden] { display: none !important; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 2000; background: var(--bg-card); color: var(--text-main); padding: 1rem; }
.skip-link:focus { top: 1rem; }
.reveal, .reveal.active { opacity: 1; transform: none; transition: none; will-change: auto; }
.hero-cinematic-logo-badge { display: none; }
.hero-cinematic-title { text-wrap: balance; }
.hero-cinematic-subtitle { max-width: 48ch; }
.btn-clay { background: var(--accent-clay); color: #232530; }
.btn-clay:hover { background: #c8b586; color: #232530; }
.text-clay, .quote-author, .service-badge, .schedule-instructor, .pricing-card .price { color: var(--accent-ink); }
.pricing-card.featured .price, .pricing-card.featured .service-badge { color: #d9c492; }
.pricing-card.featured .price span { color: var(--text-light); }
.service-reserve, .text-link { color: var(--accent-ink); font-weight: 600; text-decoration: underline; }
.service-reserve { display: inline-flex; align-items: center; min-height: 44px; }
.service-card, .pricing-card, .location-card { box-shadow: none; }
.service-card:hover, .pricing-card:hover { transform: none; box-shadow: none; }
.schedule-container { background: transparent; border: 0; border-radius: 0; box-shadow: none; padding: 2rem 0 0; }
.schedule-card, .schedule-card:hover { background: transparent; box-shadow: none; transform: none; border: 0; border-bottom: 1px solid var(--border-color); border-radius: 0; }
.schedule-time, .price { font-variant-numeric: tabular-nums; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.plans-grid .pricing-card-slide { min-width: 0; }
.plans-grid .pricing-card { min-height: 0; border-radius: 16px; padding: 2rem 1.5rem; }
.plans-grid .pricing-card h3 { font-size: 2rem; }
.plans-grid .pricing-card .btn { width: 100%; text-align: center; }
.all-plans { margin-top: 2rem; border-top: 1px solid var(--border-color); }
.all-plans > summary { padding: 1.25rem 0; font-weight: 600; }
.all-plans[open] > summary { margin-bottom: 1rem; }
summary { cursor: pointer; min-height: 48px; }
.first-visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.instructors { margin: 2rem 0; }
.instructors > div { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.instructors dt { font-family: var(--font-serif); font-size: 1.75rem; }
.instructors dd { align-self: center; text-align: right; color: var(--text-muted); font-size: 0.9rem; }
.first-visit-faq details { border-bottom: 1px solid var(--border-color); padding: 0.8rem 0; }
.first-visit-faq summary { padding: 0.5rem 0; font-weight: 600; }
.first-visit-faq p { margin: 0.5rem 0 1rem; max-width: 65ch; color: var(--text-muted); }
.mobile-nav-drawer { visibility: hidden; max-height: calc(100dvh - 60px); overflow-y: auto; }
.mobile-nav-drawer.open { visibility: visible; }
.mobile-menu-btn { width: 44px; height: 44px; }
@media (max-width: 1100px) { .navbar .nav-links { display: none; } .mobile-menu-btn { display: flex; } }
@media (max-width: 991px) {
  html:not(.enhanced) .schedule-day-col { display: flex; }
  html:not(.enhanced) .schedule-tabs { display: none; }
  .first-visit-grid { gap: 3rem; }
}
@media (max-width: 767px) {
  .plans-grid, .first-visit-grid { grid-template-columns: 1fr; }
  .plans-grid .pricing-card { padding: 1.75rem; }
  .pricing-features { margin-bottom: 1.25rem; }
  .hero-cinematic-card { min-height: 680px; min-height: 85svh !important; }
  .hero-cinematic-content { padding-top: 12rem !important; }
  .service-meta { flex-wrap: wrap; gap: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.pricing-card.featured h3 { color: var(--text-light); }
.pricing-card.featured .service-badge { background: transparent; border: 0; padding-left: 0; }
.hero-cinematic-overlay { background: linear-gradient(90deg, rgba(25,27,34,.62), rgba(25,27,34,.08)); }
@media (min-width: 768px) { .mobile-nav-drawer { top: 80px; max-height: calc(100dvh - 80px); } }

/* Client typography and preferred overall viewing scale. */
html { zoom: 0.9; width: 100%; max-width: none; }
body { max-width: none; }
.nav-link, .mobile-nav-link {
  font-family: 'Elvara', var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.015em;
}
.mobile-menu-btn { min-width: 49px; min-height: 49px; }
