/* social.css */
#social-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.social-btn img {
    width: 24px;
    height: 24px;
}

.social-btn.instagram {
    background: #f5edef;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.phone {
    background: #04a03b;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}