﻿<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//sakagourmet.com.br/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://sakagourmet.com.br/post-sitemap.xml</loc>
		<lastmod>2026-03-19T21:48:41+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sakagourmet.com.br/page-sitemap.xml</loc>
		<lastmod>2026-04-15T15:21:58+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sakagourmet.com.br/blocks-sitemap.xml</loc>
		<lastmod>2025-11-22T17:40:05+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sakagourmet.com.br/product-sitemap.xml</loc>
		<lastmod>2026-04-18T15:18:26+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sakagourmet.com.br/sureforms_form-sitemap.xml</loc>
		<lastmod>2025-08-28T23:44:50+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://sakagourmet.com.br/featured_item-sitemap.xml</loc>
		<lastmod>2016-08-28T09:39:54+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->			<style>
				#abct-wa-floating-button{position:fixed;bottom:20px;right:20px;z-index:9999;display:flex;visibility:visible;opacity:1;align-items:center;gap:8px;text-decoration:none;border-radius:999px;font-weight:600;box-shadow:0 8px 22px rgba(0,0,0,.20);background:#25D366;color:#ffffff;min-height:56px;padding:10px 14px;font-size:14px;touch-action:none;cursor:grab;user-select:none;-webkit-user-select:none;}
			#abct-wa-floating-button:hover,#abct-wa-floating-button:focus{filter:brightness(0.95);color:#ffffff;outline:2px solid rgba(0,0,0,.12);outline-offset:2px}
			#abct-wa-floating-button.abct-wa-floating-dragging{cursor:grabbing}
			#abct-wa-floating-button .abct-wa-floating-icon{width:28px;height:28px;border-radius:50%;display:inline-block;object-fit:cover}
			#abct-wa-floating-button .abct-wa-floating-fallback{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;line-height:1}
			#abct-wa-floating-button .abct-wa-floating-fallback svg{width:28px;height:28px}
														</style>
			<a id="abct-wa-floating-button" class="abct-wa-floating-button" href="https://wa.me/5511939027893" data-wa-url="https://wa.me/5511939027893" data-wa-api-url="https://api.whatsapp.com/send?phone=5511939027893" data-abct-draggable="1" target="_blank" rel="noopener noreferrer" aria-label="Fale conosco no WhatsApp" title="Fale conosco no WhatsApp" draggable="false">
							<img class="abct-wa-floating-icon" src="https://sakagourmet.com.br/wp-content/uploads/2025/09/cropped-saka-gourmet-melhor-da-coizinha-oriental.png" alt="" draggable="false">
									<span class="abct-wa-floating-label">Olá!, Posso ajudar?</span>
						</a>
			<script>
			(function(){
				var button = document.getElementById('abct-wa-floating-button');
				if(!button){ return; }
				var isDraggable = '1' === String(button.getAttribute('data-abct-draggable') || '0');
				if(!isDraggable){ return; }
				var storageKey = 'abct_wa_floating_button_position';
				var dragThreshold = 8;
				var activePointerId = null;
				var startX = 0;
				var startY = 0;
				var startLeft = 0;
				var startTop = 0;
				var dragging = false;
				var moved = false;
				var suppressClick = false;

				function hasSavedPosition(){
					return '' !== button.style.left && '' !== button.style.top;
				}

				function clamp(value, min, max){
					return Math.min(Math.max(value, min), max);
				}

				function maxLeft(){
					return Math.max(0, window.innerWidth - button.offsetWidth);
				}

				function maxTop(){
					return Math.max(0, window.innerHeight - button.offsetHeight);
				}

				function setPosition(left, top){
					button.style.left = clamp(left, 0, maxLeft()) + 'px';
					button.style.top = clamp(top, 0, maxTop()) + 'px';
					button.style.right = 'auto';
					button.style.bottom = 'auto';
				}

				function savePosition(){
					if(!hasSavedPosition()){ return; }
					var payload = {
						left: parseFloat(button.style.left) || 0,
						top: parseFloat(button.style.top) || 0
					};
					try {
						window.localStorage.setItem(storageKey, JSON.stringify(payload));
					} catch (error) {}
				}

				function restorePosition(){
					var raw = '';
					try {
						raw = window.localStorage.getItem(storageKey) || '';
					} catch (error) {
						raw = '';
					}
					if(!raw){ return; }
					try {
						var parsed = JSON.parse(raw);
						if(!parsed || typeof parsed.left !== 'number' || typeof parsed.top !== 'number'){ return; }
						setPosition(parsed.left, parsed.top);
					} catch (error) {}
				}

				function beginDrag(clientX, clientY, pointerId){
					var rect = button.getBoundingClientRect();
					activePointerId = pointerId;
					startX = clientX;
					startY = clientY;
					startLeft = rect.left;
					startTop = rect.top;
					dragging = true;
					moved = false;
					button.classList.add('abct-wa-floating-dragging');
				}

				function moveDrag(clientX, clientY){
					if(!dragging){ return; }
					var deltaX = clientX - startX;
					var deltaY = clientY - startY;
					if(!moved && Math.sqrt((deltaX * deltaX) + (deltaY * deltaY)) < dragThreshold){
						return;
					}
					moved = true;
					setPosition(startLeft + deltaX, startTop + deltaY);
				}

				function endDrag(){
					if(!dragging){ return; }
					dragging = false;
					button.classList.remove('abct-wa-floating-dragging');
					activePointerId = null;
					if(moved){
						suppressClick = true;
						savePosition();
						window.setTimeout(function(){ suppressClick = false; }, 0);
					}
				}

				button.addEventListener('click', function(event){
					if(suppressClick){
						event.preventDefault();
					}
				}, true);

				restorePosition();

				window.addEventListener('resize', function(){
					if(!hasSavedPosition()){ return; }
					setPosition(parseFloat(button.style.left) || 0, parseFloat(button.style.top) || 0);
					savePosition();
				});

				if(window.PointerEvent){
					button.addEventListener('pointerdown', function(event){
						if('mouse' === event.pointerType && 0 !== event.button){ return; }
						if(button.setPointerCapture){
							try { button.setPointerCapture(event.pointerId); } catch (error) {}
						}
						beginDrag(event.clientX, event.clientY, event.pointerId);
					});
					button.addEventListener('pointermove', function(event){
						if(null === activePointerId || event.pointerId !== activePointerId){ return; }
						moveDrag(event.clientX, event.clientY);
						if(moved){
							event.preventDefault();
						}
					}, { passive: false } );
					button.addEventListener('pointerup', function(event){
						if(null === activePointerId || event.pointerId !== activePointerId){ return; }
						if(button.releasePointerCapture){
							try { button.releasePointerCapture(event.pointerId); } catch (error) {}
						}
						endDrag();
					});
					button.addEventListener('pointercancel', function(event){
						if(null === activePointerId || event.pointerId !== activePointerId){ return; }
						endDrag();
					});
					return;
				}

				button.addEventListener('mousedown', function(event){
					if(0 !== event.button){ return; }
					beginDrag(event.clientX, event.clientY, 'mouse');
				});
				window.addEventListener('mousemove', function(event){
					if('mouse' !== activePointerId){ return; }
					moveDrag(event.clientX, event.clientY);
					if(moved){
						event.preventDefault();
					}
				});
				window.addEventListener('mouseup', function(){
					if('mouse' !== activePointerId){ return; }
					endDrag();
				});

				button.addEventListener('touchstart', function(event){
					if(!event.touches || !event.touches[0]){ return; }
					beginDrag(event.touches[0].clientX, event.touches[0].clientY, 'touch');
				}, { passive: true } );
				window.addEventListener('touchmove', function(event){
					if('touch' !== activePointerId || !event.touches || !event.touches[0]){ return; }
					moveDrag(event.touches[0].clientX, event.touches[0].clientY);
					if(moved){
						event.preventDefault();
					}
				}, { passive: false });
				window.addEventListener('touchend', function(){
					if('touch' !== activePointerId){ return; }
					endDrag();
				});
				window.addEventListener('touchcancel', function(){
					if('touch' !== activePointerId){ return; }
					endDrag();
				});
			})();
			</script>
			