/* Fuentes — font-display:swap evita texto invisible durante la carga */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Inter:wght@300;400;600&family=Syne:wght@700;800&display=swap&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789áéíóúñÁÉÍÓÚÑ¿¡');

/* Cleaned Comment */
:root {
  --c-black:   #040404;
  --c-surface: #0d0d0d;
  --c-panel:   rgba(22, 22, 22, 0.45);
  --c-border:  rgba(255,255,255,.07);
  --c-red:     #ff0040;
  --gradient-red: linear-gradient(135deg, #ff0040 0%, #cc0033 100%);
  --c-red-dim: rgba(255,0,64,.15);
  --c-white:   #ffffff;
  --c-gray:    rgba(255,255,255,.5);
  --c-gray2:   rgba(255,255,255,.25);
  --f-head: 'Syne', sans-serif;
  --f-body: 'Inter', sans-serif;
  --ease: cubic-bezier(.215,.61,.355,1);
  --t: .45s var(--ease);
}

.text-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
  color: transparent;
}

/* Cleaned Comment */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
  
/* Cleaned Comment */
.page-transition-curtain {
  position: fixed; inset: 0; z-index: 999999;
  background: var(--c-black);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
body.page-loaded .page-transition-curtain { opacity: 0; }
body.page-leaving .page-transition-curtain { opacity: 1; }
body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Cleaned Comment */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-black); }
::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 4px; }

/* Cleaned Comment */
/* Cleaned Comment */

/* Cleaned Comment */
.h-hero {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

/* Cleaned Comment */
.h1 {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .96;
  letter-spacing: -.025em;
}

/* Cleaned Comment */
.h2 {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.015em;
}

/* H3: card / subsection titles */
.h3 {
  font-family: var(--f-head);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.01em;
}

/* Cleaned Comment */
body { font-size: 15px; line-height: 1.65; }

p { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.85; }

/* Cleaned Comment */
.label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-red);
}

/* Cleaned Comment */
.wrap { max-width: 1440px; margin: auto; padding: 0 5vw; }

/* Cleaned Comment */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  /* Cleaned Comment */
  padding: .9rem 2.2rem;
  font-family: var(--f-head);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: var(--t);
  white-space: nowrap;
}
.btn-red { background: var(--gradient-red); color: var(--c-white); border: 1px solid rgba(255,0,64,0.3); }
.btn-red:hover {
  background: var(--c-white);
  color: var(--c-black);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255,0,64,.5);
}
.btn-ghost {
  border: 1px solid var(--c-border);
  color: var(--c-white);
}
.btn-ghost:hover {
  border-color: var(--c-white);
  background: var(--c-white);
  color: var(--c-black);
  transform: translateY(-3px);
}

/* Cleaned Comment */
.nav {
  position: fixed;
  top: 28px;
  left: 0; right: 0;
  z-index: 100;
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(35px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
/* Cleaned Comment */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: .3s;
}
.nav-logo-img:hover {
  opacity: 0.85;
}
/* Cleaned Comment */
.nav-logo span { color: var(--c-red); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gray);
  transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--c-white); }
/* Cleaned Comment */
.nav-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 480px) { .nav-cta .btn-ghost { display: none; } }

/* Cleaned Comment */
.hero {
  position: relative;
  /* Cleaned Comment */
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.3) saturate(1.4);
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(4,4,4,.6) 65%, var(--c-black) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 5vw 7vh;
  max-width: 1440px;
  margin: auto;
  width: 100%;
  /* Cleaned Comment */
  padding-right: min(25vw, 320px);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,0,64,.6); }
  50% { box-shadow: 0 0 0 8px rgba(255,0,64,0); }
}
.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Cleaned Comment */
.hero-stats {
  position: absolute;
  right: 5vw;
  bottom: 7vh;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: right;
  z-index: 1;
  min-width: 120px;
}
.hero-stat-num {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}
.hero-stat-label {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-top: .3rem;
}

/* Cleaned Comment */
.marquee-wrap {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
  padding: 1rem 0;
  background: var(--c-surface);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--f-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gray2);
  flex-shrink: 0;
}
.marquee-item span { color: var(--c-red); margin-right: 2.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Cleaned Comment */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cleaned Comment */
.classes-section { padding: 6rem 0; }

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 5vw 1.5rem;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.carousel > * {
  scroll-snap-align: start;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel:active { cursor: grabbing; }

/* Cleaned Comment */
.class-card {
  flex: 0 0 280px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--c-border);
  transition: transform var(--t), box-shadow var(--t), border-color .3s;
  cursor: pointer;
}
.class-card:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  border-color: var(--c-red);
  z-index: 2;
}
.class-card-thumb {
  position: absolute; inset: 0;
  overflow: hidden;
}
/* Cleaned Comment */
.class-card-thumb img,
.class-card-thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t), filter var(--t);
  filter: brightness(.45) saturate(1.3);
}
.class-card:hover .class-card-thumb img,
.class-card:hover .class-card-thumb video {
  transform: scale(1.08);
  filter: brightness(.65) saturate(1.5);
}
.class-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(4,4,4,.97));
}
.class-card-tag {
  display: inline-block;
  padding: .2rem .65rem;
  background: var(--c-red);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .55rem;
  font-family: var(--f-head);
}
.class-card-title {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: .35rem;
  letter-spacing: -.01em;
}
.class-card-meta {
  font-size: .7rem;
  color: var(--c-gray);
  letter-spacing: .02em;
}

/* Cleaned Comment */
.featured-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  border-top: 1px solid var(--c-border);
}
.featured-media {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}
.featured-media video,
.featured-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.48);
  transition: transform var(--t), filter var(--t);
}
.featured-section:hover .featured-media video,
.featured-section:hover .featured-media img {
  transform: scale(1.03);
  filter: brightness(.62);
}
.featured-info {
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4vw;
  border-left: 1px solid var(--c-border);
  gap: 1.5rem;
}
.featured-info .h1 { margin: .5rem 0; }
.featured-info p {
  color: var(--c-gray);
  max-width: 480px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .featured-section { grid-template-columns: 1fr; }
  .featured-media { height: 50vh; min-height: 300px; }
  .featured-info { border-left: none; border-top: 1px solid var(--c-border); }
}

/* Cleaned Comment */
.instructors-section { padding: 6rem 0; }
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1000px) { .instructors-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .instructors-grid { grid-template-columns: 1fr; } }

.instructor-card {
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: var(--t);
  display: block;
}
.instructor-card:hover {
  border-color: var(--c-red);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
/* Cleaned Comment */
.instructor-card-top {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}
.instructor-card-top img,
.instructor-card-top video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.6) brightness(.55);
  transition: filter var(--t), transform var(--t);
}
.instructor-card:hover .instructor-card-top img,
.instructor-card:hover .instructor-card-top video {
  filter: grayscale(0) brightness(.75);
  transform: scale(1.05);
}
.instructor-card-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--f-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(255,255,255,.35);
  z-index: 1;
}
.instructor-card-body { padding: 1.2rem 1.4rem; }
.instructor-card-body h3 {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .2rem;
}
.instructor-card-body span {
  font-size: .72rem;
  color: var(--c-gray);
  letter-spacing: .03em;
}

/* Cleaned Comment */
.pricing-section { padding: 6rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 5vw;
}
.pricing-card {
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--c-border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.pricing-card.featured {
  border-color: var(--c-red);
  background: linear-gradient(160deg, rgba(255,0,64,.06), var(--c-panel));
}
/* Cleaned Comment */
.pricing-card.featured::after {
  content: 'MEJOR VALOR';
  position: absolute;
  top: 0; right: 0;
  background: var(--c-red);
  padding: .4rem 1.2rem;
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
}
.pricing-plan {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gray);
  font-family: var(--f-head);
}
.pricing-price {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.pricing-price sub {
  font-size: 1rem;
  vertical-align: middle;
  opacity: .45;
  font-weight: 400;
  letter-spacing: 0;
}
.pricing-perks { display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.pricing-perk {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.pricing-perk::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--c-red-dim);
  border: 1px solid var(--c-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff0040'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: auto; }
}

/* Cleaned Comment */
.brand-strip {
  padding: 2.5rem 5vw;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand-name {
  font-family: var(--f-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .2;
  transition: opacity .3s;
}
.brand-name:hover { opacity: .5; }

/* Cleaned Comment */
footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 5rem 5vw 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .86rem;
  line-height: 1.85;
  max-width: 270px;
  margin-bottom: 1.5rem;
}
.footer-col-brand .footer-logo { height: 75px; width: auto; margin-bottom: 1.5rem; }
.social-row { display: flex; gap: .75rem; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  color: var(--c-gray);
}
.social-btn:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col h5 {
  font-family: var(--f-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.35);
}
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul li a {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--c-white); }
.footer-newsletter input {
  width: 100%;
  padding: .9rem 1.2rem;
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--c-border);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: .85rem;
  outline: none;
  transition: border .3s;
  margin-bottom: .75rem;
}
.footer-newsletter input::placeholder { color: var(--c-gray2); }
.footer-newsletter input:focus { border-color: var(--c-red); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.2);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--c-gray2); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--c-white); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-top { grid-template-columns: 1fr; } }

/* Cleaned Comment */
/* Cleaned Comment */
.catalog-hero {
  padding: 11rem 5vw 4rem;
  border-bottom: 1px solid var(--c-border);
}
.filter-bar {
  display: flex;
  gap: .75rem;
  padding: 1.5rem 5vw;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  /* Cleaned Comment */
  top: 96px;
  z-index: 50;
  background: var(--c-black);
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  padding: .55rem 1.3rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--c-border);
  color: var(--c-gray);
  transition: var(--t);
  cursor: pointer;
  background: none;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

/* Cleaned Comment */
.video-class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 3rem 5vw 5rem;
}
.video-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: border-color .3s, transform var(--t);
}
.video-card:hover {
  border-color: var(--c-red);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.video-card video,
.video-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t), filter var(--t);
  filter: brightness(.38) saturate(1.3);
}
.video-card:hover video,
.video-card:hover img {
  transform: scale(1.06);
  filter: brightness(.6) saturate(1.5);
}
.video-card-body {
  position: absolute; inset: auto 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(4,4,4,.95));
}
.video-card-body .label { margin-bottom: .35rem; display: block; }
.video-card-body h3 {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .3rem;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.video-card-body p {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
/* Cleaned Comment */
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.video-card:hover .video-play { opacity: 1; }

/* Cleaned Comment */
.teacher-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Cleaned Comment */
  min-height: 75vh;
  border-bottom: 1px solid var(--c-border);
}
/* Cleaned Comment */
.teacher-feature.reverse .teacher-media { order: 2; }
.teacher-feature.reverse .teacher-info  { order: 1; }

.teacher-media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.teacher-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.4) brightness(.52);
  transition: filter var(--t), transform var(--t);
}
.teacher-feature:hover .teacher-media img {
  filter: grayscale(0) brightness(.72);
  transform: scale(1.03);
}
.teacher-media-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.teacher-feature:hover .teacher-media-overlay { opacity: 1; }
.play-circle {
  background: rgba(255,0,64,.9);
  border-radius: 50%;
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
}
.teacher-info {
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-left: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Cleaned Comment */
  padding: 4rem 3.5vw;
  gap: 1.25rem;
}
/* Cleaned Comment */
.teacher-feature.reverse .teacher-info {
  border-left: none;
  border-right: 1px solid var(--c-border);
}
.teacher-info p {
  color: rgba(255,255,255,.58);
  max-width: 500px;
  line-height: 1.9;
  font-size: .95rem;
}
.teacher-stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.teacher-stat .n {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-red);
  display: block;
  line-height: 1;
}
.teacher-stat .s {
  font-size: .62rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .25rem;
  display: block;
}

@media (max-width: 900px) {
  .teacher-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .teacher-feature .teacher-media { height: 55vw; min-height: 280px; }
  .teacher-feature.reverse .teacher-media { order: 0; }
  .teacher-feature.reverse .teacher-info  { order: 0; }
  .teacher-info { border-left: none !important; border-right: none !important; border-top: 1px solid var(--c-border); padding: 2.5rem 5vw; }
}

/* Cleaned Comment */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cleaned Comment */
.counter-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.counter-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--c-red);
  line-height: 1;
  display: block;
  margin-bottom: .35rem;
}
.counter-label {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
@media (max-width: 700px) {
  .counter-strip { grid-template-columns: repeat(2,1fr); }
  .counter-item { border-bottom: 1px solid var(--c-border); }
}

/* Cleaned Comment */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  padding: 5rem 5vw;
}
.prog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--c-border);
  transition: border-color .4s, transform .4s;
  background: var(--c-panel); backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
}
.prog-card:hover { border-color: var(--c-red); transform: translateY(-4px); }
.prog-card video, .prog-card img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(.42);
  transition: filter .5s, transform .5s;
  display: block;
}
.prog-card:hover video, .prog-card:hover img {
  filter: brightness(.65);
  transform: scale(1.04);
}
.prog-card-body { padding: 1.5rem; }
.prog-card-title {
  font-family: var(--f-head);
  font-size: 1.1rem;
  margin-bottom: .35rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.prog-card-meta {
  font-size: .74rem;
  color: rgba(255,255,255,.48);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.prog-play-btn {
  position: absolute;
  /* Cleaned Comment */
  top: 0; left: 0; right: 0;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.prog-card:hover .prog-play-btn { opacity: 1; }

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

/* Cleaned Comment */
.testimonials-section { padding: 6rem 5vw; background: #080808; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.test-card {
  padding: 2rem;
  background: #111;
  border: 1px solid var(--c-border);
  transition: border-color .3s;
}
.test-card:hover { border-color: var(--c-red); }
.test-stars {
  color: var(--c-red);
  font-size: .85rem;
  margin-bottom: .85rem;
  letter-spacing: .12em;
}
.test-text {
  font-size: .86rem;
  color: rgba(255,255,255,.58);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.test-author {
  font-family: var(--f-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.test-role {
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  margin-top: .2rem;
  letter-spacing: .04em;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Cleaned Comment */
.pricing-hero { text-align: center; }
.pricing-hero .h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }

/* Cleaned Comment */
/* Cleaned Comment */
:root { --nav-h: 64px; --chrome-h: 64px; }

#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(4,4,4,0);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
#main-nav.scrolled {

  background: rgba(4,4,4,.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
#main-nav .nav-logo { display:flex; align-items:center; flex-shrink:0; text-decoration:none; }
#main-nav .nav-logo-img { height: 90px; width: auto; max-width: 320px; object-fit: contain; display: block; transition: .3s; }
#main-nav .nav-logo-img:hover { opacity: 0.85; transform: scale(1.02); }
#nav-links { display:flex; gap:2rem; }
#nav-links a {
  font-family: var(--f-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}
#nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: #ff0040;
  transition: right .3s;
}
#nav-links a:hover, #nav-links a.active { color: #fff; }
#nav-links a:hover::after, #nav-links a.active::after { right: 0; }
.nav-reservar-btn {
  background: #ff0040;
  color: #fff !important;
  padding: .55rem 1.4rem;
  font-family: var(--f-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  display: inline-block;
  white-space: nowrap;
}
.nav-reservar-btn:hover { background: #fff; color: #000 !important; }
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Cleaned Comment */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  transition: .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Cleaned Comment */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,4,4,.98);
  z-index: 9990;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { 
  display: flex;
}
.mobile-nav a {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}
.mobile-nav a:hover { color: #ff0040; }

/* Cleaned Comment */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 5rem 5vw 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  height: 50px; width: auto; object-fit: contain;
  display: block; margin-bottom: 1.25rem;
  opacity: .85;
}
.footer-tagline {
  color: rgba(255,255,255,.38);
  font-size: .82rem;
  line-height: 1.85;
  max-width: 250px;
  margin-bottom: 1.25rem;
}
.footer-notice {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,0,64,.7);
  background: rgba(255,0,64,.06);
  border: 1px solid rgba(255,0,64,.12);
  padding: .6rem 1rem;
  max-width: fit-content;
}
.footer-col-title {
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .25s;
}
.footer-links a:hover { color: #fff; }
.footer-social a {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.footer-social a:hover { color: #ff0040 !important; }
.footer-legal-note {
  margin-top: 1.5rem;
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  line-height: 1.7;
}
.footer-legal-note a { color: #ff0040; text-decoration: none; }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .7rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .04em;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: rgba(255,255,255,.2);
  text-decoration: none;
  transition: color .25s;
}
.footer-bottom-links a:hover { color: #fff; }

/* Cleaned Comment */
.instructor-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  cursor: pointer;
}
.instructor-card:hover {
  border-color: #ff0040;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,0,64,.12);
}
.instructor-card-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0a0a0a;
}
.instructor-card-media video,
.instructor-card-media img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.35) brightness(.55);
  transition: filter .5s, transform .5s;
}
.instructor-card:hover .instructor-card-media video,
.instructor-card:hover .instructor-card-media img {
  filter: grayscale(0) brightness(.72);
  transform: scale(1.04);
}
.instructor-card-tags {
  position: absolute;
  top: 1rem; left: 1rem;
  display: flex; gap: .4rem; flex-wrap: wrap;
}
.instructor-tag {
  background: rgba(255,0,64,.85);
  font-family: var(--f-head);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  backdrop-filter: blur(4px);
}
.instructor-card-body { padding: 1.25rem 1.5rem; }
.instructor-card-name {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .25rem;
}
.instructor-card-role {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.instructor-card-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  padding: .6rem;
  font-family: var(--f-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s;
  margin-top: .85rem;
  text-align: center;
  text-decoration: none;
}
.instructor-card-btn:hover { background: #ff0040; border-color: #ff0040; color: #fff; }

/* Cleaned Comment */
.terms-gate {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 0;
}
.terms-gate label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  cursor: pointer;
}
.terms-gate input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #ff0040;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.terms-gate a { color: #ff0040; }
.btn-locked {
  opacity: .35;
  pointer-events: none;
  cursor: not-allowed;
}

/* Cleaned Comment */
#global-cursor {
  width: 10px; height: 10px;
  background: #ff0040;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: transform .1s, width .3s, height .3s;
}
#global-cursor.hover { width: 36px; height: 36px; }

/* Cleaned Comment */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem 1.5rem;
  padding: 4rem 5vw;
}
.teacher-grid-card {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  cursor: pointer;
}
.teacher-grid-card .card-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.teacher-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  transition: .4s cubic-bezier(.16,1,.3,1);
}
.teacher-grid-card:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}
.teacher-grid-card h3 {
  font-family: var(--f-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

/* Cleaned Comment */
@media (max-width: 900px) {
  #nav-links { display: none; }
  .nav-reservar-btn { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col-brand { grid-column: 1; }
}

/* Cleaned Comment */
.bk-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  backdrop-filter: blur(4px);
}
.bk-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.bk-modal {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  width: 100%;
  max-width: 460px;
  position: relative;
  animation: modalSlideIn .4s cubic-bezier(.16,1,.3,1) both;
}
@keyframes modalSlideIn {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.bk-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: .25s;
  z-index: 2;
}
.bk-modal-close:hover { background: #ff0040; border-color: #ff0040; color: #fff; }
.bk-modal-head {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.bk-modal-head-label {
  font-family: var(--f-head);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ff0040;
  margin-bottom: .4rem;
}
.bk-modal-head-title {
  font-family: var(--f-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.bk-modal-price {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  color: #ff0040;
  margin-top: .35rem;
}
.bk-modal-body { padding: 1.5rem 2rem 2rem; }

/* Cleaned Comment */
.terms-gate {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.terms-gate label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  cursor: pointer;
}
.terms-gate input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #ff0040;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.terms-gate a { color: #ff0040; text-decoration: underline; }
.btn-locked {
  opacity: .28 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}
.bk-modal-proceed {
  width: 100%;
  background: #ff0040;
  color: #fff;
  border: none;
  padding: 1rem;
  font-family: var(--f-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}
.bk-modal-proceed:hover:not(.btn-locked) { background: #fff; color: #000; }
.bk-modal-disclaimer {
  margin-top: .75rem;
  font-size: .68rem;
  color: rgba(255,255,255,.22);
  text-align: center;
  line-height: 1.6;
}
.bk-modal-disclaimer a { color: #ff0040; text-decoration: none; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AUTH MODAL (Login / Register)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#auth-modal .bk-modal { max-width: 420px; }
.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.auth-tab {
  flex: 1;
  padding: 1.1rem;
  background: transparent;
  border: none;
  font-family: var(--f-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  cursor: pointer;
  transition: .25s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.auth-tab.active { color: #fff; border-bottom-color: #ff0040; }
.auth-tab:hover { color: rgba(255,255,255,.7); }
.auth-panel { display: none; padding: 1.75rem 2rem 2rem; }
.auth-panel.active { display: block; }
.auth-field { margin-bottom: 1.1rem; }
.auth-field label {
  display: block;
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .5rem;
}
.auth-field input {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  padding: .8rem 1rem;
  font-family: var(--f-body);
  font-size: .88rem;
  outline: none;
  transition: border .25s;
  box-sizing: border-box;
}
.auth-field input:focus { border-color: #ff0040; }
.auth-field input::placeholder { color: rgba(255,255,255,.22); }
.auth-submit {
  width: 100%;
  background: #ff0040;
  color: #fff;
  border: none;
  padding: .9rem;
  font-family: var(--f-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  margin-top: .5rem;
}
.auth-submit:hover { background: #fff; color: #000; }
.auth-divider {
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.2);
  margin: 1rem 0;
  position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%; width: 38%;
  height: 1px;
  background: rgba(255,255,255,.07);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-switch {
  text-align: center;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  margin-top: 1.1rem;
}
.auth-switch a { color: #ff0040; cursor: pointer; text-decoration: underline; }
.nav-login-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
  padding: .45rem 1rem;
  font-family: var(--f-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
  white-space: nowrap;
}
.nav-login-btn:hover { border-color: #ff0040; color: #fff; }

/* Cleaned Comment */
.schedule-filter-bar {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 5vw 0;
  background: #040404;
}
.schedule-filter-bar .filter-select-wrap {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.schedule-filter-bar label {
  font-family: var(--f-head);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.schedule-filter-bar select {
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  padding: .6rem 2.5rem .6rem 1rem;
  font-family: var(--f-body);
  font-size: .82rem;
  outline: none;
  cursor: pointer;
  transition: border .25s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  min-width: 180px;
}
.schedule-filter-bar select:focus { border-color: #ff0040; }
.schedule-filter-bar select option { background: #111; color: #fff; }
.filter-reset-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.35);
  padding: .6rem 1rem;
  font-family: var(--f-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
  align-self: flex-end;
}
.filter-reset-btn:hover { border-color: #ff0040; color: #ff0040; }
.class-row.filtered-out { display: none; }


/* Cleaned Comment */
.floating-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}
.floating-wa:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
.floating-wa svg {
  fill: #fff;
  width: 35px;
  height: 35px;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.packages-grid > .package-card { width: 100%; max-width: 350px; }

/* Cleaned Comment */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--c-red);
  color: #fff;
  padding: .9rem 2rem;
  font-family: var(--f-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(100px);
  opacity: 0;
  transition: all .5s cubic-bezier(.23,1,.32,1);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

.modal-video-overlay {
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  backdrop-filter: blur(12px);
}
.modal-video-overlay.open { opacity: 1; pointer-events: all; }
.modal-video-box {
  width: min(92vw, 1000px);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  transform: scale(.95);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.modal-video-overlay.open .modal-video-box { transform: scale(1); }
.modal-video-content { width: 100%; aspect-ratio: 16/9; background: #000; display: block; }
.modal-video-info { padding: 1.25rem 2rem 1.75rem; }
.modal-video-info h3 { font-family: var(--f-head); font-size: 1.3rem; margin-bottom: .3rem; }
.modal-video-info p { color: var(--c-gray); font-size: .85rem; }
.modal-video-close {
  position: absolute; top: 0; right: -50px;
  width: 44px; height: 44px;
  background: var(--c-red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.modal-video-close:hover { background: #fff; color: #000; }

@media (max-width: 1100px) {
  .modal-video-close { right: 0; top: -44px; }
}

/* Cleaned Comment */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.visible > *:nth-child(n) { opacity: 1; transform: translateY(0); }

/* Cleaned Comment */
.premium-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.premium-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--c-red);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.premium-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}



/* Cleaned Comment */
.instructor-card-media img, .video-card-thumb img {
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.instructor-card:hover .instructor-card-media img, .video-card:hover .video-card-thumb img {
  transform: scale(1.05) !important;
}


/* Cleaned Comment */
.brand-strip {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow: hidden !important;
  justify-content: flex-start !important;
}
.brand-name {
  animation: marquee 20s linear infinite !important;
  min-width: 250px;
  text-align: center;
}
@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100vw); }
}




/* Cleaned Comment */
.empty-section { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════ */

/* Defer rendering of off-screen sections (big speed win) */
.instructor-card,
.video-card,
.vcard,
.dancer-section,
.pricing-card,
.teacher-card {
  content-visibility: auto;
  contain-intrinsic-size: 0 300px;
}

/* GPU-accelerate animated elements to avoid repaints */
.marquee-track,
.live-ticker-track {
  will-change: transform;
  transform: translateZ(0);
}

.reveal {
  will-change: transform, opacity;
}
.reveal.visible {
  will-change: auto; /* release after animation */
}

/* Smoother image transitions without triggering layout */
img {
  display: block;
  max-width: 100%;
}
img, video {
  /* Prevent layout shift while loading */
  background: #0a0a0a;
}

/* Prevent invisible text during font load */
.h1, .h2, h1, h2, h3,
.nav-logo, .brand-name,
.counter-num, .hero-stat-num,
.label, .filter-btn, .filter-chip,
.btn, .btn-red, .btn-ghost {
  font-display: swap;
}

/* Fast tap on mobile */
a, button {
  touch-action: manipulation;
}

/* Reduce paint area for cards with hover effects */
.nivel-card,
.style-tile,
.instructor-card,
.teacher-card,
.pricing-card,
.vcard {
  isolation: isolate;
  transform: translateZ(0);
}


/* Custom Text Logo */
.custom-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  padding: 5px 10px;
  transition: transform 0.3s;
}
.custom-logo:hover {
  transform: scale(1.03);
}
.custom-logo-bkstge {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #ffca63;
  text-shadow: 0 0 8px rgba(255, 202, 99, 0.6), 2px 2px 4px rgba(0,0,0,0.8);
  margin-bottom: -12px;
  z-index: 2;
}
.custom-logo-sessions {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 2rem;
  color: #5ce6e6;
  text-shadow: 0 0 10px rgba(92, 230, 230, 0.8), 2px 2px 3px rgba(0,0,0,0.8);
  margin-left: 60px;
  transform: rotate(-5deg);
  z-index: 3;
}
/* Adjust for mobile */
@media (max-width: 768px) {
  .custom-logo-bkstge { font-size: 1.6rem; letter-spacing: 2px; margin-bottom: -8px; }
  .custom-logo-sessions { font-size: 1.4rem; margin-left: 30px; }
}
