/**
 * VARIABLES CSS GLOBALES
 * @package TuChildTheme
 */

:root {
    /* COLORES */
    --primary-color: #0073aa;
    --secondary-color: #23282d;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --border-color: #dddddd;
    
    /* TIPOGRAFÍA */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    
    /* ESPACIADO */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* OTROS */
    --border-radius: 4px;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    
    /* BREAKPOINTS */
    --breakpoint-mobile: 768px;
    --breakpoint-tablet: 1024px;
    --breakpoint-desktop: 1200px;
}