/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: #FAF5E4; color: #1a1a1a; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Fredoka One', cursive; line-height: 1.1; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:root {
  --purple-dark: #009BBE;
  --text-dark:   #006F8A;
  --lime:   #B9CA00;
  --pink:   #DF1B79;
  --purple: #009BBE;
  --blue:   #009BBE;
  --yellow: #FFD600;
  --red:    #DE003E;
  --cream:  #FAF5E4;
  --card-blue:   #BEE8F5;
  --card-pink:   #F9C8DB;
  --card-lime:   #D6F2A0;
  --card-yellow: #FFF3BC;
}

/* =====================
   REVEAL ANIMATION
   ===================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.on { opacity: 1; transform: none; }

/* =====================
   NAV
   ===================== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--purple-dark);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: white; }
.nav-brand span { color: var(--yellow); }
.nav-cta {
  background: var(--pink); color: white;
  font-family: 'Fredoka One', cursive; font-size: .95rem;
  padding: 8px 22px;
  border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
  box-shadow: 3px 3px 0 rgba(0,0,0,.2);
  transition: transform .2s;
}
.nav-cta:hover { transform: rotate(-2deg) scale(1.04); }

/* =====================
   HERO BASE
   ===================== */
.hero {
  background: var(--purple-dark);
  position: relative; overflow: hidden;
  padding: 60px 24px 70px;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.btn-hero {
  display: inline-block;
  background: var(--pink); color: white;
  font-family: 'Fredoka One', cursive; font-size: 1.2rem;
  padding: 15px 42px;
  border-radius: 62% 38% 70% 30% / 46% 54% 46% 54%;
  box-shadow: 5px 5px 0 rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-3px) rotate(-1.5deg); box-shadow: 8px 8px 0 rgba(0,0,0,.25); }

.hb {
  position: absolute; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: .15; pointer-events: none;
}
.hb1 { width:220px; height:220px; background:var(--lime);   top:-80px; right:-70px; }
.hb2 { width:140px; height:140px; background:var(--pink);   bottom:60px; left:-40px; }
.hb3 { width: 80px; height: 80px; background:var(--yellow); top:40px; left:40px; border-radius:50%; }

/* =====================
   HERO VERANO
   ===================== */
.hero-verano { padding: 44px 24px 84px; }
.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  background: var(--lime); color: var(--text-dark);
  font-family: 'Fredoka One', cursive; font-size: .85rem;
  padding: 4px 18px; border-radius: 20px;
  margin-bottom: 14px; letter-spacing: .3px;
}
.hero-season-badge {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 3rem; color: var(--yellow);
  text-shadow: 4px 4px 0 rgba(0,0,0,.28);
  line-height: 1; margin-bottom: 8px;
}
.hero-date-label {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem; color: white;
  margin-bottom: 6px; font-weight: normal;
}
.hero-date-label span { color: var(--pink); }
.hero-horario {
  color: rgba(255,255,255,.7); font-size: .83rem; font-weight: 700;
  margin-bottom: 26px; letter-spacing: .2px;
}

/* Tracks */
.tracks-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 460px; margin: 0 auto 22px;
}
.track-card {
  border-radius: 18px; padding: 14px 12px;
  text-align: center;
}
.track-arte   { background: rgba(185,202,0,.15); border: 2px solid rgba(185,202,0,.75); }
.track-soccer { background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.55); }
.track-nombre { font-family: 'Fredoka One', cursive; font-size: .95rem; color: white; margin-bottom: 2px; }
.track-edad   { font-size: .7rem; font-weight: 800; color: var(--yellow); margin-bottom: 8px; }
.track-list   { list-style: none; }
.track-list li { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.95); padding: 1.5px 0; }
.track-list li::before { content: '· '; color: var(--lime); font-weight: 900; }

/* Hero prices */
.hero-prices {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-bottom: 12px;
}
.hero-price-item { text-align: center; }
.hpi-label  { display: block; font-size: .72rem; font-weight: 800; color: rgba(255,255,255,.65); }
.hpi-amount { display: block; font-family: 'Fredoka One', cursive; font-size: 2.1rem; color: var(--yellow); line-height: 1; }
.hpi-note   { display: block; font-size: .67rem; font-weight: 700; color: rgba(255,255,255,.55); margin-top: 2px; }
.hero-price-sep { width: 2px; height: 50px; background: rgba(255,255,255,.2); border-radius: 2px; }

.hero-discount {
  display: inline-block;
  background: rgba(255,214,0,.12); border: 1.5px dashed var(--yellow);
  color: var(--yellow); font-size: .78rem; font-weight: 800;
  padding: 6px 16px; border-radius: 12px; margin-bottom: 22px;
}
.hero-community {
  margin-top: 14px; font-size: .73rem; font-weight: 700;
  color: rgba(255,255,255,.45);
}

/* =====================
   SECTION BASE
   ===================== */
.sec { padding: 60px 24px; }
.sec-alt  { background: #f5fae4; }
.sec-pink { background: #fff3f7; }
.sec-lav  { background: #e8f7fa; }
.sec-hdr { text-align: center; margin-bottom: 36px; }
.sec-hdr h2 { font-size: 1.9rem; color: var(--text-dark); margin-bottom: 6px; }
.sec-hdr p  { font-size: .95rem; color: #555; font-weight: 600; }
.underline {
  display: block; width: 60px; height: 5px; margin: 8px auto 12px;
  border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
}
.u-lime   { background: var(--lime); }
.u-pink   { background: var(--pink); }
.u-blue   { background: var(--blue); }
.u-yellow { background: var(--yellow); }
.u-purple { background: var(--purple); }

/* =====================
   CURSOS CARDS (otros cursos — 3 cards)
   ===================== */
.cursos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px; margin: 0 auto;
}
.curso-card {
  border-radius: 22px; overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0,0,0,.1);
  transition: transform .25s, box-shadow .25s;
}
.curso-card:nth-child(1) { transform: rotate(-2deg); }
.curso-card:nth-child(2) { transform: rotate(1.5deg); }
.curso-card:nth-child(3) { transform: rotate(-1deg); }
.curso-card:hover { transform: rotate(0) scale(1.03); box-shadow: 8px 8px 0 rgba(0,0,0,.13); }
.c-pascua { background: var(--card-blue); }
.c-dic    { background: var(--card-lime); }
.c-mayo   { background: var(--card-pink); }
.curso-badge {
  font-family: 'Fredoka One', cursive; font-size: 1rem;
  padding: 10px 16px; display: block; text-align: center;
}
.b-pascua { background: #0BA3C5; color: white; }
.b-dic    { background: #7DC200; color: #1a1a1a; }
.b-mayo   { background: #E8185A; color: white; }
.curso-body { padding: 14px 16px 18px; }
.curso-nombre { font-family: 'Fredoka One', cursive; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 5px; }
.curso-desc   { font-size: .82rem; font-weight: 700; color: #444; line-height: 1.45; }
.curso-tag    { display: inline-block; margin-top: 10px; background: rgba(0,0,0,.08); color: #333; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 20px; }

@media(min-width:640px){ .cursos-grid { grid-template-columns: repeat(3,1fr); } }

/* =====================
   GALERÍA
   ===================== */
.gal-scroll {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 10px 0 18px; cursor: grab;
}
.gal-scroll:active { cursor: grabbing; }
.gal-scroll::-webkit-scrollbar { height: 4px; }
.gal-scroll::-webkit-scrollbar-track { background: #e0dbd0; border-radius: 10px; }
.gal-scroll::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 10px; }
.gal-item {
  flex-shrink: 0; scroll-snap-align: start;
  width: 240px; border-radius: 18px; overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0,0,0,.1); border: 3px solid white;
}
.gal-item:nth-child(odd)  { transform: rotate(-1.5deg); }
.gal-item:nth-child(even) { transform: rotate(1.5deg); }
.gal-item img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gal-hint { text-align: center; margin-top: 8px; font-size: .78rem; font-weight: 700; color: #999; }

@media(min-width:640px){ .gal-item { width: 300px; } .gal-item img { height: 240px; } }

/* =====================
   LONCHERA / LUNCH
   ===================== */
.lonchera-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 620px; margin: 0 auto; }
.lonchera-card {
  border-radius: 22px; overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0,0,0,.1); transition: transform .25s;
}
.lonchera-card:nth-child(1) { transform: rotate(-1.5deg); }
.lonchera-card:nth-child(2) { transform: rotate(1.5deg); }
.lonchera-card:nth-child(3) { grid-column: 1 / -1; max-width: 300px; margin: 0 auto; transform: rotate(0.5deg); }
.lonchera-card:hover { transform: rotate(0) scale(1.03); }
.lc1 { background: var(--card-blue); border: 2.5px solid #9DD8E8; }
.lc2 { background: var(--card-pink); border: 2.5px solid #E8A0BC; }
.lc3 { background: #EDFAD3; border: 2.5px solid #B5DC6A; }
.lonchera-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.lonchera-body { padding: 14px 14px 18px; }
.lonchera-nombre { font-family: 'Fredoka One', cursive; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 8px; }
.menu-items { list-style: none; }
.menu-items li { font-size: .8rem; font-weight: 700; color: #444; padding: 2px 0; }
.menu-items li::before { content: '+ '; color: var(--purple); font-weight: 900; }
.lonchera-precio {
  display: inline-block; margin-top: 12px;
  background: var(--pink); color: white;
  font-family: 'Fredoka One', cursive; font-size: 1.3rem;
  padding: 5px 18px;
  border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
}

/* =====================
   MINI FORM — Aparta tu lugar
   ===================== */
.sec-apartar { background: var(--purple-dark); padding: 60px 24px; }
.apartar-inner { max-width: 480px; margin: 0 auto; }
.apartar-text { text-align: center; margin-bottom: 28px; }
.apartar-text h2 { font-size: 1.9rem; color: var(--yellow); }
.apartar-text p { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.7); margin-top: 8px; line-height: 1.5; }
.mini-form { display: flex; flex-direction: column; gap: 14px; }
.mf-group { display: flex; flex-direction: column; gap: 5px; }
.mf-group label { font-weight: 800; font-size: .85rem; color: rgba(255,255,255,.8); }
.mf-group input {
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,.2); border-radius: 14px;
  background: rgba(255,255,255,.08); color: white;
  font-family: 'Nunito', sans-serif; font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.mf-group input::placeholder { color: rgba(255,255,255,.3); }
.mf-group input:focus { border-color: var(--lime); }
.mf-err { color: var(--pink); font-size: .82rem; font-weight: 800; min-height: 1em; }
.btn-apartar {
  background: var(--lime); color: var(--text-dark);
  font-family: 'Fredoka One', cursive; font-size: 1.15rem;
  padding: 15px; border: none; cursor: pointer;
  border-radius: 62% 38% 70% 30% / 46% 54% 46% 54%;
  box-shadow: 5px 5px 0 rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.btn-apartar:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 8px 8px 0 rgba(0,0,0,.25); }

/* =====================
   CONTACTO
   ===================== */
.contacto {
  background: var(--lime); padding: 60px 24px; text-align: center; position: relative; overflow: hidden;
}
.contacto::before {
  content: ''; position: absolute; top: -2px; left: 0; right: 0; height: 50px;
  background: var(--purple-dark); clip-path: ellipse(55% 100% at 50% 0%);
}
.contacto h2 { font-size: 1.9rem; color: var(--text-dark); margin-bottom: 6px; }
.contacto-sub { font-size: .95rem; font-weight: 700; color: #3a5a00; margin-bottom: 24px; }
.coord-info { font-family: 'Fredoka One', cursive; color: var(--text-dark); margin-bottom: 24px; }
.coord-info .coord-name { font-size: 1.8rem; display: block; }
.coord-info .coord-role { font-size: .95rem; opacity: .7; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  font-family: 'Fredoka One', cursive; font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 62% 38% 70% 30% / 46% 54% 46% 54%;
  box-shadow: 4px 4px 0 rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.btn-wa:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 7px 7px 0 rgba(0,0,0,.2); }
.btn-wa svg { width: 22px; height: 22px; fill: white; }
.contacto-footer { margin-top: 36px; padding-top: 18px; border-top: 2px dashed rgba(0,0,0,.15); font-size: .78rem; font-weight: 700; color: rgba(0,0,0,.45); }

/* =====================
   LIGHTBOX
   ===================== */
.lb-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lb-overlay.open { opacity: 1; pointer-events: all; }
.lb-img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  transition: opacity .2s;
}
.lb-close {
  position: absolute; top: 18px; right: 20px;
  background: rgba(255,255,255,.12); border: none; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer; transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 700;
  background: rgba(0,0,0,.3); padding: 4px 12px; border-radius: 20px;
}
img[data-lb] { cursor: zoom-in; transition: transform .2s, box-shadow .2s; }
.gal-item:hover img[data-lb] { transform: scale(1.03); }
.lonchera-img[data-lb]:hover { transform: scale(1.02); }

/* =====================
   REGISTRO PAGE
   ===================== */
.reg-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--purple-dark);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 16px;
}
.reg-back {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.75); font-weight: 800; font-size: .88rem;
  transition: color .2s;
}
.reg-back:hover { color: white; }
.reg-back svg { flex-shrink: 0; }
.reg-nav-title { font-family: 'Fredoka One', cursive; color: var(--yellow); font-size: 1rem; }

.reg-page-wrap { max-width: 600px; margin: 0 auto; padding: 28px 20px 72px; }

.reg-course-card {
  background: var(--purple-dark); border-radius: 22px;
  padding: 20px 22px; margin-bottom: 32px; color: white;
  position: relative; overflow: hidden;
}
.reg-course-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(185,202,0,.15);
}
.rcc-eyebrow { font-size: .75rem; font-weight: 800; color: var(--lime); letter-spacing: .5px; margin-bottom: 4px; }
.rcc-title { font-family: 'Fredoka One', cursive; font-size: 1.6rem; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.rcc-date  { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.rcc-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.rcc-tag   {
  font-size: .72rem; font-weight: 800;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.85);
}

.reg-section { margin-bottom: 30px; }
.reg-section-title {
  font-family: 'Fredoka One', cursive; font-size: 1.1rem;
  color: var(--text-dark); margin-bottom: 16px;
  padding-bottom: 6px; border-bottom: 2px solid #c5e8f0;
}
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fg-r { margin-bottom: 16px; }
.fg-r label { display: block; font-weight: 800; font-size: .85rem; color: var(--text-dark); margin-bottom: 5px; }
.fg-r input,
.fg-r select,
.fg-r textarea {
  width: 100%; padding: 11px 15px;
  border: 2.5px solid #d0c8e8; border-radius: 14px;
  font-family: 'Nunito', sans-serif; font-size: .92rem; color: #1a1a1a;
  background: white; outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.fg-r select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B2FBE' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.fg-r textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.fg-r input:focus, .fg-r select:focus, .fg-r textarea:focus { border-color: var(--purple); }
.fg-r input::placeholder, .fg-r textarea::placeholder { color: #bbb; }
.pago-nota { font-size: .78rem; font-weight: 700; color: #777; margin-top: 8px; }
.fg-hint { font-size: .75rem; color: #888; font-weight: 700; margin-top: 4px; display: block; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-opt { flex: 1; min-width: 100px; position: relative; }
.radio-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-opt label {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 12px; border: 2.5px solid #d0c8e8; border-radius: 14px;
  cursor: pointer; font-weight: 800; font-size: .85rem;
  transition: border-color .2s, background .2s; text-align: center;
}
.radio-opt input[type="radio"]:checked + label { border-color: var(--purple); background: #f2eeff; color: var(--purple); }
.radio-opt label small { display: block; margin-top: 3px; }

#track-group { display: none; }
#track-group.visible { display: block; }

.legal-block {
  border: 2px solid #e0d8f8; border-radius: 18px;
  overflow: hidden; margin-bottom: 14px;
  transition: border-color .2s;
}
.legal-block.accepted { border-color: var(--lime); }
.legal-block-hdr {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; cursor: pointer;
  background: white;
}
.legal-block-hdr input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0;
  accent-color: var(--purple); cursor: pointer;
}
.legal-block-text { flex: 1; }
.legal-block-text strong { display: block; font-size: .88rem; color: var(--text-dark); margin-bottom: 2px; }
.legal-block-text span  { font-size: .77rem; font-weight: 700; color: #888; }
.btn-ver-doc {
  background: none; border: 2px solid var(--purple); border-radius: 10px;
  color: var(--purple); font-family: 'Nunito', sans-serif; font-size: .78rem;
  font-weight: 800; padding: 5px 12px; cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s; flex-shrink: 0;
}
.btn-ver-doc:hover { background: var(--purple); color: white; }

#reg-form-err { color: var(--pink); font-size: .85rem; font-weight: 800; margin-bottom: 12px; display: none; }

.btn-registrar {
  width: 100%; background: var(--purple); color: white;
  font-family: 'Fredoka One', cursive; font-size: 1.2rem;
  padding: 16px; border: none; cursor: pointer;
  border-radius: 62% 38% 70% 30% / 46% 54% 46% 54%;
  box-shadow: 5px 5px 0 rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-registrar:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 8px 8px 0 rgba(0,0,0,.2); }
.btn-registrar:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Registro success */
.reg-success {
  display: none; text-align: center;
  background: white; border-radius: 24px;
  border: 3px solid var(--lime); padding: 40px 24px;
  box-shadow: 6px 6px 0 rgba(0,0,0,.08);
}
.reg-success.show { display: block; }
.success-check {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--lime); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.success-check svg { width: 30px; height: 30px; stroke: var(--text-dark); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.success-title { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 10px; }
.success-body  { font-size: .9rem; font-weight: 700; color: #555; line-height: 1.6; margin-bottom: 24px; }
.success-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  font-family: 'Fredoka One', cursive; font-size: 1rem;
  padding: 12px 28px;
  border-radius: 62% 38% 70% 30% / 46% 54% 46% 54%;
  box-shadow: 4px 4px 0 rgba(0,0,0,.12);
}
.success-wa svg { width: 20px; height: 20px; fill: white; }

/* =====================
   MODALES (reglamento y aviso)
   ===================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white; border-radius: 24px;
  max-width: 560px; width: 100%;
  max-height: 88vh; display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  transform: translateY(16px);
  transition: transform .3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-hdr {
  padding: 20px 22px 16px;
  border-bottom: 2px solid #f0eee8;
  display: flex; align-items: flex-start; gap: 8px;
  position: relative;
}
.modal-hdr h3 { font-size: 1.2rem; color: var(--text-dark); flex: 1; padding-right: 36px; }
.modal-subtitle { font-size: .8rem; font-weight: 700; color: #999; margin-top: 4px; }
.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: #f0eee8; border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #555; transition: background .2s; flex-shrink: 0;
}
.modal-close-btn:hover { background: #e0ddd5; }
.modal-body {
  flex: 1; overflow-y: auto; padding: 20px 22px;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-track { background: #f0eee8; border-radius: 10px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 10px; }
.modal-intro {
  font-size: .88rem; font-weight: 600; color: #444;
  line-height: 1.6; margin-bottom: 20px;
  padding: 12px 14px; background: #e8f7fa; border-radius: 12px;
}
.clausula { margin-bottom: 18px; }
.clausula h4 { font-family: 'Fredoka One', cursive; font-size: 1rem; color: var(--purple); margin-bottom: 5px; }
.clausula p  { font-size: .85rem; font-weight: 600; color: #444; line-height: 1.6; }
.modal-footer {
  padding: 16px 22px 20px;
  border-top: 2px solid #f0eee8;
  display: flex; flex-direction: column; gap: 12px;
}
.modal-check-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
}
.modal-check-label input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--purple); cursor: pointer; }
.modal-check-label span { font-size: .85rem; font-weight: 700; color: #444; line-height: 1.4; }
.btn-modal-aceptar {
  background: var(--purple); color: white;
  font-family: 'Fredoka One', cursive; font-size: 1rem;
  padding: 12px 24px; border: none; border-radius: 50px;
  cursor: pointer; opacity: .4; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.btn-modal-aceptar.ready { opacity: 1; pointer-events: all; }
.btn-modal-aceptar.ready:hover { transform: scale(1.02); }

/* =====================
   MOBILE OVERRIDES
   ===================== */
@media(max-width:480px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box { border-radius: 24px 24px 0 0; max-height: 92vh; }
  .lb-prev { left: 6px; width: 40px; height: 40px; }
  .lb-next { right: 6px; width: 40px; height: 40px; }
  .lb-img  { max-width: 100vw; border-radius: 0; }
  .hero-season-badge { font-size: 2.4rem; }
  .tracks-grid { grid-template-columns: 1fr; gap: 10px; }
  .reg-row { grid-template-columns: 1fr; }
  .radio-group { gap: 8px; }
}

@media(min-width:600px) {
  .hero-season-badge { font-size: 3.6rem; }
  .reg-page-wrap { padding: 36px 28px 80px; }
}

/* =====================
   LUNCH — tap hint
   ===================== */
.lonchera-tap {
  font-size: .75rem; font-weight: 700;
  color: #aaa; margin-top: 6px; font-style: italic;
}

/* =====================
   TICKET CARD (registro)
   ===================== */
.ticket-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 6px 6px 0 rgba(0,0,0,.1);
  margin-bottom: 32px;
}
.ticket-top {
  background: var(--purple-dark); color: white;
  padding: 22px 22px 26px; text-align: center;
}
.ticket-eyebrow {
  display: block; font-size: .72rem; font-weight: 800;
  color: var(--lime); letter-spacing: .6px; margin-bottom: 6px;
}
.ticket-title {
  font-family: 'Fredoka One', cursive; font-size: 2rem;
  color: var(--yellow); line-height: 1;
  text-shadow: 3px 3px 0 rgba(0,0,0,.2); margin-bottom: 6px;
}
.ticket-date {
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.78);
}
.ticket-punch {
  background: var(--purple-dark);
  display: flex; align-items: center; gap: 0;
}
.punch-left, .punch-right {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cream); flex-shrink: 0;
}
.punch-left  { margin-left: -10px; }
.punch-right { margin-right: -10px; }
.ticket-dash {
  flex: 1; border-top: 2.5px dashed rgba(255,255,255,.25);
  margin: 0 4px;
}
.ticket-bottom {
  background: white; padding: 16px 20px 20px; text-align: center;
}
.ticket-tracks {
  display: flex; gap: 10px; justify-content: center; margin-bottom: 12px;
  flex-wrap: wrap;
}
.tt-item {
  border-radius: 12px; padding: 8px 14px; text-align: center;
}
.tt-arte   { background: rgba(185,202,0,.15); border: 1.5px solid rgba(185,202,0,.6); }
.tt-soccer { background: rgba(0,155,190,.12); border: 1.5px solid rgba(0,155,190,.6); }
.tt-name { display: block; font-family: 'Fredoka One', cursive; font-size: .88rem; color: var(--text-dark); }
.tt-age  { display: block; font-size: .7rem; font-weight: 800; color: #777; }
.ticket-prices {
  font-size: .8rem; font-weight: 700; color: #666;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0;
}
.ticket-prices strong {
  font-family: 'Fredoka One', cursive; font-size: .95rem; color: var(--text-dark);
}
.tp-sep { margin: 0 8px; color: #ccc; }

/* =====================
   LEGAL CHECKBOX — bloqueado hasta leer
   ===================== */
.legal-block:not(.accepted) input[type="checkbox"] {
  opacity: 0.25;
  cursor: not-allowed;
}
.legal-block:not(.accepted) .legal-block-hdr {
  cursor: default;
}
.legal-lock-hint {
  font-size: .72rem; font-weight: 800; color: #bbb;
  margin-top: 4px; display: block;
}

/* Honeypot — completamente invisible para humanos */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
