/* NuMe — estilos de las landings por rubro (rotiserías, viandas, bares).
   Hoja aparte y deliberadamente chica: index.html mantiene su CSS inline,
   así tocar estas páginas no puede romper la home. */

:root {
  --bg: #f3efe8;
  --bg-2: #e9e3d6;
  --ink: #0d0d0c;
  --ink-soft: #4a4845;
  --ink-faint: #8a857a;
  --line: #d6cfbf;
  --fluo: #d8ff3a;
  --coral: #ff5a3c;
  --paper-card: #ffffff;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Botones ─────────────────────────────────────────────── */
.btn {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 999px;
  border: 1.5px solid var(--ink); background: var(--ink); color: var(--bg);
  cursor: pointer; transition: transform .12s, box-shadow .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn:active { transform: scale(0.97); }
.btn.fluo { background: var(--fluo); color: var(--ink); }
.btn.fluo:hover { box-shadow: 0 0 0 4px rgba(216,255,58,0.3); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.lg { padding: 16px 28px; font-size: 16px; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav { border-bottom: 1.5px solid var(--ink); background: var(--bg); position: sticky; top: 0; z-index: 40; }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 28px;
  letter-spacing: -0.04em; display: inline-flex; align-items: center;
}
.logo .me { background: var(--fluo); padding: 0 6px; margin-left: 1px; border-radius: 4px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 72px 0 64px; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(38px, 6vw, 68px); letter-spacing: -0.03em; line-height: 0.98;
  margin: 0 0 20px; max-width: 15ch;
}
.hero .highlight { background: var(--fluo); padding: 0 8px; border-radius: 6px; }
.hero .lead { font-size: 19px; color: var(--ink-soft); line-height: 1.5; max-width: 62ch; margin: 0 0 28px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .foot {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink-faint); margin-top: 18px;
}
.crumbs { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; color: var(--ink-faint); padding: 18px 0 0; }
.crumbs a:hover { color: var(--ink); }

/* ── Secciones ───────────────────────────────────────────── */
.section { padding: 80px 0; }
.section.alt { background: var(--bg-2); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.section.dark { background: var(--ink); color: var(--bg); }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--ink-soft); display: block; margin-bottom: 14px;
}
.section.dark .section-eyebrow, .section.dark .sub { color: rgba(243,239,232,0.65); }
.section h2 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 14px;
}
.section .sub { font-size: 18px; color: var(--ink-soft); max-width: 62ch; margin: 0 0 44px; }

/* ── Grilla de features ──────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  border: 1.5px solid var(--ink); border-radius: 20px;
  padding: 24px; background: var(--paper-card); transition: transform .25s;
}
.feature:hover { transform: translateY(-3px); }
.feature .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--fluo); border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature .icon svg { width: 22px; height: 22px; color: var(--ink); }
/* color explícito: la tarjeta es blanca incluso dentro de .section.dark */
.feature h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em; margin: 0 0 6px; color: var(--ink);
}
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.45; margin: 0; }

/* ── Pasos numerados ─────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { border: 1.5px solid var(--ink); border-radius: 22px; padding: 26px; background: var(--paper-card); }
.step.fluo { background: var(--fluo); }
.step .label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
  font-weight: 700; color: var(--ink-soft); text-transform: uppercase;
}
.step h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin: 10px 0 8px; color: var(--ink); }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* ── Tarjeta de demo en vivo ─────────────────────────────── */
.live-demo {
  border: 1.5px solid var(--ink); border-radius: 22px; padding: 28px;
  background: var(--paper-card); max-width: 620px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.live-demo .kind {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
  font-weight: 700; color: var(--ink-soft); text-transform: uppercase;
}
.live-demo h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.live-demo p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 6px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  border: 1.5px solid var(--ink); border-radius: 16px;
  background: var(--paper-card); padding: 18px 22px;
}
.faq summary {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: 'JetBrains Mono', monospace; color: var(--ink-faint); }
.faq details[open] summary::after { content: '−'; }
.faq p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 12px 0 0; }

/* ── CTA final ───────────────────────────────────────────── */
.cta { padding: 80px 0; }
.cta-card {
  border: 1.5px solid var(--ink); border-radius: 28px; background: var(--ink);
  color: var(--bg); padding: 56px 40px; text-align: center;
}
.cta-card h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.05; }
.cta-card p { color: rgba(243,239,232,0.7); font-size: 17px; margin: 0 0 26px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { border-top: 1.5px solid var(--ink); padding: 40px 0; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer .links a { font-size: 14px; color: var(--ink-soft); }
.footer .links a:hover { color: var(--ink); }
.footer .meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; color: var(--ink-faint); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--ink); background: var(--paper-card);
  color: var(--ink); flex-shrink: 0;
  transition: background .15s, transform .12s;
}
.social:hover { background: var(--fluo); }
.social:active { transform: scale(0.95); }
.social svg { width: 18px; height: 18px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .features, .steps { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 44px; }
  .nav-links a:not(.btn) { display: none; }
  .cta-card { padding: 44px 22px; }
}
@media (max-width: 560px) {
  .features, .steps { grid-template-columns: 1fr; }
}
