/* Tokens de tema Ultravioleta — marca comercial Jukeeo */

:root {
  /* Cores base */
  --background: #050508;
  --foreground: #f5f3ff;
  --card: #1a1030;
  --card-foreground: #f5f3ff;
  --muted: #2a1f4a;
  --muted-foreground: #b8b0d4;

  /* Marca */
  --primary: #e91e8c;
  --primary-foreground: #ffffff;
  --accent: #4f7cff;
  --accent-foreground: #ffffff;
  --success: #7c3aed;
  --success-foreground: #ffffff;

  /* Estrutura */
  --border: #4a3a7a;
  --ring: #7c3aed;
  --input: #2a1f4a;

  /* Gradientes */
  --gradient-brand: linear-gradient(90deg, #e91e8c 0%, #7c3aed 50%, #4f7cff 100%);
  --gradient-brand-vertical: linear-gradient(180deg, #e91e8c 0%, #7c3aed 50%, #4f7cff 100%);
  --gradient-hero-overlay: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.4) 0%,
    rgba(5, 5, 8, 0.85) 60%,
    rgba(5, 5, 8, 1) 100%
  );
  --gradient-glow: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25) 0%, transparent 70%);

  /* Tipografia */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;

  /* Espaçamento */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Raios */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(233, 30, 140, 0.3);

  /* Layout */
  --max-width: 72rem;
  --header-height: 4.5rem;

  /* Transições */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}
