/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #FF3E9A;
  --purple: #8B2FC9;
  --violet: #6B2FD6;
  --lilac: #E3C2F5;
  --neon: #E4FF3C;
  --dark: #170821;
  --ink: #1A1425;
  --grad-main: linear-gradient(135deg, var(--pink), var(--purple) 55%, var(--violet));
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { position: relative; padding: 96px 0; overflow: hidden; scroll-margin-top: 76px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 40px;
  max-width: 800px;
}

.pill-highlight {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 2px 18px;
  border-radius: 999px;
  font-weight: 800;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-neon {
  background: var(--neon);
  color: #111;
  box-shadow: 0 8px 24px rgba(228, 255, 60, 0.4);
}
.btn-neon:hover { box-shadow: 0 12px 30px rgba(228, 255, 60, 0.55); }

.btn-neon-pulse { animation: neonPulse 2.4s ease-in-out infinite; }
.btn-neon-pulse:hover { animation-play-state: paused; }
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(228, 255, 60, 0.4); }
  50% { box-shadow: 0 10px 36px rgba(228, 255, 60, 0.8); }
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-block { width: 100%; }

.tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.tag-neon { background: var(--neon); color: #111; }

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--pink);
  color: var(--neon);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease;
}
.logo:hover .logo-badge { transform: scale(1.08) rotate(-3deg); }
.logo-sub {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple);
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: 0.88rem;
  flex-wrap: nowrap;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--pink); }
.main-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-pill { background: #25D366; }
.whatsapp-pill:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
}

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--purple);
  transition: background 0.2s ease, color 0.2s ease;
}
.social-icons a:hover { background: var(--purple); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-img {
  position: absolute;
  inset: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,8,33,0.55) 0%, rgba(23,8,33,0.75) 100%),
    linear-gradient(135deg, rgba(255,62,154,0.55), rgba(139,47,201,0.5) 55%, rgba(107,47,214,0.6));
  mix-blend-mode: multiply;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
}
.blob-a {
  width: 420px; height: 420px;
  background: var(--pink);
  top: -120px; left: -100px;
  animation: floatA 11s ease-in-out infinite;
}
.blob-b {
  width: 380px; height: 380px;
  background: var(--violet);
  bottom: -140px; right: -80px;
  animation: floatB 13s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 76px;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 20px 0 16px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 480px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 2;
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== DECORATIVE BLOBS (sections) ===== */
.blob {
  position: absolute;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(2px);
  opacity: 0.5;
  z-index: 0;
  animation: blobMorph 14s ease-in-out infinite, blobDrift 16s ease-in-out infinite;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, 20px); }
}
.blob-lilac { background: var(--lilac); }
.blob-pink { background: linear-gradient(135deg, var(--pink), var(--lilac)); }
.blob-purple { background: linear-gradient(135deg, var(--violet), var(--lilac)); }

.blob-top-right { width: 460px; height: 460px; top: -180px; right: -160px; }
.blob-mid-left { width: 420px; height: 420px; top: 10%; left: -220px; }
.blob-bottom-right { width: 480px; height: 480px; bottom: -200px; right: -200px; }

/* ===== ESTILO (Dance Fusion) ===== */
.styles-section { background: #fff; }

.style-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.style-feature-text p { margin-bottom: 16px; color: #4a3f57; }

.turma-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.turma-tag {
  background: var(--lilac);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.turma-tag:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 20px rgba(255, 62, 154, 0.35);
}

.style-feature-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
}
.style-feature-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.style-feature-img:hover img { transform: scale(1.06); }

.style-tint {
  position: absolute; inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.tint-1 { background: linear-gradient(160deg, var(--pink), var(--violet)); }
.tint-2 { background: linear-gradient(160deg, var(--violet), var(--purple)); }
.tint-3 { background: linear-gradient(160deg, var(--purple), var(--pink)); }
.tint-4 { background: linear-gradient(160deg, var(--lilac), var(--purple)); }

/* ===== ESPETÁCULOS ===== */
.shows-section { background: linear-gradient(180deg, #fff, #FBF1FF); }

.shows-intro { color: #4a3f57; max-width: 640px; margin-top: -20px; margin-bottom: 36px; }

.shows-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.show-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  isolation: isolate;
}
.show-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.show-card:hover img { transform: scale(1.06); }
.show-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 55%);
}
.shows-grid .show-card:nth-child(1) { transition-delay: 0s; }
.shows-grid .show-card:nth-child(2) { transition-delay: 0.12s; }
.shows-grid .show-card:nth-child(3) { transition-delay: 0.24s; }
.shows-grid .show-card:nth-child(4) { transition-delay: 0.36s; }

.play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 2;
  transition: transform 0.3s ease;
  animation: playPulse 2.4s ease-in-out infinite;
}
.show-card:hover .play-icon { transform: translate(-50%, -50%) scale(1.15); animation-play-state: paused; }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

.show-name {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.youtube-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF0000;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  transition: opacity 0.7s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.youtube-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,0,0,0.35); }

/* ===== SOBRE ===== */
.about-section { background: linear-gradient(180deg, #fff, #FBF1FF); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text p { margin-bottom: 16px; color: #4a3f57; }

.about-highlight { display: flex; justify-content: center; }

.blob-shape {
  width: 300px; height: 300px;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  background: linear-gradient(135deg, var(--pink), var(--purple) 45%, var(--violet) 70%, var(--pink));
  background-size: 220% 220%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 30px;
  animation: blobMorph 9s ease-in-out infinite, blobFloat 6s ease-in-out infinite, blobGradient 10s ease infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; }
  50% { border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%; }
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes blobGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.about-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
}
.about-label-main {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: -2px;
}

.about-chips { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.about-chip {
  background: rgba(255,255,255,0.22);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s ease;
}
.about-highlight.in-view .about-chip { opacity: 1; transform: translateY(0) scale(1); }
.about-chip:hover { background: #fff; color: var(--purple); transform: translateY(-3px) scale(1.08); }
.about-chip:nth-child(1) { transition-delay: 0.1s; }
.about-chip:nth-child(2) { transition-delay: 0.28s; }
.about-chip:nth-child(3) { transition-delay: 0.46s; }

.about-tagline {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
}

/* ===== PROFESSORES ===== */
.teachers-section { background: #fff; }

.teachers-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.teacher-card {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 32px 20px;
  box-shadow: 0 10px 30px rgba(139, 47, 201, 0.08);
  transition: opacity 0.7s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.teacher-card:hover { transform: translateY(-8px); box-shadow: 0 16px 34px rgba(139, 47, 201, 0.18); }

.teacher-avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.35s ease;
}
.teacher-card:hover .teacher-avatar { transform: scale(1.08) rotate(-5deg); }
.avatar-1 { background: linear-gradient(135deg, var(--pink), var(--violet)); }
.avatar-2 { background: linear-gradient(135deg, var(--violet), var(--purple)); }
.avatar-3 { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.avatar-4 { background: linear-gradient(135deg, var(--lilac), var(--violet)); }

.teacher-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.teacher-card p { color: #6b6076; font-size: 0.9rem; }

.teachers-grid-single { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
.teachers-grid-single .teacher-avatar { width: 112px; height: 112px; font-size: 1.8rem; }

/* ===== PRECOS / HORARIOS ===== */
.pricing-section { background: linear-gradient(180deg, #FBF1FF, #fff); }

.horario-days {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 20px;
}

.horario-day-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple);
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-align: center;
}

.horario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.horario-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 47, 201, 0.08);
}

.horario-time {
  display: inline-block;
  background: var(--ink);
  color: var(--neon);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.horario-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.horario-card p { color: #6b6076; font-size: 0.85rem; }

.horario-local {
  text-align: center;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 60px;
}

.pricing-title { margin-top: 20px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== TOGGLE (Ritmos Ladies) ===== */
.toggle-switch {
  display: flex;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 4px;
  margin: 16px 0;
  gap: 4px;
}
.toggle-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.toggle-btn.active { background: #fff; color: var(--purple); }

.price-hint {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.price-card {
  background: #fff;
  border: 2px solid #F1E4FA;
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: opacity 0.7s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(139, 47, 201, 0.2); }
.pricing-grid .price-card:nth-child(1) { transition-delay: 0s; animation-delay: 0s; }
.pricing-grid .price-card:nth-child(2) { transition-delay: 0.12s; animation-delay: 0.12s; }
.pricing-grid .price-card:nth-child(3) { transition-delay: 0.24s; animation-delay: 0.24s; }
.pricing-grid .price-card.in-view { animation: cardPopIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards; }

@keyframes cardPopIn {
  0% { transform: translateY(40px) scale(0.85); }
  55% { transform: translateY(-10px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

.price-icon {
  display: inline-block;
  font-size: 2.6rem;
  margin-bottom: 6px;
  transition: transform 0.4s ease;
}
.price-card:hover .price-icon { transform: scale(1.2) rotate(-10deg); }

.price-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--purple);
  margin-bottom: 8px;
}
.price small { font-size: 1rem; font-weight: 600; opacity: 0.65; margin-left: 2px; }

.price-card p { color: #6b6076; margin-bottom: 20px; font-size: 0.9rem; }

.price-card ul { margin-bottom: 28px; text-align: left; }
.price-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.88rem;
  color: #4a3f57;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.price-card.in-view ul li { opacity: 1; transform: translateX(0); }
.price-card ul li:nth-child(1) { transition-delay: 0.35s; }
.price-card ul li:nth-child(2) { transition-delay: 0.48s; }
.price-card ul li:nth-child(3) { transition-delay: 0.61s; }
.price-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--pink);
  font-weight: 800;
}

.price-card-featured {
  background: var(--grad-main);
  background-size: 200% 200%;
  border: none;
  transform: scale(1.04);
  animation: featuredGradient 6s ease infinite;
}
.pricing-grid .price-card-featured.in-view {
  animation: cardPopIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards, featuredGradient 6s ease infinite;
}
.price-card-featured:hover { transform: translateY(-10px) scale(1.04); }
.price-card-featured h3, .price-card-featured .price, .price-card-featured p, .price-card-featured ul li { color: #fff; }
.price-card-featured ul li::before { color: var(--neon); }
.price-card-featured::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: rotate(20deg);
  animation: shine 3.2s ease-in-out infinite;
}

@keyframes featuredGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes shine {
  0% { left: -60%; }
  40%, 100% { left: 130%; }
}

/* ===== CONTACTOS ===== */
.contact-section { background: var(--ink); color: #fff; }

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.contact-section .section-title { color: #fff; }

.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 10px; }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

.contact-form input, .contact-form select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form input::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select option { color: #111; }

.contact-form input:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--neon);
}

.form-hint {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.form-success {
  display: none;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(228,255,60,0.12);
  color: var(--neon);
  font-weight: 600;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

.contact-info h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 24px; font-size: 1.3rem; }
.contact-info p { margin-bottom: 22px; color: rgba(255,255,255,0.75); }
.contact-info p strong { display: block; color: #fff; margin-bottom: 4px; }
.contact-info a { color: var(--neon); }

.social-icons-dark a { background: rgba(255,255,255,0.08); color: #fff; gap: 8px; width: auto; padding: 10px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.social-icons-dark { gap: 14px; margin-top: 10px; }
.social-icons-dark a:hover { background: var(--pink); }

/* ===== FOOTER ===== */
.site-footer {
  background: #0F0617;
  color: rgba(255,255,255,0.6);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.logo-footer .logo-sub { color: var(--lilac); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .style-feature-grid { grid-template-columns: 1fr; }
  .style-feature-img { order: -1; }
  .horario-days { grid-template-columns: 1fr; gap: 24px; }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card-featured { transform: none; order: -1; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-highlight { order: -1; }
}

@media (max-width: 900px) {
  .main-nav { display: flex; }
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.open { transform: scaleY(1); opacity: 1; pointer-events: all; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid #f0e8f7; }
  .nav-toggle { display: flex; }
  .header-actions .social-icons { display: none; }

  .section { padding: 64px 0; }

  .horario-grid { grid-template-columns: 1fr; }
  .teachers-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; align-items: flex-start; }
}
