/*==========================================================
PUENTE DEL INCA
DESIGN SYSTEM
02. BASE
==========================================================*/

/* RESET */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* HTML */

html{

    scroll-behavior:smooth;

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

}

/* BODY */

body{

    font-family:var(--font-body);

    font-size:var(--fs-body);

    line-height:var(--lh-body);

    color:var(--pi-text);

    background:var(--pi-secondary-200);

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    overflow-x:hidden;

}

/* IMÁGENES */

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* ENLACES */

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

/* LISTAS */

ul,
ol{

    list-style:none;

}

/* BOTONES */

button{

    font:inherit;

    border:none;

    background:none;

    cursor:pointer;

}

/* FORMULARIOS */

input,
textarea,
select{

    font:inherit;

}

/* SELECTION */

::selection{

    background:var(--pi-primary);

    color:#fff;

}

/* SCROLLBAR */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF3F3;

}

::-webkit-scrollbar-thumb{

    background:var(--pi-primary);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--pi-primary-100);

}