/**
 * Estilos Globales y Reset
 * Configuraciones base para etiquetas HTML estándar.
 */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    color: var(--text-main);
    background-color: var(--bg-body);
    margin: 0;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

button {
    cursor: pointer;
}