/* ================================================
   ESCUELA DE VERANO — escuela.css
   Playful summer palette: yellow / coral / turquoise
   Fonts: Fredoka One (headings) + Nunito (body)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* ------------------------------------------------
   ESCUELA TOKENS
   ------------------------------------------------ */
:root {
  --e-yellow:   #FFD700;
  --e-coral:    #FF7F5C;
  --e-teal:     #4DD9E8;
  --e-purple:   #B388FF;
  --e-green:    #69E08C;
  --e-dark:     #1A1A2E;
  --e-text:     #2D2D3A;
  --e-bg:       #FFFBF0;
  --e-card-bg:  #FFFFFF;
  --e-radius:   20px;
  --e-radius-lg: 32px;
}

/* ------------------------------------------------
   ESCUELA BASE — override shared styles
   ------------------------------------------------ */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--e-bg);
  color: var(--e-text);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka One', sans-serif;
  letter-spacing: .5px;
  line-height: 1.2;
}

/* ------------------------------------------------
   ESCUELA NAVBAR (override shared)
   ------------------------------------------------ */
.navbar {
  background: rgba(255, 251, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255,215,0,.2);
}
.navbar.scrolled {
  background: rgba(255, 251, 240, 0.97);
  box-shadow: 0 4px 20px rgba(255,127,92,.12);
}
.nav-logo-name  { color: var(--e-dark); }
.nav-logo-sub   { color: var(--e-coral); }
.nav-links a    { color: rgba(45,45,58,.6); }
.nav-links a:hover { color: var(--e-dark); background: rgba(255,215,0,.15); }
.nav-links a.active { color: #fff; background: var(--e-coral); }
.nav-burger span { background: var(--e-dark); }

@media (max-width: 768px) {
  .nav-links {
    background: rgba(255,251,240,.98);
  }
  .nav-links a { color: var(--e-dark); font-size: 1.4rem; }
}

/* ------------------------------------------------
   ESCUELA FOOTER (override shared)
   ------------------------------------------------ */
.site-footer {
  background: var(--e-dark);
  border-top: none;
}
.site-footer .footer-location { color: var(--e-yellow); }
.site-footer .footer-links-row a { color: rgba(255,255,255,.5); }
.site-footer .footer-links-row a:hover { color: var(--e-yellow); }

/* ------------------------------------------------
   HERO — full viewport, gradient summer sky
   ------------------------------------------------ */
.e-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) var(--px) 80px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255,215,0,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(77,217,232,.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,127,92,.15) 0%, transparent 70%),
    var(--e-bg);
  position: relative;
  overflow: hidden;
}

.e-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 4px at 15% 25%, rgba(255,127,92,.5) 0%, transparent 100%),
    radial-gradient(circle 3px at 85% 15%, rgba(77,217,232,.6) 0%, transparent 100%),
    radial-gradient(circle 5px at 70% 75%, rgba(255,215,0,.5) 0%, transparent 100%),
    radial-gradient(circle 3px at 30% 80%, rgba(179,136,255,.5) 0%, transparent 100%),
    radial-gradient(circle 4px at 92% 50%, rgba(105,224,140,.5) 0%, transparent 100%);
  pointer-events: none;
}

.e-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,127,92,.12);
  border: 1.5px solid rgba(255,127,92,.3);
  color: var(--e-coral);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.e-hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--e-dark);
  margin-bottom: 16px;
  max-width: 800px;
}

.e-hero-title span {
  display: inline-block;
  color: var(--e-coral);
}

.e-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: rgba(45,45,58,.65);
  max-width: 520px;
  margin-bottom: 40px;
}

.e-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.e-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 700;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1.5px solid rgba(0,0,0,.06);
  color: var(--e-text);
}

.e-pill-icon { font-size: 1rem; }

.e-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Floating decoration balls */
.e-deco-ball {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatBall 8s ease-in-out infinite;
}

@keyframes floatBall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(180deg); }
}

/* ------------------------------------------------
   WAVE DIVIDER
   ------------------------------------------------ */
.e-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.e-wave svg { display: block; width: 100%; }

/* ------------------------------------------------
   SECTION SHARED
   ------------------------------------------------ */
.e-section {
  padding: var(--gap) var(--px);
}

.e-section-alt {
  background: #fff;
}

.e-section-dark {
  background: var(--e-dark);
  color: #fff;
}

.e-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.e-section-label-coral {
  background: rgba(255,127,92,.12);
  border: 1.5px solid rgba(255,127,92,.3);
  color: var(--e-coral);
}

.e-section-label-teal {
  background: rgba(77,217,232,.12);
  border: 1.5px solid rgba(77,217,232,.3);
  color: #18a2b0;
}

.e-section-label-yellow {
  background: rgba(255,215,0,.15);
  border: 1.5px solid rgba(255,215,0,.4);
  color: #b8900a;
}

.e-section-label-light {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
}

.e-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.e-section-desc {
  font-size: 1.05rem;
  color: rgba(45,45,58,.6);
  max-width: 560px;
  font-weight: 600;
  margin-bottom: 48px;
}

.e-section-dark .e-section-desc { color: rgba(255,255,255,.55); }

/* ------------------------------------------------
   STATS ROW
   ------------------------------------------------ */
.e-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: var(--gap);
}

.e-stat-card {
  background: #fff;
  border-radius: var(--e-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1.5px solid rgba(0,0,0,.05);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.e-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.e-stat-num {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 6px;
}

.e-stat-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(45,45,58,.5);
}

/* ------------------------------------------------
   ACTIVITY CARDS GRID
   ------------------------------------------------ */
.e-act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.e-act-card {
  background: #fff;
  border-radius: var(--e-radius);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1.5px solid rgba(0,0,0,.05);
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.e-act-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: var(--e-radius) var(--e-radius) 0 0;
}

.e-act-card:nth-child(1)::before { background: var(--e-coral); }
.e-act-card:nth-child(2)::before { background: var(--e-teal); }
.e-act-card:nth-child(3)::before { background: var(--e-yellow); }
.e-act-card:nth-child(4)::before { background: var(--e-purple); }
.e-act-card:nth-child(5)::before { background: var(--e-green); }
.e-act-card:nth-child(6)::before { background: var(--e-coral); }
.e-act-card:nth-child(7)::before { background: var(--e-teal); }
.e-act-card:nth-child(8)::before { background: var(--e-yellow); }
.e-act-card:nth-child(9)::before { background: var(--e-purple); }
.e-act-card:nth-child(10)::before { background: var(--e-green); }
.e-act-card:nth-child(11)::before { background: var(--e-coral); }
.e-act-card:nth-child(12)::before { background: var(--e-teal); }

.e-act-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.e-act-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.e-act-name {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.15rem;
  color: var(--e-dark);
  margin-bottom: 6px;
}

.e-act-desc {
  font-size: .85rem;
  color: rgba(45,45,58,.55);
  font-weight: 600;
  line-height: 1.5;
}

/* ------------------------------------------------
   SCHEDULE SECTION
   ------------------------------------------------ */
.e-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}

.e-schedule-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.08);
  border-radius: var(--e-radius);
  padding: 18px 24px;
  border: 1px solid rgba(255,255,255,.1);
}

.e-schedule-time {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--e-yellow);
  min-width: 110px;
}

.e-schedule-activity {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}

/* ------------------------------------------------
   WEEKS GRID
   ------------------------------------------------ */
.e-weeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.e-week-card {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--e-radius);
  padding: 18px 20px;
  transition: background .25s, border-color .25s;
}

.e-week-card:hover {
  background: rgba(255,215,0,.12);
  border-color: rgba(255,215,0,.3);
}

.e-week-num {
  font-family: 'Fredoka One', sans-serif;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--e-teal);
  margin-bottom: 4px;
}

.e-week-dates {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.05rem;
  color: #fff;
}

/* ------------------------------------------------
   PRICE CARDS
   ------------------------------------------------ */
.e-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.e-price-card {
  background: #fff;
  border-radius: var(--e-radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 2px solid transparent;
  transition: border-color .25s, transform .3s var(--ease), box-shadow .3s;
  position: relative;
}

.e-price-card.featured {
  border-color: var(--e-coral);
  box-shadow: 0 8px 40px rgba(255,127,92,.2);
}

.e-price-card.featured::after {
  content: '⭐ Más popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--e-coral);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.e-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.e-price-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(45,45,58,.45);
  margin-bottom: 10px;
}

.e-price-amount {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2.6rem;
  color: var(--e-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.e-price-unit {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(45,45,58,.45);
}

/* Extra price items (day, breakfast, lunch) */
.e-price-extras {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.e-price-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,127,92,.07);
  border: 1.5px solid rgba(255,127,92,.15);
  border-radius: 14px;
  padding: 14px 18px;
}

.e-price-extra-item span { font-weight: 600; font-size: .9rem; }
.e-price-extra-item strong {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.1rem;
  color: var(--e-coral);
}

/* ------------------------------------------------
   MATERIALS LIST
   ------------------------------------------------ */
.e-materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.e-material-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.e-material-item span:first-child { font-size: 1.2rem; }

/* ------------------------------------------------
   DOCS LIST
   ------------------------------------------------ */
.e-docs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.e-docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.e-docs-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--e-green);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ------------------------------------------------
   CONTACT / INSCRIPCIÓN STRIP
   ------------------------------------------------ */
.e-contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.e-contact-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--e-radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.e-contact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.e-contact-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--e-teal);
  margin-bottom: 4px;
}

.e-contact-value {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

/* ------------------------------------------------
   BANK DATA BLOCK
   ------------------------------------------------ */
.e-bank-block {
  background: rgba(255,215,0,.08);
  border: 2px dashed rgba(255,215,0,.25);
  border-radius: var(--e-radius);
  padding: 28px 32px;
  max-width: 600px;
}

.e-bank-label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--e-yellow);
  margin-bottom: 8px;
}

.e-bank-iban {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: #fff;
  word-break: break-all;
}

.e-bank-name {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ------------------------------------------------
   ESCUELA BUTTON overrides
   ------------------------------------------------ */
.btn-coral {
  background: var(--e-coral);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .3px;
  transition: var(--t);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-coral:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,127,92,.35);
}

.btn-teal {
  background: var(--e-teal);
  color: var(--e-dark);
}

.btn-teal:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(77,217,232,.35);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--e-dark);
  border: 2px solid rgba(45,45,58,.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  transition: var(--t);
}

.btn-ghost-dark:hover {
  border-color: var(--e-coral);
  color: var(--e-coral);
  transform: translateY(-2px);
}

/* ------------------------------------------------
   TWO-COL LAYOUT HELPERS
   ------------------------------------------------ */
.e-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .e-two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ------------------------------------------------
   WHATSAPP FLOAT
   ------------------------------------------------ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  transition: transform .3s var(--spring), box-shadow .3s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 48px rgba(37,211,102,.6);
}

.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ------------------------------------------------
   RESPONSIVE
   ------------------------------------------------ */
@media (max-width: 640px) {
  .e-hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .e-act-grid   { grid-template-columns: 1fr 1fr; }
  .e-price-grid { grid-template-columns: 1fr 1fr; }
  .e-stats      { grid-template-columns: 1fr 1fr; }
  .e-schedule-item { flex-direction: column; gap: 6px; padding: 14px 16px; }
  .e-schedule-time { min-width: unset; }
}

@media (max-width: 400px) {
  .e-act-grid   { grid-template-columns: 1fr; }
  .e-price-grid { grid-template-columns: 1fr; }
}
