 
        #socialMediaFloatingButtons {
            position: fixed;
            right: 25px;
            bottom: 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 99999;
            pointer-events: none;
        }

        .smfb-button {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: auto;
            overflow: visible;
        }

        .smfb-icon-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .smfb-button i {
            font-size: 26px;
            color: #fff;
            transition: all 0.4s ease;
            filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
        }

        .smfb-glow {
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            opacity: 0;
            filter: blur(15px);
            transition: all 0.4s ease;
            z-index: 1;
        }

        .smfb-button:hover {
            transform: translateY(-10px) scale(1.12);
        }

        .smfb-button:hover .smfb-icon-wrapper {
            transform: rotate(10deg) scale(1.1);
        }

        .smfb-button:hover .smfb-glow {
            opacity: 0.8;
            inset: -12px;
        }

        .smfb-button:active {
            transform: translateY(-6px) scale(1.05);
        }

        @keyframes smfbPulse {
            0%, 100% {
                box-shadow: 0 0 0 0 var(--pulse-color);
            }
            50% {
                box-shadow: 0 0 0 15px transparent;
            }
        }

        @keyframes smfbFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .smfb-whatsapp .smfb-icon-wrapper {
            background: linear-gradient(135deg, #25D366 0%, #1da856 50%, #128C7E 100%);
            box-shadow: 
                0 10px 30px rgba(37, 211, 102, 0.4),
                inset 0 2px 5px rgba(255,255,255,0.2),
                inset 0 -2px 5px rgba(0,0,0,0.2);
            animation: smfbFloat 3s ease-in-out infinite, smfbPulse 3s ease-in-out infinite;
            animation-delay: 0.5s;
            --pulse-color: rgba(37, 211, 102, 0.5);
        }

        .smfb-whatsapp .smfb-glow {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .smfb-whatsapp:hover .smfb-icon-wrapper {
            background: linear-gradient(135deg, #2ee673 0%, #25D366 50%, #1da856 100%);
            box-shadow: 
                0 15px 45px rgba(37, 211, 102, 0.6),
                inset 0 2px 5px rgba(255,255,255,0.3);
        }

        .smfb-telegram .smfb-icon-wrapper {
            background: linear-gradient(135deg, #0088cc 0%, #0077b5 50%, #006699 100%);
            box-shadow: 
                0 10px 30px rgba(0, 136, 204, 0.4),
                inset 0 2px 5px rgba(255,255,255,0.2),
                inset 0 -2px 5px rgba(0,0,0,0.2);
            animation: smfbFloat 3s ease-in-out infinite, smfbPulse 3s ease-in-out infinite;
            animation-delay: 0.3s;
            --pulse-color: rgba(0, 136, 204, 0.5);
        }

        .smfb-telegram .smfb-glow {
            background: linear-gradient(135deg, #0088cc, #006699);
        }

        .smfb-telegram:hover .smfb-icon-wrapper {
            background: linear-gradient(135deg, #0099e6 0%, #0088cc 50%, #0077b5 100%);
            box-shadow: 
                0 15px 45px rgba(0, 136, 204, 0.6),
                inset 0 2px 5px rgba(255,255,255,0.3);
        }

        .smfb-facebook .smfb-icon-wrapper {
            background: linear-gradient(135deg, #1877F2 0%, #1464c7 50%, #0d5dbf 100%);
            box-shadow: 
                0 10px 30px rgba(24, 119, 242, 0.4),
                inset 0 2px 5px rgba(255,255,255,0.2),
                inset 0 -2px 5px rgba(0,0,0,0.2);
            animation: smfbFloat 3s ease-in-out infinite, smfbPulse 3s ease-in-out infinite;
            animation-delay: 0.1s;
            --pulse-color: rgba(24, 119, 242, 0.5);
        }

        .smfb-facebook .smfb-glow {
            background: linear-gradient(135deg, #1877F2, #0d5dbf);
        }

        .smfb-facebook:hover .smfb-icon-wrapper {
            background: linear-gradient(135deg, #3b8df5 0%, #1877F2 50%, #1464c7 100%);
            box-shadow: 
                0 15px 45px rgba(24, 119, 242, 0.6),
                inset 0 2px 5px rgba(255,255,255,0.3);
        }

        .smfb-instagram .smfb-icon-wrapper {
            background: linear-gradient(135deg, #833AB4 0%, #C13584 30%, #E1306C 50%, #FD1D1D 70%, #F77737 100%);
            box-shadow: 
                0 10px 30px rgba(225, 48, 108, 0.4),
                inset 0 2px 5px rgba(255,255,255,0.2),
                inset 0 -2px 5px rgba(0,0,0,0.2);
            animation: smfbFloat 3s ease-in-out infinite, smfbPulse 3s ease-in-out infinite;
            --pulse-color: rgba(225, 48, 108, 0.5);
        }

        .smfb-instagram .smfb-glow {
            background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D, #F77737);
        }

        .smfb-instagram:hover .smfb-icon-wrapper {
            background: linear-gradient(135deg, #9d4ed4 0%, #d63f95 30%, #ea4179 50%, #ff3838 70%, #ff8a5b 100%);
            box-shadow: 
                0 15px 45px rgba(225, 48, 108, 0.6),
                inset 0 2px 5px rgba(255,255,255,0.3);
        }

        .smfb-button::after {
            content: attr(data-smfb-tooltip);
            position: absolute;
            right: 80px;
            top: 50%;
            transform: translateY(-50%) translateX(15px) scale(0.9);
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 12px 18px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .smfb-button:hover::after {
            opacity: 1;
            transform: translateY(-50%) translateX(0) scale(1);
        }

        .smfb-button::before {
            content: '';
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%) translateX(15px);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 10px solid #34495e;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 9;
        }

        .smfb-button:hover::before {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .smfb-whatsapp::after {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .smfb-whatsapp::before {
            border-left-color: #128C7E;
        }

        .smfb-telegram::after {
            background: linear-gradient(135deg, #0088cc, #006699);
        }

        .smfb-telegram::before {
            border-left-color: #006699;
        }

        .smfb-facebook::after {
            background: linear-gradient(135deg, #1877F2, #0d5dbf);
        }

        .smfb-facebook::before {
            border-left-color: #0d5dbf;
        }

        .smfb-instagram::after {
            background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D);
        }

        .smfb-instagram::before {
            border-left-color: #E1306C;
        }

        @media (max-width: 600px) {
            #socialMediaFloatingButtons {
                right: 20px;
                bottom: 20px;
                gap: 14px;
            }

            .smfb-button {
                width: 60px;
                height: 60px;
            }

            .smfb-button i {
                font-size: 28px;
            }

            .smfb-button::after,
            .smfb-button::before {
                display: none;
            }
        }
