/*font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;*/

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');




*{
    /* padding: 0; */
    margin: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-padding-bottom: 6rem;
}
body{
    background: azure;
}

:root{
    --suncolor:#002B80; 
    --textLogo:"Public Sans", sans-serif;  
}


section{
    cursor: default;
    padding: 2rem 6%;
    min-height: 30vh;
}

/*Botón Subir Empieza*/
.to-top{
    position: fixed;
    bottom: 6rem;
    right: .5rem;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    rotate: 180deg;
    scale: .5;
    pointer-events:none ;
    z-index: 10;
}
.to-top.active{
    visibility: visible;
    opacity: 1;
    rotate: 0deg;
    scale:1 ;
    pointer-events:all ;
}
.to-top i{
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #333;
    border: 1px solid #ddd;
    box-shadow: 0 3px 8px rgba(0,0,0, .280);
    color: #fff;
    font-size: 2rem;
}


.thisDoc{
    overflow-y: auto;
}
.thisDoc.stop{
    overflow: hidden;
}
/*Botón Subir Termina*/