/* ================================================= */
/* ARCHIVO: base.css (Sección de Tipografía) */
/* ================================================= */

/* ================================================= */
/* ARCHIVO: base.css (SECCIÓN :root REEMPLAZADA) */
/* ================================================= */

/* 2. Definición de Variables (COLORES Y TIPOGRAFÍA) */
:root {
    /* Colores Generales y Navbar */
    --blanco: #ffffff;
    --azul-fuerte: #0d47a1;
    --gris-200: #eeeeee;
    --gris-700: #424242;
    --color-text: #333333;
    /* Color general del texto del cuerpo */

    /* Colores de Bibliografía (CRÍTICAS PARA QUE FUNCIONE EL RECUADRO) */
    --brown-main: #5d4037;
    --brown-light: #795548;
    --bg-light: #f5f5f5;

    /* Variable de Tipografía (Global) */
    --font-family: Tahoma, sans-serif;
}

/* 3. Estilos Base del Cuerpo y Tipografía */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    /* APLICA TAHOMA A TODO */
    line-height: 1.6;
    color: var(--color-text);
    background-color: white;
}