/* ============================================================
   VARIABLES – Design Tokens | Projeto Minas 2035
   Futuristic Institutional UI – Dark Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ── Backgrounds ────────────────────────────────────── */
  --bg:          #050816;
  --bg-surface:  #0B1220;
  --bg-card:     #0f1a2e;
  --bg-elevated: #131f33;

  /* ── Borders ────────────────────────────────────────── */
  --border:        rgba(255, 255, 255, 0.07);
  --border-accent: rgba(0, 229, 255, 0.25);

  /* ── Text ───────────────────────────────────────────── */
  --text-primary:   #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted:     #4B6080;

  /* ── Accent – Cyan → Indigo ──────────────────────────── */
  --accent-cyan:   #00E5FF;
  --accent-indigo: #4F46E5;
  --accent-grad:   linear-gradient(135deg, #00E5FF 0%, #4F46E5 100%);
  --accent-glow:   0 0 40px rgba(0, 229, 255, 0.15);

  /* ── Semantic ─────────────────────────────────────── */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error:   #EF4444;

  /* ── Typography ─────────────────────────────────────── */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.75rem;   /* 60px */

  /* ── Spacing ─────────────────────────────────────────── */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ── Radius ──────────────────────────────────────────── */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow-cyan: 0 0 30px rgba(0, 229, 255, 0.2);

  /* ── Transitions ─────────────────────────────────────── */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast: 150ms var(--ease);
  --trans-med:  300ms var(--ease);
  --trans-slow: 500ms var(--ease);

  /* ── Layout ──────────────────────────────────────────── */
  --container: 1200px;
  --navbar-h:  72px;
}
