/* Definimos las capas de prioridad */
@layer settings, base, theme, components, utilities;

/*CONFIGURACIÓN (variables y fuentes)*/
@import "settings.css" layer(settings);

/*BASE (etiquetas HTML nativas y resets)*/
@import "elements.css" layer(base);

/*TEMA (establecer colores, animaciones)*/
@import "theme.css" layer(theme);

/*COMPONENTES*/
@import "components.css" layer(components);

/*UTILIDADES*/
@import "utilities.css" layer(utilities);