/* NaBio BJJ - Design Tokens & Variables (100% Offline / Local Assets) */
@import url("local-fonts.e90a83e54681.css");

:root {
  /* Brand NaBio BJJ Colors (Azul e Vermelho Oficiais) */
  --brand-blue: #0056ee;
  --brand-blue-hover: #0046c7;
  --brand-blue-subtle: rgba(0, 86, 238, 0.12);
  --brand-blue-text: #0056ee;

  --brand-red: #fb181c;
  --brand-red-hover: #d91417;
  --brand-red-subtle: rgba(251, 24, 28, 0.12);
  --brand-red-text: #fb181c;

  --brand-gradient: linear-gradient(135deg, #0056ee 0%, #fb181c 100%);
  --brand-gradient-hover: linear-gradient(135deg, #0046c7 0%, #d91417 100%);

  --brand-primary: #0056ee;
  --brand-primary-hover: #0046c7;
  --brand-primary-active: #0036a0;
  --brand-primary-subtle: rgba(0, 86, 238, 0.12);
  --brand-primary-subtle-text: #0056ee;

  --brand-secondary: #fb181c;
  --brand-secondary-hover: #d91417;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Standard Dimensions */
  --sidebar-collapsed: 70px;
  --sidebar-expanded: 260px;
  --header-height: 64px;
  --subheader-height: 48px;
  --mobile-dock-height: 64px;
  --control-min-height: 44px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Semantics */
  --success: #16a34a;
  --success-bg: #dcfce7;
  --warning: #d97706;
  --warning-bg: #fef3c7;
  --danger: #dc2626;
  --danger-bg: #fee2e2;
  --info: #2563eb;
  --info-bg: #dbeafe;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;

  /* Apple-Style Light Theme Defaults */
  --bg-app: #f8fafc;
  --bg-subtle: #f1f5f9;
  --surface-card: #ffffff;
  --surface-header: #ffffff;
  --surface-sidebar: #ffffff;
  --surface-hover: #f1f5f9;
  --text-main: #09090b;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --border-subtle: #e2e8f0;
  --border-strong: #cbd5e1;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
}

/* Apple-Style Dark Theme (Neutral Obsidian / Zinc, strictly zero red tint) */
[data-theme="dark"] {
  --bg-app: #09090b;
  --bg-subtle: #121215;
  --surface-card: #18181b;
  --surface-header: #121215;
  --surface-sidebar: #121215;
  --surface-hover: #222226;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --border-subtle: #27272a;
  --border-strong: #3f3f46;
  --brand-primary-subtle: rgba(0, 86, 238, 0.2);
  --brand-primary-subtle-text: #60a5fa;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

/* Base Reset & Global Native Scrollbar Elimination */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  -ms-overflow-style: none !important;
}



body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  background-color: var(--bg-app);
  color: var(--text-main);
  height: 100dvh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
