/* ============================================================
   Makers Lab · landing styles (mobile-first)
   See STYLEGUIDE.md for the design system.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Color */
  --bg:        #F4EFE3;
  --paper:     #FBF8F0;
  --ink:       #0D0D0D;
  --ink-soft:  #3a3530;
  --mute:      #7c766b;
  --lime:      #C8F23C;
  --lime-d:    #A6CC22;
  --mag:       #E5197E;
  --mag-d:     #B70F60;
  --cyan:      #2BCFEE;
  --yellow:    #FFD83A;
  --orange:    #FF6B1A;
  --dark-band: #0A0F1E;

  /* Type */
  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    ui-monospace, 'SFMono-Regular', 'Menlo', 'Consolas', monospace;

  /* Space (4px scale) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-full: 999px;

  /* Borders + shadows (sticker) */
  --bw: 2.5px;
  --border: var(--bw) solid var(--ink);
  --sticker-sm:    4px 4px 0 var(--ink);
  --sticker:       5px 5px 0 var(--ink);
  --sticker-lg:    6px 6px 0 var(--ink);
  --sticker-hover: 7px 7px 0 var(--ink);

  /* Layout */
  --container: 1180px;

  /* Motion */
  --t-fast: 120ms;
  --t-base: 200ms;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    linear-gradient(rgba(13,13,13,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,13,13,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
blockquote { margin: 0; }
address { font-style: normal; }
input, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 3. Utility / primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  top: -100px; left: var(--s-4);
  background: var(--ink); color: var(--lime);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-sm);
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: var(--s-4); }

.display { font-family: var(--font-display); font-weight: 900; line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; }
.mono    { font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; font-weight: 600; }
.small   { font-size: 13px; }
.muted   { color: var(--mute); }
.lime    { color: var(--lime); }
.mag     { color: var(--mag); }
.mag-d   { color: var(--mag-d); }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mag-d);
}
.label--lime { color: var(--lime); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: 12px 22px;
  background: var(--mag);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--sticker);
  transition: transform var(--t-fast) ease-out, box-shadow var(--t-fast) ease-out;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: var(--sticker-hover); }
.btn:active { transform: translate(2px, 2px);   box-shadow: 2px 2px 0 var(--ink); }
.btn--lime  { background: var(--lime);  color: var(--ink); }
.btn--white { background: var(--paper); color: var(--ink); }
.btn--ghost { background: transparent;  color: var(--ink); box-shadow: none; }

/* ---------- 5. Pills, chips, tags ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 5px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--r-full);
  background: var(--paper);
  font-size: 12px;
  font-weight: 700;
}
.pill--lime { background: var(--lime); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 5px 12px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-full);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chip-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag--lime   { background: var(--lime);   color: var(--ink); }
.tag--yellow { background: var(--yellow); color: var(--ink); }

/* ---------- 6. Sticker card ---------- */
.sticker {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sticker);
  padding: var(--s-5) var(--s-4);
  transition: transform var(--t-base) ease-out, box-shadow var(--t-base) ease-out;
}
.sticker--lime   { background: var(--lime); }
.sticker--mag    { background: var(--mag);    color: var(--paper); }
.sticker--cyan   { background: var(--cyan); }
.sticker--yellow { background: var(--yellow); }
.sticker--orange { background: var(--orange); color: var(--paper); }
.sticker--ink    { background: var(--dark-band); color: var(--paper); }

/* ---------- 7. Halo highlight ---------- */
.halo {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.halo::before {
  content: "";
  position: absolute;
  inset: -3px -8px;
  background: var(--lime);
  border: var(--border);
  border-radius: 10px;
  z-index: -1;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.halo--yellow::before { background: var(--yellow); }
.halo--cyan::before   { background: var(--cyan); }
.halo--yellow         { color: var(--mag); }
.dot                  { color: var(--ink); }

/* ---------- 8. Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(13,13,13,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-3);
}
.nav__logo img { height: 72px; width: auto; }
@media (min-width: 900px) {
  .nav__logo img { height: 100px; }
}
@media (min-width: 1200px) {
  .nav__logo img { height: 120px; }
}
.nav__links { display: none; }
.nav__cta   { display: none; }

.nav__burger {
  width: 44px; height: 44px;
  background: var(--paper);
  border: var(--border);
  border-radius: 12px;
  box-shadow: var(--sticker-sm);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__burger span {
  display: block;
  width: 18px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__menu {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-4) 20px var(--s-5);
  background: var(--paper);
  border-bottom: var(--border);
}
.nav__menu[hidden] { display: none; }
.nav__menu a {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--s-3) 0;
  border-bottom: 1.5px dashed rgba(13,13,13,0.2);
}
.nav__menu a:last-child { border-bottom: none; margin-top: var(--s-2); }

/* ---------- 9. Hero ---------- */
.hero {
  padding: var(--s-5) 0 var(--s-7);
  position: relative;
}
.hud {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.hud__loc { text-align: right; }
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.display--xl { font-size: clamp(40px, 12vw, 96px); margin-bottom: var(--s-5); }
.lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 var(--s-5);
  max-width: 60ch;
}
.lead--small  { font-size: 15px; }
.lead--light  { color: rgba(251,248,240,0.85); }
.lead strong  { color: var(--ink); }
.lead--light strong { color: var(--paper); }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--sticker);
  overflow: hidden;
}
.hero__stats li {
  padding: var(--s-4);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.hero__stats li:nth-child(2n) { border-right: none; }
.hero__stats li:nth-last-child(-n+2) { border-bottom: none; }
.stat__n { font-size: 24px; display: block; line-height: 1; margin-bottom: 4px; }
.stat__n--mag { color: var(--mag); }
.stat__l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}

/* ---------- 9.5. Hero visual (terminal + mascot + sticker) ---------- */
.hero__grid { display: grid; gap: var(--s-6); }
.hero__visual {
  position: relative;
  min-height: 380px;
  margin-top: var(--s-4);
}

/* Terminal-style photo card */
.terminal {
  margin: 0;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sticker);
  overflow: hidden;
  transform: rotate(-2deg);
  width: 100%;
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--dark-band);
  border-bottom: 2px solid var(--ink);
}
.terminal__dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.terminal__path {
  margin-left: var(--s-2);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 0.04em;
}
.terminal__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0d0d0d;
  overflow: hidden;
}
.terminal__photo > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Slider inside terminal */
.slider__track {
  position: absolute;
  inset: 0;
}
.slider__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1400ms ease;
}
.slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 120ms ease, background 120ms ease;
}
.slider__btn:hover { background: var(--lime); }
.slider__btn:active { transform: translateY(-50%) translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.slider__btn--prev { left: 10px; }
.slider__btn--next { right: 10px; }
.slider__dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 3;
  padding: 4px 8px;
  background: rgba(13,13,13,0.45);
  border-radius: var(--r-full);
}
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--paper);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.slider__dot[aria-current="true"] {
  background: var(--lime);
  border-color: var(--lime);
}
@media (prefers-reduced-motion: reduce) {
  .slider__slide { transition: none; transform: none; }
}

/* ---------- Gallery ---------- */
.gallery__head {
  margin-bottom: var(--s-6);
}
.gallery__title {
  margin: var(--s-2) 0 var(--s-3);
}
.gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sticker);
  background: var(--paper);
  aspect-ratio: 4 / 3;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.gallery__item:nth-child(3n+1) { transform: rotate(-1.2deg); }
.gallery__item:nth-child(3n+2) { transform: rotate(0.8deg); }
.gallery__item:nth-child(3n+3) { transform: rotate(-0.4deg); }
.gallery__item:hover { transform: rotate(0deg) scale(1.02); z-index: 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.gallery__item:hover img { transform: scale(1.05); }
@media (min-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
    padding: 0 var(--s-6);
  }
}
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__item,
  .gallery__item img,
  .gallery__item:hover,
  .gallery__item:hover img { transition: none; transform: none; }
}
.terminal__photo-label {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.terminal__log {
  margin: 0;
  padding: 14px 18px;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.terminal__log .mag { color: var(--mag); font-weight: 700; }
.terminal__log .lime-d { color: var(--lime-d); font-weight: 700; }
.caret {
  display: inline-block;
  width: 8px; height: 0.9em;
  background: currentColor;
  vertical-align: -2px;
  margin-left: 3px;
  animation: caret-blink 1s steps(1) infinite;
}
@keyframes caret-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Robot mascot + speech bubble */
.mascot {
  position: absolute;
  top: -20px;
  right: -8px;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}
.mascot .bot {
  width: 100%;
  height: auto;
  overflow: visible;
  animation: bot-bounce 2.8s ease-in-out infinite;
  transform-origin: center bottom;
}
.mascot .bot__arm {
  transform-origin: 160px 192px;
  animation: bot-wave 1.6s ease-in-out infinite;
}
@keyframes bot-bounce {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50%      { transform: translateY(-8px) rotate(6deg); }
}
@keyframes bot-wave {
  0%, 100% { transform: rotate(-12deg); }
  50%      { transform: rotate(18deg); }
}
.bubble {
  position: absolute;
  top: -28px;
  right: 120px;
  background: var(--yellow);
  border: var(--border);
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-6deg);
  white-space: nowrap;
}
.bubble::after {
  content: "";
  position: absolute;
  left: -10px; bottom: 14px;
  width: 16px; height: 16px;
  background: var(--yellow);
  border-left: var(--border);
  border-bottom: var(--border);
  transform: rotate(45deg);
}

/* Magenta clase-prueba sticker */
.promo-sticker {
  position: absolute;
  bottom: -10px;
  right: -4px;
  max-width: 200px;
  padding: 12px 18px;
  background: var(--mag);
  color: var(--paper);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sticker);
  transform: rotate(4deg);
  z-index: 2;
  animation: promo-bounce 3s ease-in-out infinite;
}
.promo-sticker .mono {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.85;
  margin-bottom: 2px;
}
.promo-sticker .display {
  display: block;
  font-size: 20px;
  line-height: 1;
}
.promo-sticker > span:last-child {
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
@keyframes promo-bounce {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%      { transform: translateY(-6px) rotate(4deg); }
}

/* Dotted trajectory (desktop only — hidden on mobile to reduce clutter) */
.hero__trail {
  display: none;
  position: absolute;
  top: -10px;
  left: -20px;
  width: 240px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}

/* Tiny rocket decoration */
.rocket {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 28px;
  left: -2px;
  transform: rotate(-20deg);
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(2px 2px 0 #0D0D0D);
}

/* ---------- 10. Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--lime);
  border-block: var(--border);
  overflow: hidden;
  padding-block: var(--s-3);
}
.marquee__track {
  display: flex;
  gap: var(--s-7);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  animation: scroll 45s linear infinite;
  will-change: transform;
}
.marquee__track span { display: inline-block; padding-inline: var(--s-5); }
.marquee em { color: var(--mag); font-style: normal; margin-inline: var(--s-3); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 11. Sections ---------- */
.section { padding: var(--s-7) 0; }
.section--dark {
  background: var(--dark-band);
  color: var(--paper);
  border-block: var(--border);
  margin-block: var(--s-7);
}
.section__head {
  margin-bottom: var(--s-6);
  max-width: 760px;
}
.section__head .display {
  font-size: clamp(28px, 7vw, 64px);
  margin-block: var(--s-3) var(--s-3);
}

/* ---------- 12. Grids ---------- */
.grid {
  display: grid;
  gap: var(--s-3);
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--5 { grid-template-columns: 1fr; }

/* ---------- 13. STEAM cards ---------- */
.steam__card {
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-4) var(--s-5);
}
.steam__card .mono { justify-self: end; align-self: start; opacity: 0.7; }
.steam__letter {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.82;
  grid-column: 1;
  grid-row: 1;
}
.steam__word {
  font-size: 18px;
  letter-spacing: 0.02em;
  grid-column: 1 / -1;
  margin-top: var(--s-2);
}
.steam__card p {
  margin: var(--s-2) 0 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  grid-column: 1 / -1;
}
.sticker--mag.steam__card p { color: var(--paper); }

/* ---------- 14. Generic numbered card ---------- */
.card { padding: var(--s-5) var(--s-4); }
.card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-3);
}
.card__n { font-size: 36px; line-height: 1; }
.card__head .mono { font-size: 10px; opacity: 0.7; }
.card__t { font-size: 20px; line-height: 1.05; margin-bottom: var(--s-2); }
.card p  { margin: 0; font-size: 14px; line-height: 1.5; font-weight: 500; }
.sticker--mag.card p { color: var(--paper); }

/* ---------- 15. Logistics ---------- */
.logistics {
  margin-top: var(--s-5);
  display: grid;
  gap: var(--s-5);
}
.logistics__amount { font-size: 48px; line-height: 1; margin: var(--s-1) 0 var(--s-2); }
.logistics__unit { font-size: 16px; color: var(--mute); margin-left: 6px; font-weight: 600; }
.logistics__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-4);
  padding-top: var(--s-4);
  border-top: 1.5px dashed rgba(13,13,13,0.2);
}
.logistics__list li span { display: block; font-size: 10px; letter-spacing: 0.12em; }
.logistics__list strong { display: block; font-size: 14px; text-transform: uppercase; margin-top: 2px; }
.logistics__cta { justify-self: stretch; }

/* ---------- 16. Campamento ---------- */
.camp {
  position: relative;
  padding: var(--s-5) 0;
}
.camp__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.camp__title {
  font-size: clamp(36px, 11vw, 80px);
  margin-bottom: var(--s-4);
}
.glow-lime { color: var(--lime); text-shadow: 0 0 22px rgba(200,242,60,0.55); }
.glow-mag  { color: var(--mag);  text-shadow: 0 0 22px rgba(229,25,126,0.55); }
.glow-cyan { color: var(--cyan); text-shadow: 0 0 22px rgba(43,207,238,0.55); }
.camp__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.camp__pilares { margin-top: var(--s-5); }

/* ---------- 17. Testimonials ---------- */
.testimonial { padding: var(--s-5); }
.testimonial blockquote {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin-block: var(--s-3) var(--s-4);
}
.testimonial__foot {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 2px dashed rgba(13,13,13,0.3);
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 12px;
}
.testimonial__foot strong { font-size: 14px; display: block; }
.testimonial__foot .muted { font-size: 10px; }
.avatar--star {
  background: #FFD83A;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}
.stars {
  color: #E5A100;
  letter-spacing: 1px;
}
.sticker--mag .stars,
.sticker--ink .stars { color: #FFD83A; }
.testimonials__more {
  margin-top: var(--s-5);
  text-align: center;
}

/* ---------- 18. Sagan ---------- */
.sagan__inner {
  text-align: center;
  max-width: 960px;
}
.sagan__quote {
  font-size: clamp(22px, 5vw, 44px);
  line-height: 1.18;
  margin-block: var(--s-5);
}

/* ---------- 19. Pricing ---------- */
.plans { gap: var(--s-4); }
.plan { padding: var(--s-6) var(--s-5); position: relative; }
.plan__head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: var(--s-2); }
.plan__name { font-size: 28px; }
.plan__freq { font-size: 12px; opacity: 0.85; }
.plan__price { display: flex; align-items: baseline; gap: var(--s-2); margin-block: var(--s-5) var(--s-4); }
.plan__amount { font-size: 64px; line-height: 1; }
.plan__amount--lime { color: var(--lime); }
.plan__unit { font-size: 15px; opacity: 0.85; font-weight: 600; }
.plan__features {
  display: grid;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}
.plan__features li {
  padding-bottom: var(--s-2);
  border-bottom: 1.5px dashed rgba(13,13,13,0.25);
  padding-left: 22px;
  position: relative;
}
.plan__features li:last-child { border-bottom: none; }
.plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  font-weight: 900;
  color: var(--mag);
}
.plan--featured .plan__features li { border-color: rgba(251,248,240,0.35); }
.plan--featured .plan__features li::before { color: var(--lime); }
.plan__cta { width: 100%; }
.plan__badge {
  position: absolute;
  top: -18px; right: 16px;
  background: var(--lime);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(6deg);
}

.bonus { margin-top: var(--s-5); }
.bonus__item {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-4);
}
.bonus__icon {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}
.bonus__item strong { display: block; font-size: 14px; text-transform: uppercase; margin-top: 2px; }

/* ---------- 20. FAQ ---------- */
.faq__layout { display: grid; gap: var(--s-6); }
.faq__intro h2 { font-size: clamp(28px, 7vw, 52px); }
.faq__list { display: grid; gap: var(--s-3); }
.faq {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sticker-sm);
}
.faq summary {
  list-style: none;
  padding: var(--s-3) var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "[+]";
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--mag);
  flex-shrink: 0;
}
.faq[open] { background: var(--lime); }
.faq[open] summary::after { content: "[-]"; color: var(--ink); }
.faq p {
  padding: 0 var(--s-4) var(--s-4);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ---------- 21. Mapa ---------- */
.map { padding: 0; overflow: hidden; display: grid; gap: 0; }
.map__info {
  padding: var(--s-6);
  background: var(--yellow);
}
.map__info h2 { font-size: clamp(36px, 9vw, 52px); margin: var(--s-3) 0 var(--s-4); }
.map__info address { font-size: 15px; line-height: 1.6; font-weight: 500; }
.map__info address strong { font-family: var(--font-display); font-size: 15px; text-transform: uppercase; }
.map__pills { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.map__cta { margin-top: var(--s-4); }
.map__viz { background: #dfeac6; height: 260px; }
.map__viz svg { width: 100%; height: 100%; }
.pulse { transform-origin: center; animation: pulse 2s ease-out infinite; }
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ---------- 22. CTA / form ---------- */
.cta { padding: var(--s-7) var(--s-5); position: relative; }
.cta__title { font-size: clamp(40px, 12vw, 88px); margin: var(--s-3) 0 var(--s-4); line-height: 0.92; }
.form {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.form__row { display: grid; gap: var(--s-3); }
.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.form input, .form textarea {
  width: 100%;
  padding: 13px 18px;
  border: var(--border);
  border-radius: var(--r-full);
  background: var(--paper);
  font-size: 16px;          /* iOS no-zoom */
  font-weight: 500;
  transition: box-shadow var(--t-fast);
}
.form textarea { border-radius: var(--r-lg); resize: vertical; min-height: 90px; font-family: inherit; }
.form input:focus, .form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--lime), 0 0 0 5px var(--ink);
}
.form__full { display: block; }
.form__submit { width: 100%; margin-top: var(--s-2); padding: 15px 22px; font-size: 16px; }
.form__status {
  min-height: 1.2em;
  margin: var(--s-2) 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
}
.form__status.ok    { color: var(--mag-d); }
.form__status.error { color: #c0392b; }
.cta__contact { margin-top: var(--s-5); font-size: 13px; font-weight: 600; }
.cta__contact a { text-decoration: none; }
.cta__contact a:hover { text-decoration: underline; }

/* ---------- 23. Footer ---------- */
.footer {
  background: var(--dark-band);
  color: var(--paper);
  border-top: var(--border);
  padding-block: var(--s-7) var(--s-5);
}
.footer__grid {
  display: grid;
  gap: var(--s-6);
  margin-bottom: var(--s-5);
}
.footer__logo {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: var(--s-2);
  display: inline-block;
}
.footer__logo img { height: 40px; width: auto; }
.footer__about {
  margin-top: var(--s-3);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(251,248,240,0.8);
  max-width: 32ch;
}
.footer__links {
  display: grid;
  gap: 10px;
  margin-top: var(--s-3);
  font-size: 14px;
}
.footer__links a {
  color: rgba(251,248,240,0.8);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--lime); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding-top: var(--s-4);
  border-top: 1.5px dashed rgba(251,248,240,0.2);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(251,248,240,0.6);
}

/* ---------- 24. WhatsApp / sticky CTA ---------- */
.whatsapp {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  width: 60px; height: 60px;
  background: #25D366;
  border: var(--border);
  border-radius: 50%;
  box-shadow: var(--sticker);
  display: grid;
  place-items: center;
  z-index: 100;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp:hover { transform: translate(-2px,-2px); box-shadow: var(--sticker-hover); }

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom));
  transform: translate(-50%, 120%);
  z-index: 99;
  background: var(--lime);
  border: var(--border);
  border-radius: var(--r-full);
  padding: 8px 8px 8px 18px;
  box-shadow: var(--sticker);
  display: flex;
  gap: var(--s-3);
  align-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  transition: transform var(--t-base) ease-out;
  max-width: calc(100% - 32px);
  white-space: nowrap;
}
.sticky-cta[hidden] { display: none; }
.sticky-cta.is-visible { transform: translate(-50%, 0); }
.sticky-cta .btn { padding: 8px 14px; min-height: 36px; font-size: 13px; box-shadow: 3px 3px 0 var(--ink); }
@media (max-width: 540px) {
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 6px; left: auto; right: 16px; transform: translate(0, 120%); }
  .sticky-cta.is-visible { transform: translate(0, 0); }
  .whatsapp { bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ---------- 25. Animations ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
  .pulse { animation: none; opacity: 0; }
}

/* ============================================================
   Breakpoints (mobile-first → up)
   ============================================================ */

/* --- ≥ 600px : tablet pequeña --- */
@media (min-width: 600px) {
  .container { padding-inline: 28px; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .hero__stats li,
  .hero__stats li:nth-child(2n) { border-right: 2px solid var(--ink); border-bottom: none; }
  .hero__stats li:last-child { border-right: none; }
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .logistics { grid-template-columns: auto 1fr auto; align-items: center; }
  .logistics__list { border-top: none; padding-top: 0; padding-left: var(--s-5); border-left: 2px dashed rgba(13,13,13,0.2); grid-template-columns: repeat(3, 1fr); }
  .logistics__cta { justify-self: end; }
  .map { grid-template-columns: 1fr 1.3fr; }
  .map__viz { height: auto; min-height: 360px; }
  .marquee__track { font-size: 24px; }
}

/* --- Hero visual mobile tweaks --- */
@media (max-width: 599px) {
  .mascot { width: 100px; top: -10px; right: 0; }
  .bubble {
    font-size: 11px;
    padding: 8px 12px;
    top: -36px;
    right: 80px;
    white-space: nowrap;
  }
  .bubble::after { bottom: 10px; left: -8px; width: 14px; height: 14px; }
  .promo-sticker { right: -4px; bottom: -16px; max-width: 175px; padding: 10px 14px; }
  .promo-sticker .display { font-size: 17px; }
  .promo-sticker > span:last-child { font-size: 10px; }
  .terminal { transform: rotate(-1.5deg); }
  .hero__visual { min-height: 360px; padding-top: 32px; }
}

/* --- ≥ 900px : tablet / desktop --- */
@media (min-width: 900px) {
  .container { padding-inline: 40px; }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: var(--r-full);
    padding: 4px;
    box-shadow: var(--sticker-sm);
  }
  .nav__links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--r-full);
    transition: background var(--t-fast);
  }
  .nav__links a:hover { background: var(--lime); }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__menu { display: none !important; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
  .grid { gap: var(--s-4); }
  .hero { padding-block: var(--s-7) var(--s-9); }
  .hero__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-7);
    align-items: center;
  }
  .hero__visual { min-height: auto; margin-top: 0; padding-top: 60px; padding-bottom: 40px; }
  .terminal { width: 86%; margin-left: var(--s-3); }
  .mascot { width: 200px; top: -10px; right: -28px; }
  .bubble {
    font-size: 14px;
    padding: 12px 18px;
    top: -8px;
    right: 160px;
  }
  .promo-sticker {
    bottom: 28px;
    right: -28px;
    max-width: 260px;
    padding: 18px 22px;
  }
  .promo-sticker .mono { font-size: 11px; margin-bottom: 4px; }
  .promo-sticker .display { font-size: 28px; line-height: 1; }
  .promo-sticker > span:last-child { font-size: 13px; margin-top: 6px; }
  .hero__trail { display: block; }
  .section { padding-block: var(--s-9); }
  .faq__layout { grid-template-columns: 1fr 1.8fr; gap: var(--s-8); }
  .faq__intro { position: sticky; top: 100px; align-self: start; }
  .plans { gap: var(--s-5); }
  .camp__title { font-size: clamp(56px, 8vw, 92px); }
}

/* --- ≥ 1200px : desktop ancho --- */
@media (min-width: 1200px) {
  .container { padding-inline: 56px; }
  .display--xl { font-size: 104px; }
  .section__head .display { font-size: 64px; }
  .hero__pills { gap: var(--s-3); }
  .hero__stats { box-shadow: var(--sticker-lg); }
}

/* ---------- 26. Print ---------- */
@media print {
  .nav, .whatsapp, .sticky-cta, .marquee, .section--dark { display: none !important; }
  body { background: #fff; }
  * { box-shadow: none !important; }
}
