
/* Social Media Sidebar (Left) */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg, #405DE6, #E1306C); }
.social-btn.tiktok { background: #000000; }
.social-btn.youtube { background: #FF0000; }

.social-btn:hover {
    transform: translateX(10px) scale(1.1);
}

/* WhatsApp (Right) */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    background: #128C7E;
}

/* Tooltips */
.tooltip {
    position: absolute;
    left: 65px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-btn:hover .tooltip,
.whatsapp-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-sidebar {
        left: 10px;
        gap: 10px;
    }
    
    .social-btn, .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .tooltip {
        display: none;
    }
}

