{"id":10,"date":"2022-12-29T09:18:48","date_gmt":"2022-12-29T12:18:48","guid":{"rendered":"https:\/\/themepanthers.com\/wp\/vankine\/v1\/?page_id=10"},"modified":"2024-06-21T14:18:18","modified_gmt":"2024-06-21T17:18:18","slug":"inicio","status":"publish","type":"page","link":"https:\/\/ws.dev.br\/ws4\/","title":{"rendered":"In\u00edcio"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"10\" class=\"elementor elementor-10\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-b31bdc0 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"b31bdc0\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-279229e\" data-id=\"279229e\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-4e8ac48 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"4e8ac48\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1716df0 animated-slow elementor-invisible\" data-id=\"1716df0\" data-element_type=\"column\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\n<style>\n    #modal_acessar_sistema {\n        display: none;\n        position: fixed;\n        z-index: 100;\n        left: 0;\n        top: 0;\n        width: 100%;\n        height: 100%;\n        overflow: auto;\n        background-color: rgba(0, 0, 0, 0.5);\n        padding-top: 60px;\n    }\n\n    #modal_acessar_sistema .modal-title{\n        font-size: 1.2rem;\n        margin-bottom: 2rem;\n    }\n\n    #modal_acessar_sistema .modal-content {\n        background-color: #fefefe;\n        margin: 5% auto;\n        padding: 20px;\n        border: 1px solid #888;\n        width: 60%;\n        max-width: 600px;\n        border-radius: 6px;\n        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n        animation: fadeIn 0.7s ease;\n    }\n\n    #modal_acessar_sistema .close {\n        color: #aaa;\n        float: right;\n        font-size: 28px;\n        font-weight: bold;\n    }\n\n    #modal_acessar_sistema .close:hover,\n    #modal_acessar_sistema .close:focus {\n        color: black;\n        text-decoration: none;\n        cursor: pointer;\n    }\n\n    #modal_acessar_sistema .modal_option {\n        display: flex;\n        justify-content: end;\n    }\n\n    #modal_acessar_sistema .modal_option .btn {\n        padding: 10px 20px;\n        background-color: #007bff;\n        border: none;\n        color: #fff;\n        border-radius: 4px;\n        cursor: pointer;\n        font-size: 16px;\n    }\n\n    #modal_acessar_sistema .modal_option .btn:hover {\n        background-color: #0056b3;\n    }\n\n    #modal_acessar_sistema .select-wrapper {\n        margin-bottom: 15px;\n    }\n\n    #modal_acessar_sistema select {\n        width: 100%;\n        padding: 8px;\n        border-radius: 4px;\n        border: 1px solid #ccc;\n    }\n\n    @media (max-width: 500px) {\n        #modal_acessar_sistema .modal-content {\n            width: 80%;\n        }\n    }\n\n    @keyframes fadeIn {\n        0% {\n            opacity: 0;\n            transform: translate(0, -50%);\n        }\n\n        75% {\n            opacity: 0.75;\n            transform: translate(0, 0);\n        }\n\n        100% {\n            opacity: 1;\n        }\n    }\n<\/style>\n\n<div id=\"modal_acessar_sistema\" class=\"modal\">\n    <div class=\"modal-content\">\n        <h2 class=\"modal-title\">Selecione sua Empresa<\/h2>\n        <div class=\"select-wrapper\">\n            <select id=\"clientes\">\n            <\/select>\n        <\/div>\n        <div class=\"modal_option\">\n            <button class=\"btn\" onclick=\"acessarSistema()\">Acessar<\/button>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    function openModal() {\n        var modal = document.getElementById('modal_acessar_sistema');\n        modal.style.display = 'block';\n\n        modal.addEventListener('click', function (event) {\n            if (event.target === this) {\n                closeModal();\n            }\n        });\n    }\n\n    function closeModal() {\n        var modal = document.getElementById('modal_acessar_sistema');\n        modal.style.display = 'none';\n        modal.removeEventListener('click', closeModal);\n    }\n\n    function acessarSistema() {\n        var clienteSelecionado = document.getElementById('clientes').value;\n        window.location.href = clienteSelecionado;\n    }\n    \n    document.addEventListener('DOMContentLoaded', function () {\n        var xhr = new XMLHttpRequest();\n\n        xhr.open('GET', 'https:\/\/ws.dev.br\/ws4\/clientes.json', true);\n\n        xhr.onload = function () {\n            if (xhr.status >= 200 && xhr.status < 400) {\n                var data = JSON.parse(xhr.responseText);\n                let clientes = '<option value=\"\">Selecione seu sistema<\/option>'; \/\/ Corrigido o sinal de igual\n\ndata.forEach(function(row){\n    clientes += '<option value=\"' + row.url + '\">' + row.Cliente + '<\/option>';\n});\n\ndocument.getElementById('clientes').innerHTML = clientes; \/\/ Removido o sinal de #\n            } else {\n                console.error('Erro na requisi\u00e7\u00e3o. Status:', xhr.status);\n            }\n        };\n        xhr.onerror = function () {\n            console.error('Erro de rede ao tentar fazer a requisi\u00e7\u00e3o.');\n        };\n\n        xhr.send();\n    });\n<\/script>\t\t<div class=\"elementor-element elementor-element-904bf3e elementor-widget elementor-widget-image\" data-id=\"904bf3e\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"550\" height=\"700\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2024\/06\/img1.png\" class=\"attachment-large size-large wp-image-4545\" alt=\"\" srcset=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2024\/06\/img1.png 550w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2024\/06\/img1-236x300.png 236w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-3c1f372 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"3c1f372\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-baee838\" data-id=\"baee838\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-50a87cf elementor-absolute elementor-widget elementor-widget-vankine-fun-facts-v1\" data-id=\"50a87cf\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"vankine-fun-facts-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n                <div class=\"fun_facts type_two\">\r\n                    <h4>\r\n                <span class=\"count\">\r\n                    17                <\/span>\r\n                <small>\r\n                    +                <\/small>\r\n            <\/h4>\r\n                            <h6 class=\"title_no_a_26\">Anos de Experi\u00eancia<\/h6>\r\n                <\/div>\r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-26dad54\" data-id=\"26dad54\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8ceaa2c\" data-id=\"8ceaa2c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-9a73ab5 elementor-hidden-tablet elementor-hidden-mobile\" data-id=\"9a73ab5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-bf74951\" data-id=\"bf74951\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4fbd1ee animated-slow elementor-invisible elementor-widget elementor-widget-vankine-title-v1\" data-id=\"4fbd1ee\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"vankine-title-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t                    <div class=\"section_title type_one\">\r\n                            <h4 class=\"sm_title\"> Empresa inovadora<\/h4>\r\n                                        <div class=\"title_whole\">\r\n                                            <h2 class=\"title\"> Uma empresa de desenvolvimento Web  <\/h2>\r\n                                    <\/div>\r\n                                <\/div>\r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-01dd13e elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"01dd13e\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-d7d50ec\" data-id=\"d7d50ec\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-57ebd4c elementor-invisible elementor-widget elementor-widget-vankine-text-editor-v1\" data-id=\"57ebd4c\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"vankine-text-editor-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t   <div class=\"position-relative position_p_relative\">\r\n        <p>Oferecemos solu\u00e7\u00f5es eficazes para reduzir custos, melhorar acesso \u00e0s informa\u00e7\u00f5es, agilizar processos e proteger dados. Desde 2006, buscamos a excel\u00eancia em tecnologia.<\/p>    <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-efb754d elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible\" data-id=\"efb754d\" data-element_type=\"section\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58716e5\" data-id=\"58716e5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-10824fa elementor-widget elementor-widget-vankine-themebtns-v1\" data-id=\"10824fa\" data-element_type=\"widget\" data-widget_type=\"vankine-themebtns-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t                 <div class=\"theme_btn_all\">\n            <a style=\"cursor: pointer;\" onclick=\"openModal()\"   rel=&quot;nofollow&quot; class=\"theme_btn\">\n            \t\n              Saber mais                                                                                <span> <i class=\" fi-rr-arrow-small-up\"><\/i><\/span>\n                        \t\n                    \t\n                \t\n            <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5a95ac2\" data-id=\"5a95ac2\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d2750d3 elementor-widget elementor-widget-vankine-contact-header-v1\" data-id=\"d2750d3\" data-element_type=\"widget\" data-widget_type=\"vankine-contact-header-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"d-flex align-items-center contact_header_one\">\r\n                                    <div class=\"icon_s\">\r\n                    <i class=\" fi-rr-headphones\"><\/i>\r\n                <\/div>\r\n            \t\r\n            \t\r\n        <div class=\"content\">\r\n            <h6 class=\"tite\">Fale Conosco no Whatsapp<\/h6>\r\n                            <div class=\"title_20\"><a href=\"tel:+55 77 99941-4144\">+55 77 99941-4144<\/a><\/div>\r\n                    <\/div>\r\n<\/div>\r\n\r\n \r\n\r\n\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div class=\"elementor-element elementor-element-1c99d2f elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"1c99d2f\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7c44805 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7c44805\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-04e8337\" data-id=\"04e8337\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d480b8e elementor-invisible elementor-widget elementor-widget-vankine-fun-facts-v1\" data-id=\"d480b8e\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"vankine-fun-facts-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n        \r\n        <div class=\"fun_facts type_one\">\r\n                    <h4>\r\n                <span class=\"count\">\r\n                    100                <\/span>\r\n                <small>\r\n                    +                <\/small>\r\n            <\/h4>\r\n                            <h6 class=\"title_no_a_18\">Clientes Satisfeitos<\/h6>\r\n                <\/div>\r\n\r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-9be637a\" data-id=\"9be637a\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-0badda3\" data-id=\"0badda3\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-333e033 elementor-invisible elementor-widget elementor-widget-vankine-fun-facts-v1\" data-id=\"333e033\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"vankine-fun-facts-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n        \r\n        <div class=\"fun_facts type_one\">\r\n                    <h4>\r\n                <span class=\"count\">\r\n                    10                <\/span>\r\n                <small>\r\n                    +                <\/small>\r\n            <\/h4>\r\n                            <h6 class=\"title_no_a_18\">Parceiros Comerciais<\/h6>\r\n                <\/div>\r\n\r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-30ce9f6 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"30ce9f6\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6f8c9fa\" data-id=\"6f8c9fa\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-05b1c2e elementor-invisible elementor-widget elementor-widget-vankine-title-v1\" data-id=\"05b1c2e\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"vankine-title-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t                    <div class=\"section_title type_one\">\r\n                            <h4 class=\"sm_title\"> Empresa incr\u00edvel<\/h4>\r\n                                        <div class=\"title_whole\">\r\n                                            <h2 class=\"title\"> Ajudamos voc\u00ea tornar sua empresa digital  <\/h2>\r\n                                    <\/div>\r\n                                <\/div>\r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-e194ef1 elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-invisible\" data-id=\"e194ef1\" data-element_type=\"section\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ca730a5 elementor-hidden-tablet elementor-hidden-mobile\" data-id=\"ca730a5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fcf261a e-transform elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"fcf261a\" data-element_type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:90,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-98eb5b5\" data-id=\"98eb5b5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-cf7eef5 elementor-widget elementor-widget-vankine-text-editor-v1\" data-id=\"cf7eef5\" data-element_type=\"widget\" data-widget_type=\"vankine-text-editor-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t   <div class=\"position-relative position_p_relative\">\r\n        <p>Transforme sua empresa com a Wsouza. Desenvolvemos solu\u00e7\u00f5es digitais desde 2006, impulsionando a efici\u00eancia e inova\u00e7\u00e3o. Conte conosco para elevar sua presen\u00e7a online.<\/p>    <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-15ab728 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible\" data-id=\"15ab728\" data-element_type=\"section\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-74ecbb5\" data-id=\"74ecbb5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-099065e elementor-widget elementor-widget-vankine-icon-v1\" data-id=\"099065e\" data-element_type=\"widget\" data-widget_type=\"vankine-icon-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n                <div class=\"icon_box_only type_five d-flex  trans\">\r\n                            <div class=\"icon\">\r\n                                    <i aria-hidden=\"false\" class=\"fas fa-check-circle\"><\/i>                \t\r\n                <\/div>\r\n                        <div class=\"content\">\r\n                                    <div class=\"title_22\">\r\n                        <a href=\"#\"   >    \r\n                            Desenvolvimento Web Avan\u00e7ado                        <\/a>\r\n                    <\/div>\r\n                \t\r\n                                    <p>Por outro lado, inovamos com dedica\u00e7\u00e3o incans\u00e1vel<\/p>\r\n                                            <\/div>\r\n          \r\n    <\/div>\r\n    \r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-295a848\" data-id=\"295a848\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4397313\" data-id=\"4397313\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d61fd1c elementor-widget elementor-widget-vankine-icon-v1\" data-id=\"d61fd1c\" data-element_type=\"widget\" data-widget_type=\"vankine-icon-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n                <div class=\"icon_box_only type_five d-flex  trans\">\r\n                            <div class=\"icon\">\r\n                                    <i aria-hidden=\"false\" class=\"fas fa-check-circle\"><\/i>                \t\r\n                <\/div>\r\n                        <div class=\"content\">\r\n                                    <div class=\"title_22\">\r\n                        <a href=\"#\"   >    \r\n                            Efici\u00eancia e Processos Simplificados                        <\/a>\r\n                    <\/div>\r\n                \t\r\n                                    <p>Lideramos com maestria, sendo os pioneiros em solu\u00e7\u00f5es de excel\u00eancia<\/p>\r\n                                            <\/div>\r\n          \r\n    <\/div>\r\n    \r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-cf784ad elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible\" data-id=\"cf784ad\" data-element_type=\"section\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-d45f134\" data-id=\"d45f134\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fb2277c elementor-widget elementor-widget-vankine-icon-v1\" data-id=\"fb2277c\" data-element_type=\"widget\" data-widget_type=\"vankine-icon-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n                <div class=\"icon_box_only type_five d-flex  trans\">\r\n                            <div class=\"icon\">\r\n                                    <i aria-hidden=\"false\" class=\"fas fa-check-circle\"><\/i>                \t\r\n                <\/div>\r\n                        <div class=\"content\">\r\n                                    <div class=\"title_22\">\r\n                        <a href=\"#\"   >    \r\n                            Dom\u00ednio nas Solu\u00e7\u00f5es Tecnol\u00f3gicas                        <\/a>\r\n                    <\/div>\r\n                \t\r\n                                    <p>Em nosso campo, a expertise \u00e9 nossa marca registrada<\/p>\r\n                                            <\/div>\r\n          \r\n    <\/div>\r\n    \r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-df1d662\" data-id=\"df1d662\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-05a8ae5\" data-id=\"05a8ae5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-157bf9d elementor-widget elementor-widget-vankine-icon-v1\" data-id=\"157bf9d\" data-element_type=\"widget\" data-widget_type=\"vankine-icon-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n                <div class=\"icon_box_only type_five d-flex  trans\">\r\n                            <div class=\"icon\">\r\n                                    <i aria-hidden=\"false\" class=\"fas fa-check-circle\"><\/i>                \t\r\n                <\/div>\r\n                        <div class=\"content\">\r\n                                    <div class=\"title_22\">\r\n                        <a href=\"#\"   >    \r\n                            Maximize Seu Investimento                        <\/a>\r\n                    <\/div>\r\n                \t\r\n                                    <p>Proporcionar excel\u00eancia, mesmo diante de desafios<\/p>\r\n                                            <\/div>\r\n          \r\n    <\/div>\r\n    \r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-33ae5a4\" data-id=\"33ae5a4\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ee0e26c elementor-invisible elementor-widget elementor-widget-vankine-image-box-v1\" data-id=\"ee0e26c\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"vankine-image-box-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        \r\n                \r\n        <div class=\"image_box_only  type_four\">\r\n                            <div class=\"image\">\r\n                    <img decoding=\"async\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/09\/Onde-um-desenvolvedor-de-software-pode-trabalhar-1024x683-1.jpg\" alt=\"img\" \/>\r\n                <\/div>\r\n                \r\n            <div class=\"abso_content\">\r\n                  \r\n\r\n                <div class=\"authour_box\">\r\n                    <div class=\"d-flex align-items-center\">\r\n                           \r\n                            <img decoding=\"async\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/09\/Captura-de-tela-de-2023-09-28-16-49-09.png\" alt=\"img\" \/>\r\n                          \r\n                                                    <h6 class=\"title_no_a_18\">WSouza<\/h6>\r\n                          \r\n                    <\/div>\r\n                                            <h6 class=\"title_no_a_26\">Criando Solu\u00e7\u00f5es<\/h6>\r\n                      \r\n                <\/div>\r\n            <\/div>\r\n        <\/div> \r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-8e01378 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8e01378\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9d4b0fe\" data-id=\"9d4b0fe\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6456636 elementor-section-content-middle animated-slow elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible\" data-id=\"6456636\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6ff5af2\" data-id=\"6ff5af2\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a349321 elementor-widget elementor-widget-vankine-title-v1\" data-id=\"a349321\" data-element_type=\"widget\" data-widget_type=\"vankine-title-v1.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t                    <div class=\"section_title type_one\">\r\n                            <h4 class=\"sm_title\"> Clientes Populares<\/h4>\r\n                                        <div class=\"title_whole\">\r\n                                            <h2 class=\"title\"> Temos 100+ Clientes no Setor P\u00fablico e Privado  <\/h2>\r\n                                    <\/div>\r\n                                <\/div>\r\n            \r\n\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-cbf003d elementor-hidden-tablet elementor-hidden-mobile\" data-id=\"cbf003d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-27f6cb2\" data-id=\"27f6cb2\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-df627af elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"df627af\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-21021de\" data-id=\"21021de\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-56e5e72 elementor-widget elementor-widget-image\" data-id=\"56e5e72\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"816\" height=\"306\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/5-removebg-preview.png\" class=\"attachment-large size-large wp-image-4160\" alt=\"\" srcset=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/5-removebg-preview.png 816w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/5-removebg-preview-300x113.png 300w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/5-removebg-preview-768x288.png 768w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/5-removebg-preview-600x225.png 600w\" sizes=\"(max-width: 816px) 100vw, 816px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-56df193\" data-id=\"56df193\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e0cefbe elementor-widget elementor-widget-image\" data-id=\"e0cefbe\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"816\" height=\"306\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/2-removebg-preview.png\" class=\"attachment-large size-large wp-image-4159\" alt=\"\" srcset=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/2-removebg-preview.png 816w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/2-removebg-preview-300x113.png 300w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/2-removebg-preview-768x288.png 768w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/2-removebg-preview-600x225.png 600w\" sizes=\"(max-width: 816px) 100vw, 816px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-581b9ca\" data-id=\"581b9ca\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fe35a0f elementor-widget elementor-widget-image\" data-id=\"fe35a0f\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"113\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/3-removebg-preview-300x113.png\" class=\"attachment-medium size-medium wp-image-4158\" alt=\"\" srcset=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/3-removebg-preview-300x113.png 300w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/3-removebg-preview-768x288.png 768w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/3-removebg-preview-600x225.png 600w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/3-removebg-preview.png 816w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-06ede8b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"06ede8b\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-cfc2d2d\" data-id=\"cfc2d2d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-21c07da elementor-widget elementor-widget-image\" data-id=\"21c07da\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"816\" height=\"306\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/4-removebg-preview.png\" class=\"attachment-large size-large wp-image-4157\" alt=\"\" srcset=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/4-removebg-preview.png 816w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/4-removebg-preview-300x113.png 300w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/4-removebg-preview-768x288.png 768w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/4-removebg-preview-600x225.png 600w\" sizes=\"(max-width: 816px) 100vw, 816px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-b324907\" data-id=\"b324907\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-33e045b elementor-widget elementor-widget-image\" data-id=\"33e045b\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"816\" height=\"306\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/6-removebg-preview.png\" class=\"attachment-large size-large wp-image-4156\" alt=\"\" srcset=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/6-removebg-preview.png 816w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/6-removebg-preview-300x113.png 300w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/6-removebg-preview-768x288.png 768w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/6-removebg-preview-600x225.png 600w\" sizes=\"(max-width: 816px) 100vw, 816px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-66362be\" data-id=\"66362be\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a7b2d52 elementor-widget elementor-widget-image\" data-id=\"a7b2d52\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"816\" height=\"306\" src=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/PREFEITURA_MUNICIPAL_DE_ITAMARAJU-removebg-preview.png\" class=\"attachment-large size-large wp-image-4155\" alt=\"\" srcset=\"https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/PREFEITURA_MUNICIPAL_DE_ITAMARAJU-removebg-preview.png 816w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/PREFEITURA_MUNICIPAL_DE_ITAMARAJU-removebg-preview-300x113.png 300w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/PREFEITURA_MUNICIPAL_DE_ITAMARAJU-removebg-preview-768x288.png 768w, https:\/\/ws.dev.br\/ws4\/wp-content\/uploads\/2023\/10\/PREFEITURA_MUNICIPAL_DE_ITAMARAJU-removebg-preview-600x225.png 600w\" sizes=\"(max-width: 816px) 100vw, 816px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-9d172f3 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"9d172f3\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3ce6717\" data-id=\"3ce6717\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>17 + Anos de Experi\u00eancia Empresa inovadora Uma empresa de desenvolvimento Web Oferecemos solu\u00e7\u00f5es eficazes para reduzir custos, melhorar acesso \u00e0s informa\u00e7\u00f5es, agilizar processos e proteger dados. Desde 2006, buscamos a excel\u00eancia em tecnologia. Saber mais Fale Conosco no Whatsapp +55 77 99941-4144 100 + Clientes Satisfeitos 10 + Parceiros Comerciais Empresa incr\u00edvel Ajudamos voc\u00ea [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-homepage.php","meta":{"footnotes":""},"class_list":["post-10","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/pages\/10","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/comments?post=10"}],"version-history":[{"count":113,"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/pages\/10\/revisions"}],"predecessor-version":[{"id":4548,"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/pages\/10\/revisions\/4548"}],"wp:attachment":[{"href":"https:\/\/ws.dev.br\/ws4\/wp-json\/wp\/v2\/media?parent=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}