/* ============================================
   DESIGN TOKENS — Rare Tecnologia v2
   Repaginacao completa com taste-skill.
   Tipografia: Outfit (nunca Inter).
   ============================================ */

:root {
  /* — Cores primarias (Lilas Rare Tecnologia) — */
  --color-primary: #6c5ce7;
  --color-secondary: #a29bfe;
  --color-accent: #bdb2ff;
  --color-bg: #08060f;
  --color-bg-light: #16112a;
  --color-bg-card: rgba(22, 17, 42, 0.65);
  --color-white: #ffffff;
  --color-text: #c8c2db;
  --color-text-muted: #8a82a6;
  --color-text-heading: #f0edfa;
  --color-success: #00d68f;
  --color-error: #ff6b6b;
  --color-warning: #fdcb6e;
  --color-orange: #e17055;

  /* — Gradientes — */
  --gradient-primary: linear-gradient(135deg, #6c5ce7, #a29bfe);
  --gradient-hero: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.12) 0%,
    rgba(22, 17, 42, 0.4) 50%,
    rgba(108, 92, 231, 0.08) 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    rgba(108, 92, 231, 0.08),
    rgba(22, 17, 42, 0.2)
  );
  --gradient-text: linear-gradient(
    135deg,
    #a29bfe 0%,
    #ddd6fe 50%,
    #a29bfe 100%
  );
  --gradient-cta: linear-gradient(135deg, #6c5ce7, #a29bfe, #6c5ce7);
  --gradient-mesh:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(108, 92, 231, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(162, 155, 254, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(22, 17, 42, 0.4) 0%,
      transparent 40%
    );

  /* — Sombras — */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.2);
  --shadow-glow-hover: 0 0 60px rgba(108, 92, 231, 0.35);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* — Tipografia (Outfit — NEVER Inter) — */
  --font-family:
    "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", 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.25rem;
  --font-size-hero: clamp(2.75rem, 5.5vw, 4.5rem);
  --line-height-tight: 1.1;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* — Espacamentos — */
  --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;
  --space-48: 12rem;
  --section-padding: clamp(5rem, 10vw, 8rem);

  /* — Border Radius — */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;

  /* — Transicoes — */
  --transition-fast: 150ms ease;
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* — Layout — */
  --container-max: 1280px;
  --container-padding: var(--space-6);
  --nav-height: 90px;

  /* — Z-Index — */
  --z-base: 1;
  --z-nav: 100;
  --z-modal: 200;
  --z-float: 300;
  --z-toast: 400;
}
