{"id":99256,"date":"2026-05-19T14:43:35","date_gmt":"2026-05-19T17:43:35","guid":{"rendered":"https:\/\/bagy.com.br\/site\/?page_id=99256"},"modified":"2026-05-19T14:44:59","modified_gmt":"2026-05-19T17:44:59","slug":"bagy-pagina-de-testes","status":"publish","type":"page","link":"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/","title":{"rendered":"[BAGY] P\u00e1gina de Testes"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"99256\" class=\"elementor elementor-99256\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6a75e8d e-flex e-con-boxed e-con e-parent\" data-id=\"6a75e8d\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-354545d elementor-widget elementor-widget-html\" data-id=\"354545d\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n(function() {\n    if (document.getElementById('floatWhats')) return;\n\n    \/\/ ---------------------------------------------------------------\n    \/\/ 1) ESCAPE HATCH MANUAL \u2014 body com .hidden-sdr nunca renderiza\n    \/\/ ---------------------------------------------------------------\n    function hasHiddenSdr() {\n        return document.body && document.body.classList && document.body.classList.contains('hidden-sdr');\n    }\n\n    \/\/ ---------------------------------------------------------------\n    \/\/ 2) CONFIG PADR\u00c3O (fallback) \u2014 usado quando n\u00e3o casa nenhum item do CMS\n    \/\/ ---------------------------------------------------------------\n    var DEFAULT_CONFIG = {\n        variant: 'whatsapp',\n        previewText: 'Quero Vender Mais com a Tray',\n        title: 'Ana - Especialista Tray',\n        message: 'Est\u00e1 pronto para transformar sua loja online? Nossos especialistas est\u00e3o prontos para ajudar voc\u00ea a dar o pr\u00f3ximo passo. Clique abaixo e fale com a gente agora!',\n        ctaText: 'Falar com especialista',\n        number: '5514991640732',\n        whatsappMessage: 'Ol\u00e1! Quero saber mais sobre a Tray',\n        formHtml: ''\n    };\n\n    \/\/ ---------------------------------------------------------------\n    \/\/ 3) LEITURA + MATCHING DO CMS\n    \/\/ ---------------------------------------------------------------\n    function readCmsConfigs() {\n        var node = document.getElementById('chat-configs');\n        if (!node) return [];\n        try {\n            var parsed = JSON.parse(node.textContent || node.innerText || '[]');\n            if (!Array.isArray(parsed)) return [];\n            return parsed.filter(function(c) { return c && c.active; });\n        } catch (e) {\n            console.warn('[floatWhats] chat-configs JSON inv\u00e1lido, usando padr\u00e3o.', e);\n            return [];\n        }\n    }\n\n    \/\/ Score de matching: exato > wildcard mais espec\u00edfico > nada.\n    \/\/ Aceita \"\/path\" (exato) ou \"\/path\/*\" (prefixo).\n    function matchScore(pattern, path) {\n        if (!pattern) return -1;\n        if (pattern === path) return 100000;\n        if (pattern.length > 2 && pattern.substr(pattern.length - 2) === '\/*') {\n            var prefix = pattern.substr(0, pattern.length - 2);\n            if (path === prefix || path.indexOf(prefix + '\/') === 0) {\n                return prefix.length;\n            }\n        }\n        return -1;\n    }\n\n    function pickConfig(configs, path) {\n        var best = null;\n        var bestScore = -1;\n        for (var i = 0; i < configs.length; i++) {\n            var s = matchScore(configs[i].pattern, path);\n            if (s > bestScore) { best = configs[i]; bestScore = s; }\n        }\n        return best;\n    }\n\n    function normalizePath() {\n        var p = (window.location && window.location.pathname) || '\/';\n        if (p.length > 1 && p.charAt(p.length - 1) === '\/') p = p.substr(0, p.length - 1);\n        return p || '\/';\n    }\n\n    \/\/ Mescla config do CMS com padr\u00e3o (CMS sobrescreve quando preenchido)\n    function resolveConfig() {\n        var configs = readCmsConfigs();\n        var match = pickConfig(configs, normalizePath());\n        if (!match) return DEFAULT_CONFIG;\n\n        \/\/ formHtml vem base64-encoded do CMS pra n\u00e3o quebrar o JSON.\n        \/\/ Se vier cru (formHtml) tamb\u00e9m aceita, pra facilitar testes.\n        var rawForm = '';\n        if (match.formHtmlB64) {\n            try { rawForm = decodeURIComponent(escape(window.atob(match.formHtmlB64.trim()))); }\n            catch (e) { console.warn('[floatWhats] formHtmlB64 inv\u00e1lido.', e); }\n        } else if (match.formHtml) {\n            rawForm = match.formHtml;\n        }\n\n        var merged = {\n            variant: match.variant || DEFAULT_CONFIG.variant,\n            previewText: match.previewText || DEFAULT_CONFIG.previewText,\n            title: match.title || DEFAULT_CONFIG.title,\n            message: match.message || DEFAULT_CONFIG.message,\n            ctaText: match.ctaText || DEFAULT_CONFIG.ctaText,\n            number: match.number || DEFAULT_CONFIG.number,\n            whatsappMessage: match.whatsappMessage || DEFAULT_CONFIG.whatsappMessage,\n            formHtml: rawForm\n        };\n\n        \/\/ Valida\u00e7\u00f5es: se a variante exigir um campo cr\u00edtico vazio, cai no padr\u00e3o (n\u00e3o quebra)\n        if (merged.variant === 'whatsapp' && !merged.number) {\n            console.warn('[floatWhats] variant=whatsapp sem number, usando padr\u00e3o.');\n            return DEFAULT_CONFIG;\n        }\n        if (merged.variant === 'form' && !merged.formHtml) {\n            console.warn('[floatWhats] variant=form sem formHtml, usando padr\u00e3o.');\n            return DEFAULT_CONFIG;\n        }\n        return merged;\n    }\n\n    \/\/ ---------------------------------------------------------------\n    \/\/ 4) HELPERS DE TEMPLATE\n    \/\/ ---------------------------------------------------------------\n    function escapeHtml(s) {\n        return String(s == null ? '' : s)\n            .replace(\/&\/g, '&amp;').replace(\/<\/g, '&lt;').replace(\/>\/g, '&gt;')\n            .replace(\/\"\/g, '&quot;').replace(\/'\/g, '&#39;');\n    }\n\n    function whatsappUrl(cfg) {\n        return 'https:\/\/wa.me\/' + encodeURIComponent(cfg.number) +\n               '?text=' + encodeURIComponent(cfg.whatsappMessage || '');\n    }\n\n    var WHATS_SVG =\n        '<svg aria-hidden=\"true\" fill=\"white\" class=\"e-font-icon-svg e-fab-whatsapp\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">' +\n        '<path fill=\"white\" d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"><\/path>' +\n        '<\/svg>';\n\n    function buildHtml(cfg) {\n        var isForm = cfg.variant === 'form';\n        var wa = whatsappUrl(cfg);\n\n        \/\/ Bot\u00e3o flutuante \u2014 link s\u00f3 faz sentido pra WhatsApp; pro form \u00e9 s\u00f3 anchor pro pr\u00f3prio chat\n        var floatLink = isForm\n            ? '<a href=\"#\" id=\"open-chat\" class=\"linkwhats\" data-variant=\"form\">' + WHATS_SVG + '<\/a>'\n            : '<a href=\"' + escapeHtml(wa) + '\" id=\"open-chat\" target=\"_blank\" class=\"linkwhats\">' + WHATS_SVG + '<\/a>';\n\n        var balloon = isForm\n            ? '<span class=\"black_info\"><a href=\"#\" data-variant=\"form\" style=\"color:#00a0dc\">' + escapeHtml(cfg.previewText) + '<\/a><\/span>'\n            : '<span class=\"black_info\"><a href=\"' + escapeHtml(wa) + '\" target=\"_blank\" style=\"color:#00a0dc\">' + escapeHtml(cfg.previewText) + '<\/a><\/span>';\n\n        \/\/ Corpo do chat: WhatsApp tem CTA, Form tem o embed inline\n        var chatBody = isForm\n            ? '<div class=\"chat-message\"><p>' + escapeHtml(cfg.message) + '<\/p><\/div>' +\n              '<div class=\"chat-form\">' + cfg.formHtml + '<\/div>'\n            : '<div class=\"chat-message\"><p>' + escapeHtml(cfg.message) + '<\/p><\/div>' +\n              '<a class=\"start-chat linkwhats\" href=\"' + escapeHtml(wa) + '\" target=\"_blank\">' +\n              WHATS_SVG + escapeHtml(cfg.ctaText) +\n              '<\/a>';\n\n        return '<div id=\"floatWhats\" data-variant=\"' + escapeHtml(cfg.variant) + '\">' +\n               '  <div id=\"whatsapp-button\">' +\n               '    ' + balloon +\n               '    ' + floatLink +\n               '    <button id=\"close-floatWhats\" aria-label=\"Fechar\">X<\/button>' +\n               '  <\/div>' +\n               '  <div id=\"whatsapp-chat\" class=\"hidden\">' +\n               '    <div class=\"chat-header\">' +\n               '      <img decoding=\"async\" src=\"https:\/\/sitetray.s3.amazonaws.com\/wp-content\/uploads\/2024\/10\/Novo-Projeto-1.png\" alt=\"\" class=\"profile-pic\">' +\n               '      <div class=\"chat-info\"><span>' + escapeHtml(cfg.title) + '<\/span><\/div>' +\n               '      <button id=\"close-chat\" aria-label=\"Fechar chat\">X<\/button>' +\n               '    <\/div>' +\n               '    ' + chatBody +\n               '  <\/div>' +\n               '<\/div>';\n    }\n\n    \/\/ ---------------------------------------------------------------\n    \/\/ 5) CSS \u2014 mesmo do widget atual + ajuste pro container do form\n    \/\/ ---------------------------------------------------------------\n    var cssContent =\n        '#floatWhats {' +\n        '  font-family: Outfit,-apple-system, BlinkMacSystemFont, \"San Francisco\", \"Segoe UI\", Roboto, \"Helvetica Neue\", sans-serif !important;' +\n        '  display: none;' +\n        '}' +\n        'a { text-decoration: none; }' +\n        '#floatWhats #whatsapp-button { position: fixed; bottom: 30px; right: 35px; cursor: pointer; z-index: 1000; display: flex; align-items: center; }' +\n        '#floatWhats #whatsapp-button a#open-chat svg { width: 40px; height: 30px; }' +\n        '#floatWhats #whatsapp-button a#open-chat { background: #075E54; display: flex; align-items: center; justify-content: center; border-radius: 100%; height: 60px; padding: 15px; width: 60px; animation: pulse 1.5s infinite; position: relative; }' +\n        '#floatWhats #whatsapp-button::after { content: \"1\"; position: absolute; top: -1px; left: -5px; background-color: #075E54; color: white; font-size: 12px; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }' +\n        '#floatWhats #whatsapp-button button { font-size: 10px; background: transparent; border: none; position: absolute; right: -9px; width: 15px; height: 15px; padding: 0; display: inline-block; top: -4px; margin: 0; -webkit-appearance: none; z-index: 3; color: red; cursor: pointer; }' +\n        '#floatWhats #whatsapp-button img { width: 100%; height: 100%; }' +\n        '#floatWhats #whatsapp-chat { position: fixed; bottom: 100px; right: 35px; width: 300px; background-color: white; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); z-index: 1000; transition: opacity 0.3s ease-in-out; }' +\n        '#floatWhats[data-variant=\"form\"] #whatsapp-chat { width: 340px; }' +\n        '#whatsapp-button span.black_info { background: white; padding: 10px; margin-right: 5px; border: 1px solid #075E54; border-radius: 24px; }' +\n        '#floatWhats .chat-message p strong { background: black; color: white; padding: 0 3px; border-radius: 4px; }' +\n        '#floatWhats .hidden { opacity: 0; visibility: hidden; pointer-events: none; }' +\n        '#floatWhats .chat-header { display: flex; align-items: center; padding: 10px; background-color: #075E54; color: white; border-radius: 10px 10px 0 0; }' +\n        '#floatWhats .chat-message p { background: white; padding: 10px; border-radius: 8px; color: #053C4D; box-shadow: 1px 3px 4px 1px #dcdcdc; margin: 0; }' +\n        '#floatWhats .profile-pic { width: 40px; height: 40px; border-radius: 50%; margin-right: 10px; }' +\n        '#floatWhats .chat-info { flex-grow: 1; }' +\n        '#floatWhats .chat-message { padding: 15px; background: url(\"https:\/\/sitetray.s3.amazonaws.com\/wp-content\/uploads\/2024\/10\/wappbg.jpg\"); background-size: cover; }' +\n        '#floatWhats .chat-form { padding: 10px 15px 15px; background: #fff; border-radius: 0 0 10px 10px; max-height: 60vh; overflow-y: auto; }' +\n        '#floatWhats .chat-form iframe { width: 100%; border: 0; display: block; }' +\n        '#floatWhats .start-chat { width: 70%; padding: 10px; background-color: #075E54; color: white; font-size: 15px; border: none; cursor: pointer; border-radius: 16px; margin: 10px auto; text-align: center; line-height: 16px; display: flex; align-items: center; justify-content: center; }' +\n        '#floatWhats .start-chat svg { width: 20px; margin-right: 10px; }' +\n        '#floatWhats #close-chat { background: none; border: none; color: white; font-size: 18px; cursor: pointer; padding: 0; }' +\n        '#floatWhats #whatsapp-chat.hidden { display: none; }' +\n        '#floatWhats #whatsapp-chat.active { display: block; }' +\n        '@media screen and (max-width: 768px) {' +\n        '  #floatWhats #whatsapp-button { position: fixed; right: 12px; height: 50px; cursor: pointer; z-index: 2; }' +\n        '  #floatWhats #whatsapp-button a#open-chat { width: 50px; height: 50px; padding: 10px; }' +\n        '  #floatWhats #whatsapp-chat { position: fixed; right: 17px; width: 300px; background-color: white; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); z-index: 1000; transition: opacity 0.3s ease-in-out; }' +\n        '  #floatWhats[data-variant=\"form\"] #whatsapp-chat { width: calc(100vw - 24px); right: 12px; }' +\n        '  #floatWhats #close-chat { background: none; border: none; color: white; font-size: 18px; cursor: pointer; margin: 0; padding: 0 0 0 20px; }' +\n        '  #floatWhats .chat-message { padding: 5px 10px; }' +\n        '  #floatWhats .chat-info { flex-grow: 1; font-size: 12px; }' +\n        '  #floatWhats .start-chat { width: 70%; padding: 7px; color: white; margin: 10px; font-size: 15px; border: none; cursor: pointer; border-radius: 16px; text-align: center; line-height: 14px; display: flex; align-items: center; justify-content: center; }' +\n        '  #floatWhats .chat-message p { border-radius: 8px; box-shadow: 1px 3px 4px 1px #dcdcdc; background: white; font-size: 14px; font-weight: 500; padding: 5px 10px; }' +\n        '}' +\n        'a#open-chat:before { content: \\'\\'; border-radius: 1000px; min-width: calc(60px + 12px); min-height: calc(60px + 12px); border: 6px solid #00FFCB; box-shadow: 0 0 60px rgba(0,255,203,.64); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; transition: all .3s ease-in-out 0s; }' +\n        'a#open-chat:after { content: \\'\\'; width: 30px; height: 30px; border-radius: 100%; border: 6px solid #00FFCB; position: absolute; z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ring 1.5s infinite; }' +\n        '@keyframes ring { 0% { width: 30px; height: 30px; opacity: 1; } 100% { width: 90px; height: 90px; opacity: 0; } }' +\n        '@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }';\n\n    \/\/ ---------------------------------------------------------------\n    \/\/ 6) BOOTSTRAP \u2014 inje\u00e7\u00e3o e wire-up\n    \/\/ ---------------------------------------------------------------\n    function initialize() {\n        if (hasHiddenSdr()) return;\n\n        var cfg = resolveConfig();\n        if (cfg.variant === 'disabled') return;\n\n        \/\/ Injeta HTML\n        var tempDiv = document.createElement('div');\n        tempDiv.innerHTML = buildHtml(cfg);\n        var widgetEl = tempDiv.firstChild;\n        document.body.appendChild(widgetEl);\n\n        \/\/ Injeta CSS\n        var styleTag = document.createElement('style');\n        styleTag.type = 'text\/css';\n        if (styleTag.styleSheet) styleTag.styleSheet.cssText = cssContent;\n        else styleTag.appendChild(document.createTextNode(cssContent));\n        document.head.appendChild(styleTag);\n\n        var floatWhats = document.getElementById('floatWhats');\n        if (floatWhats) floatWhats.style.display = 'block';\n\n        var chatModal = document.getElementById('whatsapp-chat');\n        var closeChatButton = document.getElementById('close-chat');\n        var whatsappButton = document.getElementById('open-chat');\n        var closeFloatWhatsButton = document.getElementById('close-floatWhats');\n        var balloonLink = floatWhats ? floatWhats.querySelector('.black_info a') : null;\n\n        var modalOpenedCount = parseInt(sessionStorage.getItem('modalOpenedCount') || '0', 10);\n        var chatOpened = false;\n\n        function openChatModal() {\n            if (modalOpenedCount < 2 && !chatOpened && chatModal) {\n                chatModal.className = chatModal.className.replace('hidden', '') + ' active';\n                chatOpened = true;\n                modalOpenedCount++;\n                sessionStorage.setItem('modalOpenedCount', modalOpenedCount);\n            }\n        }\n\n        function closeChat(e) {\n            if (e) e.preventDefault();\n            if (chatModal) {\n                chatModal.className = chatModal.className.replace('active', '') + ' hidden';\n                chatOpened = false;\n            }\n        }\n\n        if (closeChatButton) closeChatButton.addEventListener('click', closeChat);\n\n        \/\/ Pro form: clique no bot\u00e3o flutuante abre o chat em vez de wa.me\n        if (cfg.variant === 'form') {\n            if (whatsappButton) whatsappButton.addEventListener('click', function(e) { e.preventDefault(); openChatModal(); });\n            if (balloonLink) balloonLink.addEventListener('click', function(e) { e.preventDefault(); openChatModal(); });\n        } else {\n            if (whatsappButton) whatsappButton.addEventListener('click', openChatModal);\n        }\n\n        if (closeFloatWhatsButton) {\n            closeFloatWhatsButton.addEventListener('click', function() {\n                if (floatWhats) floatWhats.style.display = 'none';\n            });\n        }\n\n        \/\/ Triggers de abertura autom\u00e1tica (scroll 50% + 60s)\n        function handleScroll() {\n            var scrollPosition = window.scrollY + window.innerHeight;\n            var pageHeight = document.documentElement.scrollHeight;\n            if (scrollPosition >= pageHeight \/ 2) {\n                openChatModal();\n                window.removeEventListener('scroll', handleScroll);\n            }\n        }\n        window.addEventListener('scroll', handleScroll);\n        setTimeout(openChatModal, 60000);\n    }\n\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', initialize);\n    } else {\n        initialize();\n    }\n})();\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":26,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-99256","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[BAGY] P\u00e1gina de Testes - Bagy<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[BAGY] P\u00e1gina de Testes - Bagy\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/\" \/>\n<meta property=\"og:site_name\" content=\"Bagy\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-19T17:44:59+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/\",\"url\":\"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/\",\"name\":\"[BAGY] P\u00e1gina de Testes - Bagy\",\"isPartOf\":{\"@id\":\"https:\/\/bagy.com.br\/site\/#website\"},\"datePublished\":\"2026-05-19T17:43:35+00:00\",\"dateModified\":\"2026-05-19T17:44:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/bagy.com.br\/site\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[BAGY] P\u00e1gina de Testes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bagy.com.br\/site\/#website\",\"url\":\"https:\/\/bagy.com.br\/site\/\",\"name\":\"Bagy\",\"description\":\"Tenha sua pr\u00f3pria loja online de uma maneira r\u00e1pida e f\u00e1cil sem precisar ter nenhum conhecimento t\u00e9cnico\",\"publisher\":{\"@id\":\"https:\/\/bagy.com.br\/site\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bagy.com.br\/site\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/bagy.com.br\/site\/#organization\",\"name\":\"Bagy\",\"url\":\"https:\/\/bagy.com.br\/site\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/bagy.com.br\/site\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/bagy.com.br\/site\/wp-content\/uploads\/2021\/02\/logo-bagy-rosa.svg\",\"contentUrl\":\"https:\/\/bagy.com.br\/site\/wp-content\/uploads\/2021\/02\/logo-bagy-rosa.svg\",\"width\":130,\"height\":52,\"caption\":\"Bagy\"},\"image\":{\"@id\":\"https:\/\/bagy.com.br\/site\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[BAGY] P\u00e1gina de Testes - Bagy","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/","og_locale":"pt_BR","og_type":"article","og_title":"[BAGY] P\u00e1gina de Testes - Bagy","og_url":"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/","og_site_name":"Bagy","article_modified_time":"2026-05-19T17:44:59+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/","url":"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/","name":"[BAGY] P\u00e1gina de Testes - Bagy","isPartOf":{"@id":"https:\/\/bagy.com.br\/site\/#website"},"datePublished":"2026-05-19T17:43:35+00:00","dateModified":"2026-05-19T17:44:59+00:00","breadcrumb":{"@id":"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/bagy.com.br\/site\/bagy-pagina-de-testes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/bagy.com.br\/site\/"},{"@type":"ListItem","position":2,"name":"[BAGY] P\u00e1gina de Testes"}]},{"@type":"WebSite","@id":"https:\/\/bagy.com.br\/site\/#website","url":"https:\/\/bagy.com.br\/site\/","name":"Bagy","description":"Tenha sua pr\u00f3pria loja online de uma maneira r\u00e1pida e f\u00e1cil sem precisar ter nenhum conhecimento t\u00e9cnico","publisher":{"@id":"https:\/\/bagy.com.br\/site\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bagy.com.br\/site\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/bagy.com.br\/site\/#organization","name":"Bagy","url":"https:\/\/bagy.com.br\/site\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/bagy.com.br\/site\/#\/schema\/logo\/image\/","url":"https:\/\/bagy.com.br\/site\/wp-content\/uploads\/2021\/02\/logo-bagy-rosa.svg","contentUrl":"https:\/\/bagy.com.br\/site\/wp-content\/uploads\/2021\/02\/logo-bagy-rosa.svg","width":130,"height":52,"caption":"Bagy"},"image":{"@id":"https:\/\/bagy.com.br\/site\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/pages\/99256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/comments?post=99256"}],"version-history":[{"count":4,"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/pages\/99256\/revisions"}],"predecessor-version":[{"id":99260,"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/pages\/99256\/revisions\/99260"}],"wp:attachment":[{"href":"https:\/\/bagy.com.br\/site\/wp-json\/wp\/v2\/media?parent=99256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}