/* Calango Esporte Clube - Design tokens
   Tema escuro inspirado no painel do Windows. */

:root {
  /* Cores base */
  --bg-app: #0d1117;
  --bg-surface: #161b22;
  --bg-surface-2: #1c2230;
  --bg-elevated: #222b3a;
  --bg-hover: #2a3344;

  /* Texto */
  --text-primary: #e6edf3;
  --text-secondary: #9aa7b5;
  --text-muted: #6b7787;

  /* Acentos */
  --accent: #2f81f7;
  --accent-hover: #4f97ff;
  --accent-soft: rgba(47, 129, 247, 0.15);
  --success: #3fb950;
  --danger: #f85149;
  --warning: #d29922;

  /* Bordas */
  --border: #283040;
  --border-strong: #3a4556;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.55);

  /* Raios */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Espaçamentos */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;

  /* Tipografia */
  --font-sans: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 20px;
  --fs-xl: 26px;
  --fs-2xl: 34px;

  /* Layout */
  --nav-height: 60px;
  --topbar-height: 44px;
  --content-max: 1530px; /* 1200 do feed + 300 da lateral + espaco: mantem o card em ~373px */
  --transition: 160ms ease;
}
