/* Reset básico + fuente suave */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--fuente-principal); /* Aplicamos la nueva fuente global */
    line-height: 1.6; 
    background: var(--negro-fondo); 
    color: var(--blanco-texto); 
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }