.floating-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon span {
    position: absolute;
    left: 50px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
}

.social-icon:hover {
    width: 160px;
}

.social-icon:hover span {
    opacity: 1;
}

/* Colores específicos para cada red social */
.social-facebook {
    background: #1877f2;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-tiktok {
    background: #000000;
}

.social-twitter {
    background: #1da1f2;
}

.social-whatsapp {
    background: #25d366;
}

/* Ajustes para modo oscuro */
[data-theme="dark"] .social-icon {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .floating-social {
        left: -50px;
        transition: left 0.3s ease;
    }

    .floating-social:hover {
        left: 0;
    }

    .social-icon:hover {
        width: 50px;
    }

    .social-icon span {
        display: none;
    }
}
