

#box_redes_sociales {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    flex-direction: column;
    gap: 15px;
    z-index: 100000;
}

.social-icon {
    cursor: pointer;
    color: #333;
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.linkedin-icon:hover {
    color: #fff;
    background: #0077b5;
}

.whatsapp-icon:hover {
    color: #fff;
    background: #25d366;
}

.email-icon:hover {
    color: #fff;
    background: #ec800a;
}

@media (min-width: 300px) {
    #box_redes_sociales {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        padding: 10px;
        font-size: 1.2rem;
        border-radius: 18px;
    }

    .grid_img{
        width: 10rem!important;
        height: 10rem!important;
    }

}


@media (min-width: 1024px) {
    #box_redes_sociales {
        bottom: 30px;
        right: 30px;
        gap: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
        font-size: 1.4rem;
        border-radius: 20px;
    }

    .grid_img{
        width: 25rem!important;
        height: 18rem!important;
    }

}