:root {
  --accent: #027c68;
  --accent-hover: #036f5e;
  --accent-soft: rgba(2, 124, 104, 0.12);
  --accent-escura: #003333;
  --accent-suave: #b0e892;

  --success: #009933;
  --danger: #e74c3c;
  --warning: #f1c40f;
  --toggle-on: #16a34a;

  --font: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-titulo: "Sora", "Inter", sans-serif;

  --fs-xs: 12px; --fs-sm: 13px; --fs-base: 15px;
  --fs-lg: 16px; --fs-xl: 20px; --fs-2xl: 26px;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px;
  --sp-4: 16px; --sp-5: 24px; --sp-6: 32px;

  --radius: 10px; --radius-sm: 6px; --radius-lg: 16px; --radius-full: 999px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  --sidebar-width: 248px;
  --topbar-h: 60px;
  --fu-h: 38px;

  --transicao: .18s ease;
}

:root,
:root[data-theme="light"] {
  --bg: #f4f6f5;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --border: #e2e6e4;
  --text: #16201d;
  --text-dim: #5b6b65;
  --text-fraco: #8b9a93;
}

:root[data-theme="dark"] {
  --bg: #0f1513;
  --bg-elev: #161e1b;
  --surface: #1a2320;
  --border: #263531;
  --text: #e9f0ed;
  --text-dim: #a3b3ac;
  --text-fraco: #77897f;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1513;
    --bg-elev: #161e1b;
    --surface: #1a2320;
    --border: #263531;
    --text: #e9f0ed;
    --text-dim: #a3b3ac;
    --text-fraco: #77897f;
  }
}
