/* ═══════════════════════════════════════════════════════════════════
   tokens.css · Design Tokens · TotalLive × Oba Hortifruti
   Fonte única de verdade para cores, tipografia e reset global.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand ── */
  --p:  #7B2D8E;
  --pl: #A94FC2;
  --pd: #5A1F69;
  --y:  #D4E000;
  --c:  #FF7759;
  --g:  #2E7D32;

  /* ── Neutral ── */
  --surf: #fff;
  --txt:  #1A1A2E;
  --mut:  #6B7280;

  /* ── Typography ── */
  --f: 'Inter', system-ui, sans-serif;

  /* ── Radius ── */
  --rf: 9999px;

  /* ── Transition ── */
  --tr: all .2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-thumb { background: #E4E6EF; border-radius: 3px; }
