.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 5px 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-sidebar a:hover {
    transform: scale(1.1);
}

.social-sidebar .facebook {
    background-color: #1877F2;
    color: white;
}

.social-sidebar .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-sidebar .whatsapp {
    background-color: #25D366;
    color: white;
}

.social-sidebar .twitter {
    background-color: #1DA1F2;
    color: white;
}

@media (max-width: 768px) {
    .social-sidebar {
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        border-radius: 8px 8px 0 0;
        padding: 8px;
    }
    
    .social-sidebar a {
        margin: 0 8px;
    }
}
