body {
    margin: 0;
    overflow-x: hidden; 
    width: 100vw;       
}

/* Quita los márgenes por defecto que empujan el diseño */
.menulateralAbierto h1, h2, h3, h5, p, ul {
    margin: 0;
    padding: 0;
}

#abrirMenu{
    position:absolute;
    bottom: 0px;
    right: 0px;

    color: white;

    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(25px);
}

.menuLateralAbierto {
    position: fixed; 
    top: 0;         
    right: 0;
    height: 100vh;   
    width: 400px;
    z-index: 2000;   

    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(25px);
    transition: transform 0.3s ease; 
}

#botonFavoritos{
    position: absolute;
    top: 150px;
    right: 45%;

    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(25px);
}


.menuLateralAbierto h3{
    position: relative;
    top: 100px;
    left: 5%;
    color: white;
}

.menuLateralAbierto ul{
    position: relative;
    top: 10%;
    color: white;
}

.menuLateralAbierto p{
    position: relative;
    top:13%;
}