/* ═══════════════════════════════════════════════════════════════════════════
   MUELLER — Design System / Variáveis Globais
   Todas as cores, espaçamentos, tipografia e tokens do sistema.
   Não modifique valores diretamente nos componentes — altere aqui.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ─── Paleta Oficial Mueller ─────────────────────────────────────────── */
  --mueller-aubergine:  #9E9A93; /* Alterado fundo de roxo #3B1538 para cinza #9E9A93 */
  --mueller-dark:       #4A4743;
  --mueller-lime:       #A6E22E;
  --mueller-green:      #7CC241;
  --mueller-light:      #E7E5DB;
  --mueller-gray:       #9E9A93;
  --mueller-offwhite:   #F6F4EF;

  /* ─── Variações funcionais (derivadas da paleta) ─────────────────────── */
  --color-bg:           var(--mueller-offwhite);
  --color-bg-secondary: var(--mueller-light);
  --color-bg-dark:      #9E9A93;
  --color-text:         #1D1C1A;
  --color-text-muted:   #4A4742;
  --color-accent:       var(--mueller-lime);
  --color-accent-soft:  var(--mueller-green);
  --color-border:       rgba(0, 0, 0, 0.08);
  --color-border-dark:  rgba(0, 0, 0, 0.12);

  /* Transparências funcionais */
  --aubergine-10:  rgba(158, 154, 147, 0.15);
  --aubergine-20:  rgba(158, 154, 147, 0.25);
  --aubergine-80:  rgba(158, 154, 147, 0.85);
  --lime-20:       rgba(166, 226, 46, 0.20);
  --lime-10:       rgba(166, 226, 46, 0.10);

  /* ─── Tipografia ─────────────────────────────────────────────────────── */
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --font-display:  'Outfit', 'Inter', system-ui, sans-serif;

  --text-xs:   0.75rem;     /* 12px */
  --text-sm:   0.875rem;    /* 14px */
  --text-base: 1rem;        /* 16px */
  --text-md:   1.125rem;    /* 18px */
  --text-lg:   1.25rem;     /* 20px */
  --text-xl:   1.5rem;      /* 24px */
  --text-2xl:  1.875rem;    /* 30px */
  --text-3xl:  2.25rem;     /* 36px */
  --text-4xl:  2.75rem;     /* 44px */
  --text-5xl:  3.5rem;      /* 56px */
  --text-6xl:  4.5rem;      /* 72px */

  --weight-normal:   400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-black:    900;

  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-loose:  1.75;

  /* ─── Espaçamento ────────────────────────────────────────────────────── */
  --space-1:   0.25rem;    /* 4px  */
  --space-2:   0.5rem;     /* 8px  */
  --space-3:   0.75rem;    /* 12px */
  --space-4:   1rem;       /* 16px */
  --space-5:   1.25rem;    /* 20px */
  --space-6:   1.5rem;     /* 24px */
  --space-8:   2rem;       /* 32px */
  --space-10:  2.5rem;     /* 40px */
  --space-12:  3rem;       /* 48px */
  --space-16:  4rem;       /* 64px */
  --space-20:  5rem;       /* 80px */
  --space-24:  6rem;       /* 96px */
  --space-32:  8rem;       /* 128px */

  /* ─── Border Radius ──────────────────────────────────────────────────── */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* ─── Sombras ─────────────────────────────────────────────────────────── */
  --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md:   0 4px 14px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg:   0 10px 28px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-xl:   0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 18px rgba(0, 0, 0, 0.06);
  --shadow-lime: 0 4px 20px rgba(166, 226, 46, 0.35);

  /* ─── Transições ─────────────────────────────────────────────────────── */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ─── Layout ─────────────────────────────────────────────────────────── */
  --container-max:  1280px;
  --container-wide: 1440px;
  --header-height:  86px;
  --section-pad:    var(--space-20);
}

/* ─── Modo de redução de movimento ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }
}
