/* ==========================================================================
   KLA TRAINING CAMP — Estilos
   Paleta: verde agua #5CE6D1 · rosa fucsia #FF7EE5 · negro #000 · blanco #FFF
   ========================================================================== */

:root {
  --teal: #5CE6D1;
  --teal-dim: #3fc9b3;
  --pink: #FF7EE5;
  --black: #0A0A0A;
  --black-soft: #141414;
  --white: #FFFFFF;
  --off-white: #F6F6F4;
  --ink: #101012;
  --muted: #6b6b70;
  --muted-light: rgba(255,255,255,0.68);

  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;

  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.35);
  --shadow-sm: 0 10px 24px -12px rgba(0,0,0,0.25);

  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--muted); }
.section-dark p, .section-dark .lead, .section-cta p { color: var(--muted-light); }
button { font-family: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: var(--black);
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(92,230,209,0.55);
}
.btn-pink {
  background: var(--pink);
  color: var(--black);
}
.btn-pink:hover {
  box-shadow: 0 16px 30px -10px rgba(255,126,229,0.55);
}
.btn:active {
  transform: scale(0.97);
  transition: transform 140ms ease-out;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: currentColor;
}
.section-dark .btn-ghost, .section-cta .btn-ghost, .hero .btn-ghost {
  color: var(--white);
}
.btn-ghost:hover { background: rgba(0,0,0,0.06); }
.hero .btn-ghost:hover, .section-dark .btn-ghost:hover, .section-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.logo-img--footer {
  height: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a:not(.nav-cta) {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--teal);
  transition: width .25s var(--ease);
}
.main-nav a:not(.nav-cta):hover,
.main-nav a.active-link {
  color: var(--white);
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a.active-link::after {
  width: 100%;
}
.nav-cta { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 210;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.blob-teal {
  width: 560px; height: 560px;
  background: var(--teal);
  top: -180px; right: -140px;
  animation: float1 14s ease-in-out infinite;
}
.blob-pink {
  width: 420px; height: 420px;
  background: var(--pink);
  bottom: -160px; left: -120px;
  opacity: 0.35;
  animation: float2 16s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.06); }
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
}
.thai-word { color: var(--teal); }
.hero-highlight {
  display: block;
  color: var(--pink);
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.hero-stats dd {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--teal);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 8px; }
}

/* ---------- Sections (generic) ---------- */
.section {
  padding: 110px 0;
  background: var(--white);
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark h3 { color: var(--white); }
.section h2 {
  color: var(--teal);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  max-width: 760px;
}
.lead {
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 48px;
}
.pull-quote {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--pink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: normal;
  color: var(--ink);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Entrada escalonada para grids decorativos (no para datos densos como el horario) */
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(1) { transition-delay: 0ms; }
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(2) { transition-delay: 50ms; }
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(3) { transition-delay: 100ms; }
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(4) { transition-delay: 150ms; }
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(5) { transition-delay: 200ms; }
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(6) { transition-delay: 250ms; }
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(7) { transition-delay: 300ms; }
:where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal:nth-child(8) { transition-delay: 350ms; }

/* ---------- Split (El nombre) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.split-media { display: flex; justify-content: center; }
.thai-card {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 28px;
  background: var(--black);
  border: 1px solid rgba(92,230,209,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.thai-big {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.thai-caption {
  font-size: 0.8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}

/* ---------- Fotos reales (about / campamento) ---------- */
.about-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.camp-photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0 48px;
  max-height: 420px;
}
.camp-photo img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.mini-gallery figure { margin: 0; }
.mini-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.mini-gallery figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.section:not(.section-dark) .mini-gallery figcaption { color: var(--muted); }

.inline-link {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ---------- Horario en tarjetas verticales por día ---------- */
.day-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.day-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.day-card h3 {
  color: var(--teal);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.day-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.day-card li {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.82);
}
.day-card li span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.program-note {
  margin-top: 18px;
  font-size: 0.85rem;
  font-style: italic;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.feature-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
}
.feature-icon {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 16px;
  color: var(--pink);
}
.feature-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 0.92rem; }

/* ---------- People grid ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 24px;
}
.person-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.person-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.person-card--wide { grid-column: span 1; }
.person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}
.person-avatar::before { content: attr(data-initials); }
.person-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid var(--teal);
}
.people-grid--founders {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.origin-split { margin-top: 72px; }

/* Texto de person-card siempre legible, esté en sección clara u oscura */
.person-card h3 { color: var(--ink); }
.person-card p { color: var(--muted); }
.person-role {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.person-card p:last-child { margin-bottom: 0; font-size: 0.92rem; }

/* Tarjetas de fundadoras: foto + texto, más grandes y horizontales */
.person-card--founder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 36px 32px;
}
.person-photo--lg {
  width: 106px;
  height: 106px;
  margin-bottom: 0;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .person-card--founder { flex-direction: row; }
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 36px 0 56px;
}
.countdown-item {
  background: var(--black-soft);
  border: 1px solid rgba(92,230,209,0.25);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  min-width: 92px;
  text-align: center;
}
.countdown-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.countdown-item small {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}

.camp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.camp-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.camp-card h3 { color: var(--white); margin-bottom: 18px; }
.check-list li, .cross-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.check-list li:last-child, .cross-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.cross-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ---------- Fit cards (¿Es para ti?) — distinto de camp-card ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.fit-card {
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative;
}
.fit-card--yes { background: linear-gradient(155deg, rgba(92,230,209,0.16), rgba(92,230,209,0.04)); border: 1.5px solid rgba(92,230,209,0.4); }
.fit-card--no { background: linear-gradient(155deg, rgba(255,126,229,0.14), rgba(255,126,229,0.03)); border: 1.5px solid rgba(255,126,229,0.35); }
.fit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.fit-card--yes .fit-mark { background: var(--teal); color: var(--black); }
.fit-card--no .fit-mark { background: var(--pink); color: var(--black); }
.fit-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.fit-card p { font-size: 0.98rem; color: var(--muted); }
.fit-card p:last-child { margin-bottom: 0; }

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.mv-card {
  border-radius: var(--radius);
  padding: 40px 34px;
  color: var(--black);
}
.mv-card h3 { margin-bottom: 16px; font-size: 1.5rem; }
.mv-card p { color: rgba(0,0,0,0.72); margin: 0; font-size: 1rem; }
.mv-teal { background: linear-gradient(155deg, var(--teal), #a7f3e8); }
.mv-pink { background: linear-gradient(155deg, var(--pink), #ffc4f2); }

/* ---------- Value grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.value-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  position: relative;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 26px;
  width: 40px; height: 3px;
  background: var(--pink);
  border-radius: 2px;
}
.value-card h3 { color: var(--white); font-size: 1.05rem; margin: 14px 0 8px; }
.value-card p { margin: 0; font-size: 0.92rem; }

/* ---------- Spaced subhead (Programa) ---------- */
.subhead-spaced {
  margin-top: 56px;
  font-size: 1.1rem;
}

.camp-reassurance {
  color: var(--pink);
  font-weight: 700;
  max-width: 640px;
  margin-top: 28px;
  font-size: 1.05rem;
}

/* ---------- Precio ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 24px;
}
.price-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.1);
}
.price-card--highlight {
  background: linear-gradient(155deg, var(--teal), #a7f3e8);
  color: var(--black);
  border: none;
}
.price-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--teal);
  margin-bottom: 18px;
}
.price-card--highlight .price-tag { background: var(--black); color: var(--teal); }
.price-tag--muted { background: rgba(255,255,255,0.1); color: var(--white); }
.price-window {
  font-size: 0.88rem;
  margin-bottom: 20px;
  opacity: 0.85;
}
.price-card--highlight .price-window { color: var(--black); }
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1.4rem; font-weight: 600; }
.price-amount-clp {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  opacity: 0.85;
  margin-bottom: 10px;
}
.price-amount-clp span { font-size: 0.85rem; font-weight: 600; }
.price-usd {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 22px;
}
.price-usd span { font-size: 0.78rem; }
.price-breakdown { display: flex; flex-direction: column; gap: 10px; }
.price-breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  font-size: 0.92rem;
}
.price-breakdown em { font-style: normal; font-weight: 500; opacity: 0.75; font-size: 0.82rem; }
.price-card:not(.price-card--highlight) .price-breakdown li { border-top-color: rgba(255,255,255,0.1); }
.price-note {
  max-width: 720px;
  margin-top: 28px;
  font-size: 0.85rem;
}

/* ---------- Pills (valores) ---------- */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.pill {
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--off-white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  border: 2px solid var(--teal);
  color: var(--ink);
}
.pill-pink { border-color: var(--pink); }

/* ---------- FAQ / Accordion ---------- */
.accordion { max-width: 760px; }
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.accordion-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.1rem;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--black);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.accordion-panel p { padding-bottom: 22px; margin: 0; }
.section-dark .accordion-item { border-bottom-color: rgba(255,255,255,0.14); }
.section-dark .accordion-trigger { color: var(--white); }

/* ---------- CTA / Contacto ---------- */
.section-cta {
  background: linear-gradient(165deg, #0a0a0a 0%, #161616 60%, #0a0a0a 100%);
  color: var(--white);
  position: relative;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: var(--pink);
  filter: blur(120px);
  opacity: 0.28;
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; }

.contact-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.6);
}
.form-row input, .form-row textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  resize: vertical;
  transition: border-color .2s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-note {
  min-height: 22px;
  font-size: 0.9rem;
  color: var(--teal);
  margin: 4px 0 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}
.form-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.direct-contact {
  margin-top: 28px;
  font-size: 0.95rem;
}
.direct-contact a { color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand p { margin: 8px 0 0; font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  padding: 24px 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--black);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 150;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta {
  position: fixed;
  left: 24px;
  bottom: 24px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, box-shadow .3s var(--ease);
  z-index: 150;
}
.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(255,126,229,0.55);
}
@media (max-width: 640px) {
  .floating-cta { left: 16px; bottom: 16px; padding: 12px 18px; font-size: 0.8rem; }
}

/* ==========================================================================
   Movimiento reducido — más suave, no cero
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob-teal, .blob-pink, .scroll-cue span {
    animation: none;
  }
  .reveal {
    transition-duration: 150ms;
    transform: none;
  }
  :where(.feature-grid, .people-grid, .value-grid, .pill-grid, .camp-grid, .fit-grid, .price-grid) > .reveal {
    transition-delay: 0ms !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,0.4);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 24px; }
  .main-nav ul a { font-size: 1.15rem; }
  .nav-cta { align-self: flex-start; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { padding-top: 120px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 24px; }
  .countdown { gap: 12px; }
  .countdown-item { padding: 16px 14px; min-width: 74px; }
  .countdown-item span { font-size: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .person-card--wide { grid-column: span 1; }
  .pull-quote { font-size: 1.05rem; }
}
