.social-bar {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #3B0000; 
    border-radius: 10px;
    font-size: 26px;
    color: white;
    transition: background 0.3s ease-in-out;
}

.social-icon:hover {
    background-color: #b9975b; 
}
.social-icon img {
    width: 30px; /* Aumenta el tamaño */
    height: 30px;
}
