:root {
    /* Typography */
    --font-family-base: 'DM Sans', sans-serif;
    --font-family-heading: 'Cormorant Garamond', serif;
    --font-primary: var(--font-family-base);

    /* Brand Colors — Lilás + Dourado */
    --color-primary: #BE82BD;
    --color-primary-light: #D7ABD4;
    --color-primary-medium: #CBA1C8;
    --color-secondary: #D1B073;
    --color-secondary-light: #DCBF8E;
    --color-primary-dark: #985F97;
    --color-accent: #BE82BD;
    --color-light: #FFFFFF;
    --color-dark: #1e1a22;
    --color-whatsapp: #25D366;
    --color-text: #2d2a31;
    --color-text-light: #6b6770;

    /* Pale background tones — from brand card */
    --color-primary-pale: #F0E6EF;
    --color-primary-mist: #F8F2F8;
    --color-cream: #FDFAF5;
    --color-cream-warm: #f9f3e8;
    --color-bg-subtle: #FAFAFA;

    /* Hero gradient tones */
    --color-hero-start: #F5EDF5;
    --color-hero-mid: #EDE0ED;
    --color-hero-end: #E8D8E8;

    /* Accent tones */
    --color-secondary-dark: #C49A4E;
    --color-google-star: #FBBC04;
    --color-border-warm: #f0e8da;

    /* Legacy aliases */
    --color-soft-pink: #D7ABD4;
    --color-purple: #BE82BD;
    --color-vibrant-pink: #CBA1C8;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;

    /* Container */
    --container-width: 1200px;
    --container-padding: 2rem;
    --max-width: 1200px;

    /* Navigation */
    --nav-height: 80px;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-gold-sm: 0 4px 15px rgba(209, 176, 115, 0.2);
    --shadow-gold-md: 0 8px 30px rgba(209, 176, 115, 0.3);
    --shadow-purple: 0 8px 30px rgba(190, 130, 189, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --ease-spring: cubic-bezier(0.23, 1, 0.32, 1);
}
