/* ============================================
   FUNERÁRIA ARCANJOS — Design Tokens
   Etéreo Premium: Warm, Gold, Glassmorphism
   ============================================ */

:root {
  /* === Gold Palette === */
  --gold: #C5A55A;
  --gold-light: #D4B96E;
  --gold-dark: #A88B3D;
  --gold-glow: rgba(197, 165, 90, 0.15);
  --gold-border: rgba(197, 165, 90, 0.25);
  --gold-subtle: rgba(197, 165, 90, 0.08);

  /* === Neutrals (Warm) === */
  --black: #1A1A1A;
  --charcoal: #2D2D2D;
  --text-body: #4A4440;
  --text-muted: #8A8478;
  --text-light: #B0A89E;

  /* === Backgrounds (Warm Whites) === */
  --white: #FFFDF9;
  --cream: #FAF7F2;
  --warm-bg: #F5F0EB;
  --warm-bg-alt: #EDE7DF;
  --warm-overlay: rgba(250, 247, 242, 0.85);
  --warm-overlay-strong: rgba(250, 247, 242, 0.92);

  /* === Gradients === */
  --sunset-gradient: linear-gradient(135deg, #FAF7F2 0%, #F0E6D3 50%, #E8D5B5 100%);
  --hero-overlay: linear-gradient(180deg, rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.75) 100%);
  --gold-gradient: linear-gradient(135deg, #C5A55A 0%, #D4B96E 50%, #C5A55A 100%);
  --card-gradient: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.02) 100%);

  /* === Shadows (Warm) === */
  --shadow-sm: 0 2px 8px rgba(197, 165, 90, 0.06);
  --shadow-md: 0 4px 16px rgba(197, 165, 90, 0.08);
  --shadow-lg: 0 8px 32px rgba(197, 165, 90, 0.10);
  --shadow-xl: 0 16px 48px rgba(197, 165, 90, 0.12);
  --shadow-glow: 0 0 20px rgba(197, 165, 90, 0.2);

  /* === Typography === */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* === Spacing === */
  --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;
  --space-5xl: 8rem;

  /* === Layout === */
  --container-max: 1200px;
  --container-wide: 1440px;
  --container-narrow: 900px;
  --header-height: 80px;
  --header-height-scrolled: 64px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;

  /* === Transitions === */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === Z-index === */
  --z-base: 1;
  --z-header: 100;
  --z-modal: 200;
  --z-whatsapp: 150;
  --z-tooltip: 300;
}
