/* ============================================================
   MENU ÁGIL — Design System
   Clean / arejado / profissional · Azul confiança + verde "live"
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-soft-2: #eef3fa;
  --bg-navy: #0a1326;
  --bg-navy-2: #0f1b34;

  /* Ink */
  --ink: #0b1424;
  --ink-2: #46506a;
  --ink-3: #838ea4;
  --on-navy: #eaf0fb;
  --on-navy-2: #9fb0cd;

  /* Lines */
  --line: #e5eaf2;
  --line-2: #d7deea;
  --line-navy: rgba(255,255,255,.10);

  /* Brand — azul */
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --primary-700: #1742b0;
  --primary-soft: #e9f1fe;
  --primary-soft-2: #d9e6fd;
  --primary-ink: #15387f;

  /* Accent — verde (status ao vivo / positivo) */
  --green: #16a34a;
  --green-soft: #e7f6ec;
  --amber: #d97706;
  --amber-soft: #fdf0dd;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows (navy-tinted, soft) */
  --sh-xs: 0 1px 2px rgba(13,28,58,.06);
  --sh-sm: 0 2px 8px rgba(13,28,58,.06), 0 1px 2px rgba(13,28,58,.05);
  --sh-md: 0 12px 28px -10px rgba(13,28,58,.18), 0 4px 10px -6px rgba(13,28,58,.10);
  --sh-lg: 0 36px 70px -28px rgba(13,28,58,.40), 0 12px 28px -18px rgba(13,28,58,.22);
  --sh-primary: 0 16px 32px -12px rgba(37,99,235,.45);

  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html, body { overflow-x: hidden; max-width: 100%; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: var(--on-navy); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--primary);
}
.eyebrow::before {
  content: ""; width: 18px; height: 1.5px; background: var(--primary); border-radius: 2px;
}
.section--navy .eyebrow { color: #7fb0ff; }
.section--navy .eyebrow::before { background: #7fb0ff; }

.h-section {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.03em;
  margin: 18px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.sub {
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 56ch;
  margin: 18px 0 0;
  text-wrap: pretty;
}
.section--navy .sub { color: var(--on-navy-2); }
.center { text-align: center; }
.center .h-section, .center .sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 14px 22px; border-radius: var(--r-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--sh-primary); }
.btn--primary:hover { background: var(--primary-600); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); box-shadow: var(--sh-xs); }
.btn--ghost:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.btn--navy { background: rgba(255,255,255,.08); color: #fff; border-color: var(--line-navy); }
.btn--navy:hover { background: rgba(255,255,255,.14); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13.5px; }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Chips / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600;
  background: var(--primary-soft); color: var(--primary-ink);
}
.pill--green { background: var(--green-soft); color: var(--green); }
.pill--amber { background: var(--amber-soft); color: var(--amber); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dot--live { background: var(--green); box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,.45); }
  70% { box-shadow: 0 0 0 7px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* check list */
.checks { display: grid; gap: 14px; margin-top: 26px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.checks .tick {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin-top: 1px;
}
.checks .tick svg { width: 13px; height: 13px; }
.checks b { color: var(--ink); font-weight: 700; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

/* mono caption used inside mockups / placeholders */
.mono-cap { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-3); }

/* placeholder fill (striped) */
.ph {
  background-image: repeating-linear-gradient(45deg, var(--bg-soft-2) 0 10px, #fff 10px 20px);
  border: 1px dashed var(--line-2);
  display: grid; place-items: center;
  color: var(--ink-3);
}
