/*---------------------------------------------------------------------------------------------------------------
    AUTOR          : DIEGO BUSTOS PEÑA
    FECHA CREACIÓN : 09-06-2026
    DESCRIPCIÓN    : CSS DE TIPOGRAFÍAS
----------------------------------------------------------------------------------------------------------------*/

/* TIPOGRAFÍA GLOBAL */
body {
    font-family             : 'Inter', sans-serif;
    color                   : var(--uct-text);
    -webkit-font-smoothing  : antialiased;
    -moz-osx-font-smoothing : grayscale;
}

/* TÍTULOS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight : 700;
    line-height : 1.2;
    color       : var(--uct-text);
}

/* PÁRRAFOS */
p {
    line-height : 1.6;
    color       : var(--uct-text-soft);
}

/* LABELS */
label {
    text-align  : left;
    font-weight : 700;
    color       : var(--uct-text);
}

/* TEXTOS AUXILIARES */
small {
    color : var(--uct-text-soft);
}