:root {
  --yellow: #f6e800;
  --orange: #ff8610;
  --lime: #c1da79;
  --blue: #59c3db;
  --pink: #ea72ad;
  --ink: #25242a;
  --cream: #fffdf3;
  --white: #ffffff;
  --radius-xl: 42px;
  --radius-lg: 28px;
  --shadow: 0 22px 60px rgba(37,36,42,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.cursor-blob {
  position: fixed;
  z-index: 9999;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(234,114,173,.35);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background .25s ease;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 84px;
  padding: 10px 14px 10px 16px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 16px 45px rgba(37,36,42,.11);
  transition: top .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { top: 10px; box-shadow: 0 16px 50px rgba(37,36,42,.17); }
.brand { width: 68px; height: 68px; border-radius: 50%; overflow: hidden; transition: transform .3s ease; }
.brand:hover { transform: rotate(-6deg) scale(1.05); }
.brand img { width: 100%; height: 100%; object-fit: cover; }
.main-nav { display: flex; align-items: center; gap: 34px; font-weight: 800; font-size: 15px; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 15px 23px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  box-shadow: 0 9px 0 var(--orange);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(4px); box-shadow: 0 5px 0 var(--orange); }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 10px; }
.menu-toggle span { display: block; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .3s; }

.section-pad { padding: 120px max(24px, calc((100vw - 1180px)/2)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}
.eyebrow::before { content: "✦"; color: var(--pink); }

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 170px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 22%, rgba(246,232,0,.22), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(89,195,219,.23), transparent 26%),
    linear-gradient(180deg, #fffdf3 0%, #fff9ed 100%);
}
.hero-copy { position: relative; z-index: 5; }
.hero h1 {
  margin: 25px 0 20px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--pink); position: relative; display: inline-block; }
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 2%;
  bottom: -12px;
  width: 78%;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  transform: rotate(-2deg);
  z-index: -1;
}
.hero p { max-width: 610px; font-size: 20px; line-height: 1.65; color: #5c5962; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 18px 25px; border-radius: 18px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 10px 0 #c64e8c; }
.btn-primary:hover { transform: translateY(5px); box-shadow: 0 5px 0 #c64e8c; }
.btn-soft { background: white; border: 2px solid #eee4dc; box-shadow: 0 10px 30px rgba(37,36,42,.08); }
.btn-soft:hover { transform: translateY(-3px) rotate(-1deg); }
.hero-badges { margin-top: 33px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges span { padding: 10px 14px; border-radius: 13px; background: rgba(255,255,255,.7); border: 1px solid rgba(37,36,42,.08); font-weight: 800; font-size: 14px; }

.hero-art { position: relative; min-height: 590px; z-index: 3; }
.logo-bubble {
  position: absolute;
  right: 8%;
  top: 0;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: white;
  padding: 7px;
  box-shadow: var(--shadow);
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}
.logo-bubble img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.kids-illustration { position: absolute; inset: 35px -40px auto -10px; width: calc(100% + 50px); height: auto; overflow: visible; }
.kid-one { animation: dance 3.5s ease-in-out infinite; transform-origin: 180px 500px; }
.kid-two { animation: bob 4.2s ease-in-out infinite; transform-origin: 370px 520px; }
.kid-three { animation: wave 3.7s ease-in-out infinite; transform-origin: 548px 518px; }
.floating-note { animation: note 4s ease-in-out infinite; transform-origin: center; }
.floating-star { animation: spin 8s linear infinite; transform-origin: 614px 160px; }
.floating-dot { animation: float 3s ease-in-out infinite; }

.hero-shape { position: absolute; border-radius: 50%; filter: blur(.2px); opacity: .9; }
.hero-shape-1 { width: 130px; height: 130px; background: var(--lime); left: -45px; top: 185px; animation: float 6s ease-in-out infinite; }
.hero-shape-2 { width: 78px; height: 78px; background: var(--orange); right: 9%; bottom: 80px; animation: float 5s ease-in-out infinite reverse; }
.hero-shape-3 { width: 38px; height: 38px; background: var(--blue); left: 48%; top: 160px; animation: float 4s ease-in-out infinite; }
.spark { position: absolute; font-size: 42px; z-index: 2; animation: pulse 2s ease-in-out infinite; }
.spark-1 { color: var(--pink); left: 4%; bottom: 90px; }
.spark-2 { color: var(--orange); right: 2%; top: 230px; animation-delay: .5s; }
.spark-3 { color: var(--blue); left: 48%; bottom: 105px; font-size: 25px; }
.scroll-hint { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); font-size: 12px; font-weight: 900; letter-spacing: .12em; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint span { width: 24px; height: 38px; border: 2px solid var(--ink); border-radius: 20px; position: relative; }
.scroll-hint span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ink); position: absolute; top: 7px; left: 50%; transform: translateX(-50%); animation: scroll 1.6s infinite; }

.ticker { background: var(--ink); color: white; transform: rotate(-1.1deg) scale(1.02); overflow: hidden; padding: 19px 0; position: relative; z-index: 5; }
.ticker-track { display: flex; width: max-content; align-items: center; font-size: 30px; font-weight: 900; animation: marquee 28s linear infinite; will-change: transform; }
.ticker-group { display: flex; flex-shrink: 0; width: max-content; min-width: 100vw; align-items: center; justify-content: space-around; gap: 28px; padding-right: 28px; }
.ticker-track i { color: var(--yellow); font-style: normal; flex: 0 0 auto; }
.ticker-track span { flex: 0 0 auto; }

.workshops { background: #fff; position: relative; }
.section-heading { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-heading h2, .experience-copy h2, .quote-inner h2, .cta h2 { font-size: clamp(42px, 5vw, 70px); line-height: 1.03; letter-spacing: -.045em; margin: 22px 0 18px; }
.section-heading h2 span, .experience-copy h2 span { color: var(--orange); }
.section-heading p { color: #66616c; font-size: 18px; line-height: 1.65; }
.workshop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.workshop-card { position: relative; min-height: 390px; border-radius: var(--radius-lg); padding: 28px; overflow: hidden; border: 2px solid rgba(37,36,42,.08); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.workshop-card::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: -85px; bottom: -90px; background: rgba(255,255,255,.35); transition: transform .35s ease; }
.workshop-card:hover { transform: translateY(-12px) rotate(-1deg); box-shadow: var(--shadow); }
.workshop-card:hover::after { transform: scale(1.5); }
.card-dance { background: #fff1f7; }
.card-ballet { background: #fff7e9; }
.card-paint { background: #eefaff; }
.card-theatre { background: #f5f9e8; }
.card-icon { width: 78px; height: 78px; border-radius: 24px; display: grid; place-items: center; font-size: 42px; background: white; box-shadow: 0 12px 25px rgba(37,36,42,.09); transition: transform .35s ease; }
.workshop-card:hover .card-icon { transform: rotate(8deg) scale(1.08); }
.card-icon img { width: 82%; height: 82%; object-fit: contain; display:block; }

.card-number { position: absolute; right: 24px; top: 26px; font-size: 32px; font-weight: 900; opacity: .17; }
.workshop-card h3 { font-size: 34px; margin: 34px 0 10px; }
.workshop-card p { color: #615d66; line-height: 1.65; min-height: 104px; }
.workshop-card a { display: inline-flex; align-items: center; gap: 9px; font-weight: 900; margin-top: 14px; }
.workshop-card a span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: white; transition: transform .25s ease; }
.workshop-card a:hover span { transform: rotate(45deg); }

.experience { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--cream); }
.experience-visual { position: relative; min-height: 620px; }
.photo-frame { position: absolute; inset: 40px 20px 40px 20px; border-radius: 48% 52% 45% 55% / 55% 43% 57% 45%; overflow: hidden; background: linear-gradient(145deg, #fff0b0, #ffd9ed); border: 12px solid white; box-shadow: var(--shadow); animation: morph 10s ease-in-out infinite; }
.scene-art { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(180deg, #bff0fa 0 56%, #f8f2d9 56%); }
.rainbow { position: absolute; width: 310px; height: 155px; border-radius: 310px 310px 0 0; border-style: solid; border-bottom: 0; left: 50%; transform: translateX(-50%); }
.r1 { border-width: 29px; border-color: var(--pink); top: 52px; }
.r2 { border-width: 29px; border-color: var(--orange); top: 80px; width: 254px; height: 128px; }
.r3 { border-width: 29px; border-color: var(--yellow); top: 108px; width: 198px; height: 100px; }
.r4 { border-width: 29px; border-color: var(--lime); top: 136px; width: 142px; height: 72px; }
.cloud { position: absolute; width: 100px; height: 35px; background: white; border-radius: 40px; top: 230px; }
.cloud::before,.cloud::after { content:""; position:absolute; background:white; border-radius:50%; }
.cloud::before { width:48px;height:48px;left:15px;bottom:10px; }
.cloud::after { width:58px;height:58px;right:8px;bottom:5px; }
.c1 { left: 42px; }.c2 { right: 35px; transform: scale(.8); }
.child-face { position: absolute; width: 150px; height: 160px; border-radius: 48% 52% 46% 54%; bottom: 30px; background: #d99b6c; box-shadow: inset 0 15px 0 rgba(255,255,255,.08); }
.child-face::before,.child-face::after { content:""; position:absolute; width:11px;height:11px;border-radius:50%;background:#29262c;top:68px; }
.child-face::before { left:43px; }.child-face::after { right:43px; }
.child-face i { position:absolute;width:45px;height:20px;border-bottom:5px solid #9f6047;border-radius:0 0 30px 30px;left:52px;top:91px; }
.face-one { left: 80px; transform: rotate(-5deg); }
.face-two { right: 72px; bottom: 12px; background: #f4ad78; transform: rotate(7deg); }
.face-one::after,.face-two::after { box-shadow: 0 -55px 0 45px #382820; }
.paint-splash { position:absolute; width:88px;height:88px;border-radius:43% 57% 65% 35%;background:var(--pink);right:20px;top:315px;transform:rotate(20deg); }
.big-circle { position: absolute; border-radius: 50%; }
.circle-pink { width: 180px; height: 180px; background: var(--pink); left: -35px; top: 0; }
.circle-blue { width: 120px; height: 120px; background: var(--blue); right: -15px; bottom: 10px; }
.mini-card { position: absolute; background: white; border-radius: 18px; padding: 15px 20px; box-shadow: var(--shadow); display:flex; flex-direction:column; z-index:5; animation: float 4.5s ease-in-out infinite; }
.mini-card strong { font-size: 17px; }.mini-card span { font-size: 12px; color:#74707a; margin-top:4px; }
.mini-card-one { left: -15px; bottom: 80px; border-left: 7px solid var(--orange); }
.mini-card-two { right: -10px; top: 110px; border-left: 7px solid var(--blue); animation-delay: .8s; }
.experience-copy p { color:#65616a; font-size:18px; line-height:1.7; }
.benefit-list { display:grid; gap:18px; margin-top:32px; }
.benefit-list > div { display:grid; grid-template-columns:52px 1fr; gap:16px; align-items:start; }
.benefit-list > div > span { width:52px;height:52px;border-radius:17px;background:var(--yellow);display:grid;place-items:center;font-weight:900; }
.benefit-list p { margin:0;font-size:15px; }
.benefit-list strong { display:block;color:var(--ink);font-size:18px;margin-bottom:4px; }

.quote-section { position:relative; overflow:hidden; text-align:center; background:var(--blue); color:#15343b; }
.quote-inner { max-width:900px; margin:auto; position:relative; z-index:3; }
.quote-mark { display:grid; place-items:center; width:70px;height:70px;margin:auto;border-radius:50%;background:white;font-size:65px;line-height:1;color:var(--pink);font-family:Georgia,serif; }
.quote-inner h2 { margin-top:28px; }
.quote-inner p { max-width:650px;margin:0 auto;font-size:18px;line-height:1.7; }
.quote-cloud { position:absolute;width:220px;height:80px;background:rgba(255,255,255,.65);border-radius:70px; }
.quote-cloud::before,.quote-cloud::after { content:"";position:absolute;background:inherit;border-radius:50%; }
.quote-cloud::before { width:100px;height:100px;left:28px;bottom:20px; }.quote-cloud::after { width:125px;height:125px;right:15px;bottom:5px; }
.cloud-left { left:-50px;top:80px; }.cloud-right { right:-70px;bottom:50px;transform:scale(.8); }

.cta { position:relative; overflow:hidden; min-height:650px; background:var(--yellow); display:grid; grid-template-columns:1.2fr .8fr; align-items:center; }
.cta-content { position:relative;z-index:3; }
.cta h2 span { color:var(--pink); }
.cta p { max-width:650px;font-size:19px;line-height:1.65; }
.btn-dark { margin-top:18px;background:var(--ink);color:white;box-shadow:0 10px 0 var(--pink); }
.btn-dark:hover { transform:translateY(5px);box-shadow:0 5px 0 var(--pink); }
.btn-dark svg { width:26px;fill:white; }
.cta small { display:block;margin-top:18px;font-weight:900;font-size:16px; }
.cta-mascot { position:relative; height:440px; }
.mascot-head { position:absolute;width:235px;height:235px;background:#f4ad78;border-radius:46% 54% 48% 52%;left:50%;top:65px;transform:translateX(-50%);z-index:3;box-shadow:0 24px 0 rgba(0,0,0,.06); }
.mascot-head::before { content:"";position:absolute;width:250px;height:130px;background:#4a3026;border-radius:55% 45% 50% 50%;left:-8px;top:-24px;transform:rotate(-4deg); }
.mascot-head span,.mascot-head i { position:absolute;width:16px;height:16px;border-radius:50%;background:var(--ink);top:110px; }
.mascot-head span { left:65px; }.mascot-head i { right:65px; }
.mascot-head b { position:absolute;width:70px;height:32px;border-bottom:8px solid #a9654c;border-radius:0 0 60px 60px;left:82px;top:140px; }
.mascot-body { position:absolute;width:270px;height:210px;background:var(--pink);border-radius:48% 52% 12% 12%;left:50%;bottom:0;transform:translateX(-50%); }
.mascot-body::after { content:"VEN TE CUENTO";position:absolute;left:50%;top:78px;transform:translateX(-50%);color:white;font-size:20px;font-weight:900;white-space:nowrap; }
.mascot-arm { position:absolute;width:52px;height:190px;background:#f4ad78;border-radius:40px;top:225px;z-index:0; }
.arm-left { left:12%;transform:rotate(42deg); }.arm-right { right:11%;transform:rotate(-50deg); }
.mascot-star { position:absolute;right:2%;top:15px;font-size:92px;color:var(--orange);animation:spin 12s linear infinite; }
.cta-confetti { position:absolute;width:45px;height:17px;border-radius:10px;transform:rotate(35deg); }
.confetti-one { background:var(--blue);left:5%;top:15%; }.confetti-two { background:var(--orange);right:5%;bottom:13%;transform:rotate(-20deg); }.confetti-three { background:var(--pink);left:48%;bottom:11%; }

footer { background:var(--ink);color:white;padding:55px max(24px,calc((100vw - 1180px)/2)) 25px; }
.footer-main { display:flex;align-items:center;gap:28px;padding-bottom:35px;border-bottom:1px solid rgba(255,255,255,.15); }
.footer-logo { width:82px;height:82px;border-radius:50%;overflow:hidden;background:white;padding:3px; }
.footer-logo img { width:100%;height:100%;object-fit:cover;border-radius:50%; }
.footer-main p { flex:1;color:#d2cfd6; }
.footer-links { display:flex;gap:25px;font-weight:800; }
.footer-links a:hover { color:var(--yellow); }
.footer-bottom { display:flex;justify-content:space-between;gap:20px;padding-top:24px;color:#aaa5b0;font-size:13px; }

.whatsapp-float { position:fixed;right:22px;bottom:22px;z-index:999;display:flex;align-items:center;gap:10px;background:#25d366;color:white;border-radius:999px;padding:12px 18px 12px 12px;font-weight:900;box-shadow:0 15px 35px rgba(21,117,60,.3);animation:breathe 2.2s ease-in-out infinite; }
.whatsapp-float svg { width:28px;fill:white; }

.reveal { opacity:0; transform:translateY(35px); transition:opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity:1; transform:none; }

@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)} }
@keyframes dance { 0%,100%{transform:rotate(-2deg)}50%{transform:rotate(4deg) translateY(-8px)} }
@keyframes bob { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }
@keyframes wave { 0%,100%{transform:rotate(0)}50%{transform:rotate(-3deg) translateY(-7px)} }
@keyframes note { 0%,100%{transform:rotate(-6deg) translateY(0)}50%{transform:rotate(6deg) translateY(-12px)} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes pulse { 0%,100%{transform:scale(1) rotate(0)}50%{transform:scale(1.2) rotate(12deg)} }
@keyframes scroll { 0%{opacity:0;transform:translate(-50%,0)}35%{opacity:1}100%{opacity:0;transform:translate(-50%,16px)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes morph { 0%,100%{border-radius:48% 52% 45% 55% / 55% 43% 57% 45%}50%{border-radius:56% 44% 57% 43% / 46% 58% 42% 54%} }
@keyframes breathe { 0%,100%{transform:scale(1)}50%{transform:scale(1.045)} }

@media (max-width: 1050px) {
  .hero { grid-template-columns:1fr; padding-top:150px; text-align:center; }
  .hero-copy { max-width:820px;margin:auto; }
  .hero p { margin-left:auto;margin-right:auto; }
  .hero-actions,.hero-badges { justify-content:center; }
  .hero-art { min-height:560px;max-width:720px;width:100%;margin:auto; }
  .workshop-grid { grid-template-columns:repeat(2,1fr); }
  .experience { grid-template-columns:1fr; }
  .experience-visual { max-width:680px;width:100%;margin:auto; }
  .cta { grid-template-columns:1fr 420px; }
}

@media (max-width: 760px) {
  .cursor-blob { display:none; }
  .site-header { height:72px;border-radius:22px;top:10px;padding:8px 10px; }
  .brand { width:56px;height:56px; }
  .menu-toggle { display:block;position:relative;z-index:20; }
  .menu-toggle.active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
  .menu-toggle.active span:nth-child(2){opacity:0}
  .menu-toggle.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
  .main-nav { position:fixed;top:0;right:-100%;width:min(340px,88vw);height:100vh;background:white;flex-direction:column;justify-content:center;align-items:stretch;padding:100px 38px 40px;gap:10px;box-shadow:-20px 0 50px rgba(0,0,0,.15);transition:right .35s ease; }
  .main-nav.open { right:0; }
  .main-nav a { padding:16px 8px;font-size:20px; }
  .nav-cta { text-align:center;margin-top:10px; }
  .section-pad { padding:88px 20px; }
  .hero { padding-top:130px;min-height:auto; }
  .hero h1 { font-size:clamp(48px,14vw,72px); }
  .hero p { font-size:17px; }
  .hero-art { min-height:410px; }
  .kids-illustration { inset:35px -20px auto -10px;width:calc(100% + 30px); }
  .logo-bubble { width:92px;height:92px;right:4%; }
  .scroll-hint { display:none; }
  .ticker-track { font-size:22px; }
  .workshop-grid { grid-template-columns:1fr; }
  .workshop-card { min-height:340px; }
  .experience { gap:30px; }
  .experience-visual { min-height:460px; }
  .photo-frame { inset:30px 8px; }
  .mini-card { padding:11px 14px; }
  .mini-card-one { left:0;bottom:25px; }.mini-card-two { right:0;top:65px; }
  .cta { grid-template-columns:1fr;text-align:center; }
  .cta-content { max-width:620px;margin:auto; }
  .cta-mascot { height:400px;max-width:420px;width:100%;margin:10px auto 0; }
  .footer-main { flex-direction:column;text-align:center; }
  .footer-main p { flex:none; }
  .footer-bottom { flex-direction:column;text-align:center; }
  .whatsapp-float span { display:none; }
  .whatsapp-float { width:56px;height:56px;padding:14px;border-radius:50%; }
}

@media (max-width: 480px) {
  .hero-art { min-height:330px; }
  .hero-actions .btn { width:100%; }
  .hero-badges { gap:6px; }
  .hero-badges span { font-size:12px; }
  .workshop-card { padding:24px; }
  .section-heading h2,.experience-copy h2,.quote-inner h2,.cta h2 { font-size:40px; }
  .experience-visual { min-height:390px; }
  .mini-card-two { top:40px; }
  .child-face { transform:scale(.8)!important;transform-origin:bottom; }
  .face-one { left:30px; }.face-two { right:30px; }
  .footer-links { flex-wrap:wrap;justify-content:center; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important; }
}

/* =========================================================
   EXTENSIÓN: PROFESORES, HORARIOS, GALERÍA E INSCRIPCIÓN
   ========================================================= */
.main-nav { gap: 22px; }
.main-nav > a:not(.nav-cta) { font-size: 14px; }
.teachers .section-heading h2 span,
.schedules .section-heading h2 span,
.gallery .section-heading h2 span,
.enrollment h2 span { color: var(--pink); }
.demo-label {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff0f7;
  color: #a93676;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.demo-label-dark { background: rgba(37,36,42,.08); color: var(--ink); }

/* Profesores */
.teachers {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(234,114,173,.18), transparent 22%),
    radial-gradient(circle at 92% 86%, rgba(89,195,219,.18), transparent 24%),
    #fff;
}
.teachers::before,
.teachers::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.teachers::before { width: 115px; height: 115px; background: var(--yellow); left: -58px; top: 32%; }
.teachers::after { width: 80px; height: 80px; background: var(--lime); right: -36px; bottom: 18%; }
.teacher-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.teacher-card {
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  border: 2px solid rgba(37,36,42,.07);
  box-shadow: 0 18px 45px rgba(37,36,42,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.teacher-card:nth-child(2) { transform: translateY(22px); }
.teacher-card:nth-child(4) { transform: translateY(22px); }
.teacher-card:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: 0 28px 70px rgba(37,36,42,.16); }
.teacher-card:nth-child(2):hover,
.teacher-card:nth-child(4):hover { transform: translateY(10px) rotate(1deg); }
.teacher-photo { aspect-ratio: .9; overflow: hidden; background: #f8f7f0; }
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.teacher-card:hover .teacher-photo img { transform: scale(1.045); }
.teacher-info { padding: 24px; }
.teacher-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #f2f2f2;
}
.tag-pink { background: #fff0f7; color: #aa3678; }
.tag-orange { background: #fff3e5; color: #a85400; }
.tag-blue { background: #eaf9fc; color: #14768c; }
.tag-lime { background: #f3f8e5; color: #607a17; }
.teacher-info h3 { font-size: 26px; margin: 14px 0 6px; letter-spacing: -.03em; }
.teacher-info p { color: #6b6670; margin: 0 0 20px; }
.teacher-more {
  width: 100%;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 15px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.teacher-more span { font-size: 20px; }
.teacher-more:hover { transform: translateY(-2px); background: var(--pink); }

/* Horarios */

.schedule-poster {
  width: min(1120px, 100%);
  margin: -18px auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 3px solid rgba(37,36,42,.08);
  box-shadow: 0 20px 55px rgba(37,36,42,.13);
}
.schedule-poster img {
  width: 100%;
  display: block;
  aspect-ratio: 1.28;
  object-fit: cover;
  object-position: center;
}
.schedule-poster-copy { padding: 32px; }
.schedule-poster-copy span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.schedule-poster-copy strong { display: block; margin: 15px 0 9px; font-size: 28px; line-height: 1.08; letter-spacing: -.035em; }
.schedule-poster-copy small { display: block; color: #6c6670; font-size: 14px; line-height: 1.55; }

.schedules {
  position: relative;
  background: var(--yellow);
  overflow: hidden;
}
.schedules::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37,36,42,.11) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
}
.schedules > * { position: relative; z-index: 1; }
.schedule-tabs,
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: -20px auto 38px; }
.schedule-filter,
.gallery-filter {
  border: 2px solid rgba(37,36,42,.12);
  background: rgba(255,255,255,.75);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: .22s ease;
}
.schedule-filter:hover,
.schedule-filter.active,
.gallery-filter:hover,
.gallery-filter.active { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.schedule-grid { display: grid; gap: 14px; max-width: 1100px; margin: 0 auto; }
.schedule-card {
  display: grid;
  grid-template-columns: 74px minmax(220px,1fr) minmax(180px,.7fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  border: 2px solid rgba(37,36,42,.08);
  box-shadow: 0 14px 34px rgba(37,36,42,.09);
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}
.schedule-card:hover { transform: translateX(5px); box-shadow: 0 20px 45px rgba(37,36,42,.15); }
.schedule-card.is-hidden { display: none; }
.schedule-icon { width: 64px; height: 64px; border-radius: 19px; display: grid; place-items: center; font-size: 32px; }
.schedule-pink { background: #fff0f7; }
.schedule-orange { background: #fff2e3; }
.schedule-blue { background: #eaf9fd; }
.schedule-lime { background: #f2f7e5; }
.schedule-main > span { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--pink); }
.schedule-main h3 { margin: 5px 0 4px; font-size: 22px; letter-spacing: -.025em; }
.schedule-main p { margin: 0; color: #706b74; font-size: 14px; }
.schedule-time strong,
.schedule-time span { display: block; }
.schedule-time strong { font-size: 15px; margin-bottom: 4px; }
.schedule-time span { color: #625e67; font-size: 14px; }
.spots { display: inline-flex; justify-content: center; white-space: nowrap; padding: 9px 12px; border-radius: 999px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.spots.available { background: #eaf7dd; color: #477017; }
.spots.last { background: #fff0e0; color: #9a5107; }
.schedule-enroll {
  border: 0;
  border-radius: 15px;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  padding: 14px 17px;
  cursor: pointer;
  box-shadow: 0 6px 0 #c64e8c;
  transition: transform .2s ease, box-shadow .2s ease;
}
.schedule-enroll:hover { transform: translateY(3px); box-shadow: 0 3px 0 #c64e8c; }
.schedule-note,
.gallery-demo-note { text-align: center; font-size: 13px; font-weight: 800; opacity: .7; margin: 24px 0 0; }

/* Galería */
.gallery { background: #fff; }
.gallery-filters { margin-top: -24px; }
.gallery-filter { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 27px;
  cursor: pointer;
  background: #f4f4f4;
  text-align: left;
  transition: transform .3s ease, opacity .25s ease;
}
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item.is-hidden { display: none; }
.gallery-item:hover { transform: translateY(-6px); }
.gallery-item > img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover > img { transform: scale(1.055); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(20,18,23,.82));
  pointer-events: none;
}
.gallery-caption { position: absolute; z-index: 2; left: 22px; right: 60px; bottom: 20px; color: #fff; }
.gallery-caption small { display: block; text-transform: uppercase; font-size: 11px; letter-spacing: .13em; font-weight: 900; margin-bottom: 5px; }
.gallery-caption strong { display: block; font-size: 22px; }
.gallery-item > i {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 22px;
  transition: transform .25s ease;
}
.gallery-item:hover > i { transform: rotate(90deg); }
.play-button {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 45%;
  transform: translate(-50%,-50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 5px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 26px;
  box-shadow: 0 16px 35px rgba(37,36,42,.2);
  transition: transform .25s ease;
}
.gallery-video:hover .play-button { transform: translate(-50%,-50%) scale(1.08); }

/* Inscripción */
.enrollment {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 12% 15%, rgba(246,232,0,.42), transparent 24%),
    radial-gradient(circle at 95% 90%, rgba(234,114,173,.18), transparent 28%),
    #fff8ef;
  overflow: hidden;
}
.enrollment-copy,
.enrollment-form { position: relative; z-index: 2; }
.enrollment h2 { font-size: clamp(45px,5vw,68px); line-height: 1.02; letter-spacing: -.05em; margin: 22px 0 20px; }
.enrollment-copy > p { font-size: 18px; line-height: 1.65; color: #69636b; }
.form-benefits { display: grid; gap: 10px; margin: 28px 0; }
.form-benefits span { font-weight: 900; }
.form-benefits span::first-letter { color: var(--pink); }
.registration-route { display: flex; align-items: center; gap: 10px; margin-top: 34px; }
.registration-route > div { flex: 1; min-height: 105px; padding: 14px; background: rgba(255,255,255,.8); border-radius: 18px; border: 1px solid rgba(37,36,42,.08); }
.registration-route b { width: 30px; height: 30px; display: grid; place-items: center; background: var(--ink); color: #fff; border-radius: 10px; margin-bottom: 9px; }
.registration-route span { display: block; font-size: 13px; font-weight: 800; line-height: 1.35; }
.registration-route i { font-style: normal; font-weight: 900; color: var(--pink); }
.enrollment-form {
  background: #fff;
  border: 2px solid rgba(37,36,42,.07);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 28px 75px rgba(37,36,42,.13);
}
.form-top { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 24px; }
.form-top span { font-size: 24px; font-weight: 900; }
.form-top small { color: #817b84; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field > span { font-size: 13px; font-weight: 900; color: #49454d; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 2px solid #eeeae5;
  border-radius: 14px;
  background: #fffdfa;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 105px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(89,195,219,.17); }
.field input.invalid,
.field select.invalid,
.field textarea.invalid { border-color: #d64242; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 19px 0; font-size: 13px; color: #615c65; line-height: 1.4; }
.consent input { width: 18px; height: 18px; accent-color: var(--pink); flex: 0 0 auto; }
.submit-enrollment {
  width: 100%;
  border: 0;
  border-radius: 17px;
  padding: 18px 20px;
  background: var(--pink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 0 #c64e8c;
  transition: transform .2s ease, box-shadow .2s ease;
}
.submit-enrollment:hover { transform: translateY(4px); box-shadow: 0 4px 0 #c64e8c; }
.submit-enrollment:disabled { opacity: .65; cursor: wait; }
.form-helper { margin: 17px 0 0; text-align: center; color: #817a83; font-size: 12px; line-height: 1.45; }
.form-status { display: none; margin-top: 14px; padding: 13px 15px; border-radius: 13px; font-size: 13px; font-weight: 800; line-height: 1.45; }
.form-status.show { display: block; }
.form-status.success { background: #ecf8e4; color: #3e6c17; }
.form-status.error { background: #fff0f0; color: #9d2727; }
.enrollment-deco { position: absolute; font-size: 62px; font-weight: 900; animation: float 4.5s ease-in-out infinite; }
.deco-one { color: var(--pink); top: 10%; left: 3%; }
.deco-two { color: var(--blue); right: 3%; top: 8%; animation-delay: .7s; }
.deco-three { color: var(--orange); left: 45%; bottom: 5%; animation-delay: 1.2s; }

/* Modales */
.modal { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(27,24,30,.72); backdrop-filter: blur(9px); }
.modal-panel {
  position: relative;
  z-index: 2;
  width: min(950px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 35px 95px rgba(0,0,0,.3);
  transform: translateY(25px) scale(.97);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.modal.open .modal-panel { transform: none; }
.modal-close { position: absolute; z-index: 5; right: 16px; top: 16px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; font-size: 29px; line-height: 1; cursor: pointer; }
.teacher-modal-panel { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; }
.teacher-modal-photo { min-height: 610px; background: #fff7eb; }
.teacher-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.teacher-modal-copy { padding: 56px 48px 42px; }
.teacher-modal-copy h2 { font-size: 48px; line-height: 1; margin: 16px 0 8px; letter-spacing: -.045em; }
.teacher-role { color: var(--pink); font-weight: 900; font-size: 18px; }
.teacher-modal-copy > p:not(.teacher-role) { color: #66616a; line-height: 1.65; }
.teacher-details { display: grid; gap: 10px; margin: 24px 0; }
.teacher-details > div { padding: 14px 16px; border-radius: 14px; background: var(--cream); }
.teacher-details small,
.teacher-details strong { display: block; }
.teacher-details small { text-transform: uppercase; letter-spacing: .07em; font-size: 10px; color: #8a848c; margin-bottom: 5px; }
.teacher-details strong { line-height: 1.4; }
.modal-enroll { border: 0; border-radius: 15px; background: var(--pink); color: #fff; font-weight: 900; padding: 15px 19px; cursor: pointer; }
.modal-demo { display: block; margin-top: 16px; color: #918b93; }
.gallery-modal-panel { width: min(1080px,100%); background: var(--ink); color: #fff; overflow: hidden; }
.gallery-modal-media { background: #111; display: grid; place-items: center; min-height: 480px; }
.gallery-modal-media img,
.gallery-modal-media video { width: 100%; max-height: 72vh; object-fit: contain; display: block; }
.gallery-modal-title { padding: 20px 26px 25px; }
.gallery-modal-title span { color: var(--yellow); text-transform: uppercase; font-size: 11px; letter-spacing: .13em; font-weight: 900; }
.gallery-modal-title h2 { margin: 6px 0 0; font-size: 28px; }
body.modal-open { overflow: hidden; }

@media (max-width: 1120px) {
  .main-nav { gap: 15px; }
  .main-nav > a:not(.nav-cta) { font-size: 13px; }
  .teacher-grid { grid-template-columns: repeat(2,1fr); }
  .teacher-card:nth-child(2), .teacher-card:nth-child(4) { transform: none; }
  .teacher-card:nth-child(2):hover, .teacher-card:nth-child(4):hover { transform: translateY(-10px); }
  .schedule-card { grid-template-columns: 64px minmax(210px,1fr) minmax(175px,.7fr) auto; }
  .schedule-enroll { grid-column: 2 / -1; justify-self: stretch; }
  .enrollment { grid-template-columns: 1fr; gap: 45px; }
  .enrollment-copy { max-width: 850px; }
}

@media (max-width: 760px) {
  .teacher-grid { grid-template-columns: 1fr; }
  .teacher-card { max-width: 480px; width: 100%; margin: 0 auto; }
  .teacher-photo { aspect-ratio: 1.05; }
  .schedule-tabs, .gallery-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; margin-left: -4px; margin-right: -4px; }
  .schedule-filter, .gallery-filter { flex: 0 0 auto; }
  .schedule-card { grid-template-columns: 58px 1fr; gap: 13px; }
  .schedule-icon { width: 54px; height: 54px; border-radius: 16px; font-size: 27px; }
  .schedule-time { grid-column: 2; }
  .spots { grid-column: 2; justify-self: start; }
  .schedule-enroll { grid-column: 1 / -1; width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .enrollment-form { padding: 22px; border-radius: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .registration-route { flex-direction: column; align-items: stretch; }
  .registration-route > div { min-height: auto; }
  .registration-route i { transform: rotate(90deg); text-align: center; }
  .teacher-modal-panel { grid-template-columns: 1fr; }
  .teacher-modal-photo { min-height: 300px; max-height: 370px; }
  .teacher-modal-copy { padding: 30px 24px 28px; }
  .teacher-modal-copy h2 { font-size: 38px; }
  .gallery-modal-media { min-height: 280px; }
  .form-top { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .teacher-info h3 { font-size: 24px; }
  .gallery-grid { grid-auto-rows: 230px; }
  .gallery-caption strong { font-size: 19px; }
  .enrollment h2 { font-size: 42px; }
  .modal { padding: 10px; }
  .modal-panel { max-height: calc(100vh - 20px); border-radius: 24px; }
  .teacher-modal-photo { min-height: 260px; }
}

/* Compensa la cabecera fija al navegar por anclas. */
section[id] { scroll-margin-top: 108px; }


/* Ajustes para fotografías reales del equipo */
.teacher-photo { background: linear-gradient(135deg, #fff7e8, #f7f4ff); }
.teacher-info p { min-height: 42px; line-height: 1.45; }
.teacher-modal-photo img { object-position: center; }

@media (max-width: 900px) {
  .schedule-poster { grid-template-columns: 1fr; }
  .schedule-poster img { aspect-ratio: 1.28; }
  .schedule-poster-copy { padding: 24px 26px 28px; }
}
@media (max-width: 560px) {
  .schedule-poster { border-radius: 22px; margin-bottom: 28px; }
  .schedule-poster img { aspect-ratio: 1.18; }
  .schedule-poster-copy strong { font-size: 24px; }
}
