/* ==========================================================================
   DESIGN TOKENS & VARIÁVEIS GLOBAIS — PATRÍCIA PRADE
   Paleta extraída e calibrada da identidade visual oficial
   ========================================================================== */

:root {
  /* --- Tipografia --- */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* --- Cores da Marca (Branding Oficial) --- */
  --brand-taupe: #5E564F;
  --brand-taupe-dark: #3D3732;
  --brand-taupe-deep: #2C2724;
  --brand-cashmere: #A9988C;
  --brand-cashmere-light: #C9BCB3;
  --brand-nude: #EFE8E1;
  --brand-nude-light: #F7F3EE;
  --brand-offwhite: #FAF8F5;
  --brand-cream: #F3EFE9;
  --brand-dark: #1E1A17;
  --brand-dark-surface: #26211E;
  --brand-white: #FFFFFF;

  /* --- Mapeamento Semântico e Compatibilidade de Componentes --- */
  --color-primary: var(--brand-taupe);
  --color-primary-dark: var(--brand-taupe-dark);
  --color-accent: var(--brand-cashmere);
  --color-accent-light: var(--brand-cashmere-light);
  --brand-navy: var(--brand-taupe-dark);
  --brand-gold: var(--brand-cashmere);
  --brand-cta: var(--brand-taupe-dark);

  /* --- Textos & Contrastes (WCAG AAA) --- */
  --brand-text-dark: #24201D;
  --brand-text-muted: #6B625A;
  --brand-text-light: #FAF8F5;
  --text-color: #24201D;
  --text-body: #47403A;
  --text-muted: #736961;

  /* --- Superfícies e Bordas --- */
  --bg-body: var(--brand-offwhite);
  --bg-alt: var(--brand-cream);
  --bg-footer: var(--brand-dark);
  --text-footer: var(--brand-cashmere-light);
  --card-bg: var(--brand-white);
  --border-color: rgba(94, 86, 79, 0.12);
  --border-subtle: rgba(94, 86, 79, 0.08);
  --border-glass: rgba(255, 255, 255, 0.2);

  /* --- Curvas de Movimento & Transições --- */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-premium);
  --transition-normal: 0.35s var(--ease-premium);
  --transition-slow: 0.8s var(--ease-premium);
  --transition-reveal: 1.1s var(--ease-premium);

  /* --- Sombras de Alto Padrão --- */
  --shadow-sm: 0 2px 8px rgba(36, 32, 29, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(36, 32, 29, 0.08), 0 0 1px rgba(94, 86, 79, 0.12);
  --shadow-lg: 0 20px 45px -10px rgba(36, 32, 29, 0.14), 0 0 20px rgba(169, 152, 140, 0.15);
  --shadow-floating: 0 16px 36px rgba(0, 0, 0, 0.16);

  /* --- Espaçamentos e Estrutura --- */
  --container-max: 1240px;
  --container-narrow: 1040px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --header-height: 76px;
}
