/**
 * GroundTruth - Design Tokens & Variables
 */
:root {
  /* Paleta Base Naval / Industrial */
  --primary-dark: #031b2e;
  --primary: #063a62;
  --primary-hover: #084c80;
  --primary-light: #e8f4fc;
  
  --accent: #00b9f2;
  --accent-hover: #009ecc;
  --accent-subtle: rgba(0, 185, 242, 0.12);
  
  --success: #10b981;
  --success-bg: #ecfdf5;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --danger: #ef4444;
  --danger-bg: #fef2f2;
  
  /* Superfícies & Cores Neutras */
  --bg-app: #f1f5f9;
  --surface: #ffffff;
  --surface-raised: #f8fafc;
  --border: #cbd5e1;
  --border-light: #e2e8f0;
  
  /* Tipografia */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-on-primary: #ffffff;
  
  /* Dimensões de Ergonomia em Campo */
  --touch-target-min: 48px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(6, 58, 98, 0.08), 0 2px 4px -2px rgba(6, 58, 98, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(6, 58, 98, 0.12), 0 4px 8px -2px rgba(6, 58, 98, 0.06);
  --shadow-float: 0 20px 35px -5px rgba(6, 58, 98, 0.2);

  /* Transições */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}
