/* ============================================================
   DESIGN TOKENS / VARIÁVEIS — Alfa Confecção
   Paleta oficial: Azul #007fa2 + Dourado #bfa167
============================================================ */
:root {
  /* ── Backgrounds ── */
  --color-bg:            #08090d;
  --color-bg-2:          #0d0f14;
  --color-bg-card:       #131620;
  --color-bg-card-hover: #191d2a;
  --color-border:        rgba(255, 255, 255, 0.07);
  --color-border-hover:  rgba(255, 255, 255, 0.14);

  /* ── Brand — Azul petróleo ── */
  --color-accent:        #007fa2;
  --color-accent-light:  #1a9bbf;
  --color-accent-dark:   #005f7a;
  --color-accent-glow:   rgba(0, 127, 162, 0.22);

  /* ── Brand — Dourado ── */
  --color-gold:          #bfa167;
  --color-gold-light:    #d4b87a;
  --color-gold-dark:     #9a7f4c;
  --color-gold-glow:     rgba(191, 161, 103, 0.18);

  /* ── Text ── */
  --color-text:          #f0ede8;
  --color-text-light:    rgba(240, 237, 232, 0.58);
  --color-text-muted:    rgba(240, 237, 232, 0.32);

  --color-white: #ffffff;
  --color-black: #000000;

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', 'Garamond', serif;
  --font-body:    'Barlow', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.5rem;
  --fs-5xl:  5rem;
  --fs-6xl:  7rem;

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-black:   900;

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

  /* ── Spacing ── */
  --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;

  /* ── Layout ── */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);

  /* ── Borders ── */
  --radius-sm:   3px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.7);
  --shadow-blue: 0 0 40px var(--color-accent-glow);
  --shadow-gold: 0 0 40px var(--color-gold-glow);

  /* ── Transitions ── */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:  150ms;
  --duration-mid:   300ms;
  --duration-slow:  600ms;
  --duration-xslow: 900ms;

  /* ── Header ── */
  --header-height: 76px;
}
