.redes_lateral_container {
    position: fixed;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.redes_lateral_barra {
    display: flex;
    flex-direction: column;
    width: 52px;
    height: 220px;
}

.redes_lateral_boton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 44px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.redes_lateral_boton:hover {
    transform: translateX(-5px);
}

.redes_lateral_icono {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.redes_lateral_facebook {
    background-color: #3b5998;
    border-top-left-radius: 10px;
}

.redes_lateral_x {
    background-color: #1da1f2;
}

.redes_lateral_instagram {
    background-color: #e1306c;
}

.redes_lateral_pinterest {
    background-color: #bd081c;
}

.redes_lateral_youtube {
    background-color: #ff0000;
    border-bottom-left-radius: 10px;
}

/* Media Query para pantallas menores a 768px */
@media screen and (max-width: 991px) {
    .redes_lateral_container {
        right: -4px;
    }
    
    .redes_lateral_barra {
        width: 40px;
        height: 190px;
    }
    
    .redes_lateral_boton {
        width: 40px;
        height: 38px;
    }
    
    .redes_lateral_boton:hover {
        transform: translateX(-4px);
    }
    
    .redes_lateral_facebook {
        border-top-left-radius: 8px;
    }
    
    .redes_lateral_youtube {
        border-bottom-left-radius: 8px;
    }
}