/* ==========================================================================
   CSS Variables for Método Prisma
   ========================================================================== */

:root {
    /* Colors */
    --color-green-dark: #1B4332;
    --color-green-medium: #2D6A4F;
    --color-gold: #C9A84C;
    --color-gold-hover: #b3933c;
    --color-beige: #F5F0E8;
    --color-white: #FFFFFF;
    --color-text-dark: #1A1A1A;
    --color-text-light: #666666;
    --color-footer-bg: #0D2B1F;
    --color-whatsapp: #25D366;
    --color-error: #dc3545;
    --color-success: #28a745;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 24px rgba(201, 168, 76, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-full: 50%;
}
