/* Design Tokens - Tucumascotas Promos Mundialeras */

:root {
    /* Colors from the flyer */
    --tc-color-primary: #f78c1e; /* Naranja Promos */
    --tc-color-secondary: #6b2c91; /* Morado Mundialeras */
    --tc-color-accent: #48a9df; /* Azul Celeste Bandera */
    
    /* Backgrounds */
    --tc-bg-light: #ffffff;
    --tc-bg-crema: #fff9e6; /* Fondo promos exóticos/2x1 */
    --tc-bg-morado-claro: #f4e8f8; /* Fondo promos nexgard */
    --tc-bg-gray: #f8f9fa;
    
    /* Text Colors */
    --tc-text-dark: #2d2d2d;
    --tc-text-light: #ffffff;
    --tc-text-purple: #6b2c91;
    --tc-text-orange: #f78c1e;

    /* Typography */
    --tc-font-primary: 'Outfit', 'Inter', system-ui, sans-serif;
    --tc-font-weight-bold: 800;
    --tc-font-weight-semibold: 600;
    --tc-font-weight-normal: 400;

    /* Spacing */
    --tc-spacing-xs: 0.5rem;
    --tc-spacing-sm: 1rem;
    --tc-spacing-md: 2rem;
    --tc-spacing-lg: 3rem;
    --tc-spacing-xl: 4rem;

    /* Borders & Radius */
    --tc-radius-sm: 8px;
    --tc-radius-md: 16px;
    --tc-radius-lg: 24px;
    --tc-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --tc-shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
}
