/* ====================================================
   CAMPAMENTO YAXA 2026 — styles.css
   TikTok-style snap scroll · Mobile-first · Vivid
==================================================== */

/* ── VARIABLES ───────────────────────────────────── */
:root {
  --orange:  #FF6B35;
  --yellow:  #FFD700;
  --cyan:    #00E5FF;
  --pink:    #FF3DDD;
  --green:   #39FF14;
  --red:   #ff0000;
  --dark:    #0A0A0F;
  --dark2:   #12121A;
  --white:   #FFFFFF;
  --glass:   rgba(255,255,255,0.07);
  --radius:  20px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Unbounded', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100dvh;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, button { font-family: var(--font-body); outline: none; border: none; }

/* ── NAV ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all .3s;
}
.dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}
.nav-cta {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--orange); }

/* ── SNAP CONTAINER ──────────────────────────────── */
.snap-container {
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.snap-container::-webkit-scrollbar { display: none; }

/* ── COMMON SLIDE ────────────────────────────────── */
.snap-slide {
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
}

/* ── SECTION TAGS & TITLES ───────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-tag.light { color: var(--yellow); background: rgba(255,215,0,0.12); border-color: rgba(255,215,0,0.3); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title.white { color: var(--white); }
.section-title em { font-style: normal; color: var(--orange); }
.section-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
}

/* ── REVEAL ANIMATION ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }

/* ========================================================
   SLIDE 1 — HERO
======================================================== */
.slide-hero { background: var(--dark); }

.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width: 350px; height: 350px; background: var(--orange); top: -80px; right: -80px; animation-delay: 0s; }
.blob-2 { width: 280px; height: 280px; background: var(--pink); bottom: 60px; left: -60px; animation-delay: -3s; }
.blob-3 { width: 220px; height: 220px; background: var(--cyan); top: 40%; right: 10%; animation-delay: -5s; }

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px, -20px) scale(1.08); }
}

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  width: 100%;
}
.hero-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.35);
  padding: 5px 16px;
  border-radius: 30px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 20vw, 7rem);
  line-height: .95;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title .line { display: block; }
.accent-line { color: var(--orange); }
.hero-brand {
  -webkit-text-stroke: 3px var(--cyan);
  color: transparent;
  text-shadow: 0 0 40px rgba(0,229,255,0.5);
  animation: glitch 4s infinite;
}
@keyframes glitch {
  0%,95%,100% { transform: translate(0); }
  96% { transform: translate(-3px, 1px); color: var(--pink); }
  97% { transform: translate(3px, -1px); color: var(--cyan); }
  98% { transform: translate(0); }
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.meta-pill {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn-hero {
  margin-top: 6px;
  padding: 14px 36px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(255,61,221,0.4);
}
.btn-hero:hover, .btn-hero:active { transform: scale(1.05); }

/* ── HERO SEMANAS ────────────────────────────────── */
.hero-semanas {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  width: 100%;
  justify-content: center;
}
.hero-semana {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hs-badge {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hs-badge2 {
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hs-dates {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.hs-divider {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.2);
  margin: 0 2px;
}

/* ── HERO GRUPOS ─────────────────────────────────── */
.hero-grupos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
}
.hg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid var(--hgc);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hgc);
  box-shadow: 0 0 6px var(--hgc);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: .5;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-arrow { font-size: 1.2rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ========================================================
   SLIDE 2 — ABOUT
======================================================== */
.slide-about {
  background: var(--dark2);
}
.about-bg { position: absolute; inset: 0; overflow: hidden; }
.about-circle {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .3;
}
.c1 { width: 400px; height: 400px; background: var(--cyan); top: -100px; left: -100px; }
.c2 { width: 300px; height: 300px; background: var(--yellow); bottom: -60px; right: -60px; }

.about-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start;
  max-width: 440px; width: 100%;
  gap: 12px;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}
.acard {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s;
  border-top: 2px solid var(--c);
}
.acard:hover { transform: translateY(-4px); border-color: var(--c); }
.acard-icon { font-size: 1.6rem; }
.acard-label { font-size: 0.75rem; font-weight: 500; text-align: center; }

/* ========================================================
   SLIDE 2.5 — INFO GENERAL
======================================================== */
.slide-info {
  background: #080810;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 72px;
  padding-bottom: 40px;
}
.slide-info::-webkit-scrollbar { display: none; }

.info-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.info-blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: .22;
}
.ib1 { width: 320px; height: 320px; background: var(--yellow); top: -70px;    left: -70px; }
.ib2 { width: 260px; height: 260px; background: var(--pink);   bottom: -50px; right: -50px; }
.ib3 { width: 200px; height: 200px; background: var(--cyan);   top: 45%;      right: 15%; }

.info-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  width: 100%; max-width: 480px;
  gap: 14px;
}

.info-header { display: flex; flex-direction: column; gap: 6px; }

.info-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 5px 14px; border-radius: 30px;
  width: fit-content;
}
.info-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  font-weight: 900; line-height: 1.1; color: var(--white);
}
.info-title em { font-style: normal; color: var(--yellow); }
.info-lead {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* quick cards */
.info-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px; width: 100%;
}
.iq-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--iqc);
  border-radius: 12px; padding: 10px 12px;
  transition: transform .2s, border-color .2s;
}
.iq-card:hover { transform: translateY(-2px); border-color: var(--iqc); }
.iq-icon { font-size: 1.3rem; flex-shrink: 0; }
.iq-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); font-weight: 600; }
.iq-val { font-size: 0.76rem; font-weight: 600; color: var(--white); margin-top: 1px; }

/* detail cards */
.info-details { display: flex; flex-direction: column; gap: 8px; }
.idet-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 13px 14px;
  transition: border-color .25s, transform .25s;
}
.idet-card:hover { border-color: rgba(255,255,255,0.18); transform: translateX(3px); }
.idet-icon {
  font-size: 1.4rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; flex-shrink: 0;
}
.idet-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.idet-title { font-family: var(--font-head); font-size: 0.76rem; font-weight: 700; color: var(--white); letter-spacing: .3px; }
.idet-text { font-size: 0.75rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.idet-clima { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.clima-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.73rem; color: rgba(255,255,255,0.6); line-height: 1.4;
}
.clima-badge {
  flex-shrink: 0;
  font-size: 0.6rem; font-family: var(--font-head); font-weight: 700;
  letter-spacing: .5px; padding: 3px 8px;
  border-radius: 20px; border: 1px solid; white-space: nowrap;
}

/* ========================================================
   SLIDE 3 — ACTIVITIES
======================================================== */
.slide-activities {
  background: #090912;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 72px;
  padding-bottom: 40px;
}
.slide-activities::-webkit-scrollbar { display: none; }
.acts-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0f0f22 0%, #1a0530 50%, #0a1520 100%);
}
.acts-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}
.acts-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  max-width: 440px; width: 100%;
  gap: 14px;
}

/* ── GRUPOS LIST ─────────────────────────────────── */
.grupos-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.grupo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gc);
  border-radius: 14px;
  padding: 12px 14px;
  transition: transform .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.grupo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--gc-rgb),.06), transparent 60%);
  pointer-events: none;
}
.grupo-card:hover { transform: translateX(4px); background: rgba(255,255,255,0.08); }

.gc-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gc);
  opacity: .25;
  min-width: 28px;
  text-align: center;
}

.gc-dot-wrap {
  display: flex; align-items: center; justify-content: center;
  min-width: 28px;
}
.gc-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gc);
  box-shadow: 0 0 10px var(--gc), 0 0 20px var(--gc);
  display: block;
}

.gc-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.gc-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gc);
  letter-spacing: .5px;
}
.gc-ages {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
}
.gc-desc {
  font-size: 0.74rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}
.gc-desc strong { color: var(--gc); font-weight: 600; }

.grupos-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 8px 14px;
  width: fit-content;
}

.timeline { display: flex; flex-direction: column; gap: 10px; }
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: border-color .3s, transform .3s;
}
.tl-item:hover { border-color: var(--orange); transform: translateX(4px); }
.tl-day {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255,107,53,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.tl-desc { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* ========================================================
   SLIDE 3.5 — SEMANA 1 DINÁMICAS GRUPALES
======================================================== */
.slide-semana1 {
  background: #0d0a00;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 72px;
  padding-bottom: 40px;
}
.slide-semana1::-webkit-scrollbar { display: none; }

.s1-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.s1-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .28;
}
.sb1 { width: 340px; height: 340px; background: var(--orange); top: -80px; right: -80px; }
.sb2 { width: 280px; height: 280px; background: var(--yellow); bottom: -60px; left: -60px; }
.s1-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.s1-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  width: 100%; max-width: 480px;
  gap: 12px;
}

.s1-header { display: flex; flex-direction: column; gap: 5px; }
.s1-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
}

/* ── TABS DÍAS ── */
.s1-tabs {
  display: flex; gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.s1-tabs::-webkit-scrollbar { display: none; }

.s1tab {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .2s;
}
.s1tab:hover { color: var(--orange); border-color: var(--orange); }
.s1tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

/* ── DAY PANELS ── */
.s1-days { width: 100%; position: relative; }

.s1-day {
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: fadeSlideIn .3s ease;
}
.s1-day.active { display: flex; }

.s1-day-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  padding: 2px 0 6px;
  border-bottom: 1px solid rgba(255,215,0,0.15);
}

/* ── SCHEDULE ── */
.s1-schedule { display: flex; flex-direction: column; gap: 6px; }

.sch-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 9px 12px;
  transition: border-color .2s, transform .2s;
}
.sch-item:hover { border-color: rgba(255,107,53,0.35); transform: translateX(3px); }

.sch-break {
  background: rgba(255,215,0,0.05);
  border-color: rgba(255,215,0,0.12);
}
.sch-break:hover { border-color: rgba(255,215,0,0.3); }

.sch-time {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  min-width: 80px;
  letter-spacing: .5px;
  padding-top: 1px;
}
.sch-break .sch-time { color: var(--yellow); }

.sch-act {
  font-size: 0.78rem;
  color: rgba(255,255,255,.82);
  line-height: 1.4;
}

/* ── FOOTER NOTE ── */
.s1-footer {
  font-size: 0.74rem;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 14px;
  line-height: 1.5;
}

/* ── S2 tab active color ── */

/* ── Semana 2 slide background ── */
.slide-semana2 {
  background: #020e14;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 72px;
  padding-bottom: 40px;
}
.slide-semana2::-webkit-scrollbar { display: none; }

/* ── BG LAYER ── */
.s2-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.s2-blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: .22;
}
.s2-blob.sb1 { width: 380px; height: 380px; background: var(--cyan);  top: -90px; right: -90px; }
.s2-blob.sb2 { width: 300px; height: 300px; background: #0050ff; bottom: -70px; left: -70px; }
.s2-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ── MAIN WRAPPER ── */
.s2-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  width: 100%; max-width: 480px;
  gap: 14px;
  padding-bottom: 8px;
}

/* ── HEADER ── */
.s2-header { display: flex; flex-direction: column; gap: 6px; }

.s2-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  padding: 5px 14px;
  border-radius: 30px;
  width: fit-content;
}

.s2-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
}
.s2-title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0,229,255,0.4);
}

.s2-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 2px;
}
.s2-chip {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(0,229,255,0.07);
  border: 1px solid rgba(0,229,255,0.2);
  color: rgba(255,255,255,0.7);
}

/* ── TABS ── */
.s2-tabs-wrap { width: 100%; }
.s2-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  width: 100%;
}

.s2tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all .22s ease;
}
.s2tab:hover {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.3);
  color: var(--cyan);
}
.s2tab.active {
  background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(0,80,255,0.2));
  border-color: var(--cyan);
  color: var(--white);
  box-shadow: 0 0 16px rgba(0,229,255,0.25), inset 0 0 12px rgba(0,229,255,0.1);
}
.s2tab-emoji { font-size: 1.1rem; line-height: 1; }
.s2tab-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .5px;
}

/* ── PANELS ── */
.s2-panels { width: 100%; }

.s2-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: s2FadeIn .3s ease;
}
.s2-panel.active { display: flex; }

@keyframes s2FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.s2-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(0,80,255,0.08));
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 14px;
}
.s2-panel-emoji { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.s2-panel-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .5px;
}
.s2-panel-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}

/* ── SCHEDULE ROWS ── */
.s2-sched {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.s2-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform .2s, border-color .2s;
}
.s2-row:hover { transform: translateX(3px); border-color: rgba(0,229,255,0.3); }

.s2-time {
  flex-shrink: 0;
  width: 84px;
  min-width: 84px;
  padding: 8px 10px;
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0,229,255,0.07);
  border-right: 1px solid rgba(0,229,255,0.15);
  display: flex;
  align-items: center;
  letter-spacing: .3px;
  line-height: 1.3;
}

.s2-act {
  padding: 8px 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
  flex: 1;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
}

/* Break rows */
.s2-break .s2-time { color: var(--yellow); background: rgba(255,215,0,0.07); border-right-color: rgba(255,215,0,0.15); }
.s2-break .s2-act  { background: rgba(255,215,0,0.04); color: rgba(255,255,255,0.6); }
.s2-break:hover    { border-color: rgba(255,215,0,0.3); }

/* Highlight rows (main activities) */
.s2-highlight .s2-time { color: #fff; background: rgba(0,229,255,0.14); border-right-color: rgba(0,229,255,0.3); }
.s2-highlight .s2-act  { background: rgba(0,229,255,0.06); color: var(--white); font-weight: 500; }
.s2-highlight          { border-color: rgba(0,229,255,0.2); }
.s2-highlight:hover    { border-color: var(--cyan); }

/* End-of-day rows */
.s2-end .s2-time { color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.03); border-right-color: rgba(255,255,255,0.08); }
.s2-end .s2-act  { color: rgba(255,255,255,0.5); font-style: italic; }

/* ── FOOTER ── */
.s2-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 12px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.s2-footer-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ========================================================
   SLIDE 4 — PRICING
======================================================== */
.slide-pricing {
  background: var(--dark);
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 72px;
  padding-bottom: 40px;
}
.slide-pricing::-webkit-scrollbar { display: none; }

.pricing-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.p-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .35;
}
.pb1 { width: 350px; height: 350px; background: var(--green); top: -80px; left: -80px; }
.pb2 { width: 300px; height: 300px; background: var(--pink); bottom: -60px; right: -60px; }

.pricing-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start;
  width: 100%; max-width: 520px;
  gap: 10px;
  padding-bottom: 10px;
}
.pricing-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: -4px;
}

/* ── 2-column grid ── */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.plan {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform .25s, border-color .25s;
  backdrop-filter: blur(10px);
}
.plan:hover { transform: translateY(-3px); border-color: rgba(255,107,53,0.4); }

.plan-featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,61,221,0.1));
  box-shadow: 0 0 24px rgba(255,107,53,0.18);
}
.plan-elite {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(255,215,0,0.08));
  box-shadow: 0 0 24px rgba(0,229,255,0.15);
}

.plan-hot {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--pink));
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 1px;
  color: #fff;
}
.elite-tag {
  background: linear-gradient(90deg, var(--cyan), var(--yellow)) !important;
  color: #000 !important;
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.plan-badge { font-size: 1.2rem; line-height: 1; }
.plan-name {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--yellow);
  line-height: 1;
}
.plan-price span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,.45);
  margin-left: 2px;
}

.plan-perks {
  display: flex; flex-direction: column;
  gap: 4px; flex: 1;
}
.plan-perks li {
  font-size: 0.68rem;
  color: rgba(255,255,255,.72);
  line-height: 1.3;
}

.btn-plan {
  padding: 8px 6px;
  width: 100%;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background .2s, transform .15s;
}
.btn-plan:hover  { background: rgba(255,255,255,0.16); }
.btn-plan:active { transform: scale(0.97); }
.btn-plan.featured {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.btn-plan.elite {
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0,229,255,0.3);
}

/* Desktop: 3 columnas */
@media (min-width: 600px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================================
   SLIDE 5 — TESTIMONIOS (15 cards)
======================================================== */
.slide-testi {
  background: radial-gradient(ellipse at 90% 80%, rgba(0,229,255,0.1) 0%, var(--dark2) 60%);
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 68px;
  padding-bottom: 44px;
}
.slide-testi::-webkit-scrollbar { display: none; }

.testi-bg { position: absolute; inset: 0; overflow: hidden; }
.t-circle { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .2; }
.tc1 { width: 350px; height: 350px; background: var(--cyan); bottom: -80px; right: -80px; }
.tc2 { width: 250px; height: 250px; background: var(--pink); top: -60px; left: -40px; }

.testi-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start;
  max-width: 460px; width: 100%;
  gap: 12px;
}

.testi-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,.45);
  margin-top: -6px;
}

/* ── CARD SLIDER ── */
.testi-slider {
  width: 100%;
  position: relative;
  min-height: 170px;
}

.tcard {
  position: absolute; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 2px solid var(--tc, var(--orange));
  border-radius: 18px;
  padding: 18px 18px 16px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.tcard.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

/* Quote decoration */
.tcard-text {
  font-size: clamp(0.85rem, 2.5vw, 0.96rem);
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  font-style: italic;
  padding-left: 22px;
  position: relative;
  margin-bottom: 14px;
}
.tcard-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--tc, var(--orange));
  opacity: .6;
  position: absolute;
  left: -2px;
  top: -8px;
  line-height: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tcard-avatar {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.tcard-name {
  font-weight: 700;
  font-size: clamp(0.82rem, 2.5vw, 0.9rem);
  color: var(--white);
}
.tcard-age {
  font-size: clamp(0.68rem, 2vw, 0.74rem);
  color: rgba(255,255,255,.5);
  margin-top: 1px;
}

/* ── BOTTOM CONTROLS ── */
.testi-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.testi-counter {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  min-width: 36px;
}
.testi-counter span:first-child { color: var(--orange); font-size: 0.9rem; }
.tc-sep { color: rgba(255,255,255,.25); margin: 0 1px; }

.testi-dots {
  display: flex;
  gap: 5px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}
.tdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .3s;
  flex-shrink: 0;
}
.tdot.active {
  background: var(--orange);
  width: 16px;
  border-radius: 3px;
  box-shadow: 0 0 6px var(--orange);
}

.testi-arrows {
  display: flex;
  gap: 6px;
}
.tarrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  -webkit-tap-highlight-color: transparent;
}
.tarrow:hover  { background: var(--orange); border-color: var(--orange); color: #fff; }
.tarrow:active { transform: scale(0.92); }

/* ========================================================
   SLIDE 6 — REGISTRO
======================================================== */
.slide-register { background: var(--dark); }
.reg-bg { position: absolute; inset: 0; overflow: hidden; }
.r-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .4;
}
.rb1 { width: 300px; height: 300px; background: var(--orange); top: -60px; right: -60px; }
.rb2 { width: 250px; height: 250px; background: var(--cyan); bottom: -50px; left: -50px; }
.rb3 { width: 200px; height: 200px; background: var(--pink); top: 40%; left: 40%; }

.reg-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start;
  max-width: 440px; width: 100%;
  gap: 12px;
}
/* ── WHATSAPP BLOCK ──────────────────────────────── */
.wa-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wa-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 400px;
}
.wa-info-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wa-info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 14px;
  flex: 1;
  min-width: 110px;
  backdrop-filter: blur(8px);
}
.wa-info-icon { font-size: 1.3rem; }
.wa-info-label { font-size: 0.65rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; }
.wa-info-val   { font-size: 0.82rem; font-weight: 600; color: var(--white); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  border-radius: inherit;
}
.btn-whatsapp:hover  { transform: scale(1.03); box-shadow: 0 12px 40px rgba(37,211,102,0.6); background: #1ebe5a; }
.btn-whatsapp:active { transform: scale(0.97); }

.wa-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-icon svg { width: 26px; height: 26px; }

/* Pulse ring on WA button */
.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37,211,102,0.5);
  border-radius: 60px;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { opacity: 1; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

.wa-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}
.wa-number a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: 1px;
  transition: color .2s;
}
.wa-number a:hover { color: #25D366; }

.reg-social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}
.soc-link {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: border-color .3s;
}
.soc-link:hover { border-color: var(--orange); color: var(--orange); }

@keyframes fadeIn {
  from { opacity:0; transform: scale(.95); }
  to   { opacity:1; transform: scale(1); }
}

/* ========================================================
   SLIDE 7 — CURSO DE VERANO
======================================================== */
.slide-verano {
  background: #060d14;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 72px;
  padding-bottom: 40px;
}
.slide-verano::-webkit-scrollbar { display: none; }

.verano-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.v-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .3;
}
.vb1 { width: 320px; height: 320px; background: var(--cyan);   top: -60px;    right: -60px; }
.vb2 { width: 260px; height: 260px; background: var(--yellow); bottom: -40px; left: -40px; }
.vb3 { width: 200px; height: 200px; background: var(--green);  top: 45%;      left: 50%; }

.verano-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  width: 100%; max-width: 520px;
  gap: 14px;
  padding-bottom: 10px;
}

/* header */
.verano-header { display: flex; flex-direction: column; gap: 6px; }

/* pills */
.verano-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.vpill {
  font-size: 0.75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--vc);
  color: var(--vc);
}

/* grupos de colores */
.verano-grupos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.vgrupo {
  display: flex; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gc);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.74rem;
  color: rgba(255,255,255,.82);
}
.vg-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gc); flex-shrink: 0;
  box-shadow: 0 0 8px var(--gc);
}

/* semanas tabs */
.verano-weeks { width: 100%; display: flex; flex-direction: column; gap: 10px; }

.weeks-tabs {
  display: flex; gap: 6px;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.weeks-tabs::-webkit-scrollbar { display: none; }

.wtab {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .25s;
}
.wtab.active, .wtab:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
}

.weeks-content { position: relative; min-height: 160px; }

.wcontent {
  display: none;
  flex-direction: column; gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 16px;
  padding: 16px;
  animation: fadeSlideIn .3s ease;
}
.wcontent.active { display: flex; }

@keyframes fadeSlideIn {
  from { opacity:0; transform: translateY(10px); }
  to   { opacity:1; transform: translateY(0); }
}

.wc-title {
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 700;
  color: var(--cyan);
}
.wc-dates {
  font-size: 0.72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.wc-list {
  display: flex; flex-direction: column; gap: 5px;
  margin-top: 2px;
}
.wc-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,.8);
  padding-left: 14px;
  position: relative;
}
.wc-list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--cyan); font-size: 0.7rem;
}


@media (min-width: 768px) {
  .hero-title { font-size: 8rem; }
  .about-cards { grid-template-columns: repeat(4,1fr); }
  .plans { justify-content: center; overflow-x: visible; }
  .plan { min-width: 160px; }
}
