/*==========================================================
=            Reset Global
==========================================================*/

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/*==========================================================
=            HTML
==========================================================*/

html{

    font-size:16px;

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

/*==========================================================
=            Body
==========================================================*/

body{

    min-height:100vh;

    font-family:

        "Segoe UI",

        Roboto,

        "Helvetica Neue",

        Arial,

        sans-serif;

    font-size:1rem;

    line-height:1.5;

    color:var(--sigaf-text);

    background:var(--sigaf-background);

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/*==========================================================
=            Multimedia
==========================================================*/

img,
picture,
video,
canvas,
svg{

    display:block;

    max-width:100%;

}

/*==========================================================
=            Formularios
==========================================================*/

input,
button,
textarea,
select{

    font:inherit;

    color:inherit;

}

button{

    cursor:pointer;

    border:none;

    background:none;

}

/*==========================================================
=            Enlaces
==========================================================*/

a{

    text-decoration:none;

    color:inherit;

}

/*==========================================================
=            Listas
==========================================================*/

ul,
ol{

    list-style:none;

}

/*==========================================================
=            Tablas
==========================================================*/

table{

    border-collapse:collapse;

    border-spacing:0;

    width:100%;

}

/*==========================================================
=            Títulos
==========================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:600;

    color:var(--sigaf-text);

}

/*==========================================================
=            Scrollbar
==========================================================*/

::-webkit-scrollbar{

    width:10px;

    height:10px;

}

::-webkit-scrollbar-track{

    background:transparent;

}

::-webkit-scrollbar-thumb{

    background:var(--gray-300);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gray-400);

}