/* =============================================
   INNOVARE CODE — CSS Variables (Design System)
   Nova Identidade Visual: Azul Marinho + Cinza Prateado
   ============================================= */

:root {
  /* === CORES PRIMÁRIAS (azul royal da marca) === */
  --color-primary: #0030B8;
  --color-primary-light: #1A47D6;
  --color-primary-dark: #00237F;
  --color-primary-glow: rgba(0, 48, 184, 0.55);

  /* === CORES DE DESTAQUE (prata da marca) === */
  --color-accent: #C0C0C0;
  --color-accent-light: #DDE0E6;
  --color-accent-glow: rgba(192, 192, 192, 0.3);

  /* === FUNDOS (azul profundo) === */
  --color-bg-deep: #04081C;
  --color-bg-dark: #060E2B;
  --color-bg-medium: #0D1B4B;
  --color-bg-card: rgba(255, 255, 255, 0.04);
  --color-bg-card-hover: rgba(255, 255, 255, 0.08);
  --color-bg-glass: rgba(13, 27, 75, 0.3);

  /* === TEXTOS === */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #94A3B8;
  --color-text-muted: #64748B;
  --color-text-accent: #B0B8C9;

  /* === BORDAS === */
  --color-border: rgba(176, 184, 201, 0.12);
  --color-border-hover: rgba(176, 184, 201, 0.3);
  --color-border-glow: rgba(176, 184, 201, 0.5);

  /* === GRADIENTES === */
  --gradient-hero: linear-gradient(135deg, #04081C 0%, #060E2B 40%, #0D1B4B 80%, #0030B8 100%);
  --gradient-primary: linear-gradient(135deg, #0030B8, #1A47D6);
  --gradient-accent: linear-gradient(135deg, #94A3B8, #DDE0E6);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  --gradient-glow: radial-gradient(ellipse at center, rgba(0, 48, 184, 0.18) 0%, transparent 70%);
  --gradient-cta: linear-gradient(135deg, #04081C 0%, #0030B8 60%, #1A47D6 100%);

  /* === TIPOGRAFIA === */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.15;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* === ESPAÇAMENTOS === */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* === BORDAS === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* === SOMBRAS === */
  --shadow-sm: 0 2px 8px rgba(4, 11, 30, 0.4);
  --shadow-md: 0 8px 24px rgba(4, 11, 30, 0.5);
  --shadow-lg: 0 16px 48px rgba(4, 11, 30, 0.6);
  --shadow-glow: 0 0 40px rgba(192, 192, 192, 0.15);
  --shadow-glow-primary: 0 0 60px rgba(0, 48, 184, 0.45);
  --shadow-card: 0 4px 24px rgba(4, 11, 30, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);

  /* === TRANSIÇÕES === */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* === LAYOUT === */
  --container-max: 1280px;
  --container-padding: 1.5rem;
  --navbar-height: 72px;

  /* === BLUR === */
  --blur-glass: blur(20px) saturate(180%);
  --blur-card: blur(12px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-6xl: 3rem;
    --container-padding: 1rem;
  }
}
