#galeria{
    position: absolute;
    width: 100svw;
    top: 100svh;  
    left: 0; 
    right: 0;
    border: 2px solid white;
}

.div-galeria{
    position: absolute;    
    width: 100svw;    
    background-color: black;
}

.iconos-galeria{
    display: flex;
    position: relative;
    width: 100svw;
    height: 10%;
    background-color: black;
}

.div-img-galeria{
    position: relative;
    width: 100svw;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-galeria{
    width: 100svw;
    height: 100%;
    object-fit: cover;
    display: block; /* evita espacios por defecto */
}

.cont-comentarios-galeria,
.cont-megusta-galeria{
    display: flex;
    font-size: calc(1.0 * var(--x));
    color: white;
    font-family: poppins;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
}

.div-megusta-galeria,
.div-comentarios-galeria{
    display: flex;
    justify-content: center;
    align-items: center;    
    width: 10%;
}

.megusta-galeria,
.comentarios-galeria{
    position: relative;
    width: 55%;
    padding-left: 10px;
}

/***************************************************************/
/*                       COMENTARIOS                           */
/***************************************************************/


#fondo-comentario{
    display: none; /* Inicialmente oculta */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */        
    z-index: 1000;
}

#div-comentarios{
    position: fixed;
    background-color: black;
    bottom:0;
    width: 100%;
    height: 0px;  
    border-radius: 40px 40px 0px 0px;       
    overflow: hidden;   /* para que se vean las puntas redondeadas*/
    box-shadow: 8px 8px 40px white;
    transition: height 2s;
    z-index: 1600;  
}


#comentario{
    position: absolute;
    bottom: 3%;
    width: 85%;
    height: 6%;
    left: 3%;
    padding: 0;
    border: 0;
    border-radius: 10px 0px 0px 10px;    
    border: 2px solid white;
    font-size: calc(0.7 * var(--x)); 
}

#comentario-enviar{
    position: absolute;
    right: 3%;
    width: 10%;
    height: 6%;
    bottom: 3%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 0px 10px 10px 0px;
    background-image: url('img/send.png');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat;
    background-size: 60% auto; 
}

body.bloqueo-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
}