        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .floating-action-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
            z-index: 99999;
        }

        .whatsapp-floating-btn {
            width: 56px;
            height: 56px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .whatsapp-floating-btn:hover {
            background-color: #20ba5a;
            transform: scale(1.1);
        }

        .whatsapp-floating-btn:active {
            transform: scale(0.95);
        }

        .scroll-top-floating-btn {
            width: 48px;
            height: 48px;
            background-color: white;
            border: 1px solid #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transform: translateY(16px);
        }

        .scroll-top-floating-btn.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .scroll-top-floating-btn:hover {
            background-color: #f8fafc;
        }

        .scroll-top-floating-btn.visible:hover {
            transform: scale(1.1) translateY(0);
        }

        .scroll-top-floating-btn:active {
            transform: scale(0.95);
        }