{"id":23197,"date":"2024-07-08T20:26:00","date_gmt":"2024-07-08T20:26:00","guid":{"rendered":"https:\/\/www.growketing.com\/services\/growth-marketing\/"},"modified":"2024-08-26T18:41:34","modified_gmt":"2024-08-26T18:41:34","slug":"growth-marketing","status":"publish","type":"page","link":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/","title":{"rendered":"Growth Marketing"},"content":{"rendered":"\n<div class=\"service-header\">\n    <div class=\"service-filter\">\n        <ul>\n            <li class=\"filter-title\">\n                Our services:            <\/li>\n                            <li class=\"active\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/growth-marketing\/'>\n                        Growth Marketing                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/data-analytics\/'>\n                        Paid Media \/ PPC                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/data-analytics\/'>\n                        Data &amp; AI                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/seo\/'>\n                        SEO                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/revenue-operations\/'>\n                        Revenue Operations                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/web-readiness\/'>\n                        Web Readiness                    <\/a>\n                <\/li>\n                    <\/ul>\n    <\/div>\n    <div class=\"row-services\">\n        <div class=\"service-title\">\n            <div class=\"service-container\">\n                <h1>\n                    Growth Marketing                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/ppc.svg\" alt=\"\">\n                                    <\/h1>\n                <p class=\"service-description\">\n                    We apply strategic techniques focused on constantly identifying and leveraging growth opportunities for your business. Our comprehensive approach ensures that every action is aligned with your expansion and optimization goals.\r\n\r\n\r\n                <\/p>\n                <a href=\"https:\/\/www.growketing.com\/contacto\/\" target=\"\"><button>\n                        Conectemos                    <\/button><\/a>\n            <\/div>\n        <\/div>\n\n        <div class=\"container-spinner\">\n            <div class=\"floating-img-container\">\n                <img decoding=\"async\" class=\"floating-img\"\n                    src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/grow-data.svg\" alt=\"\">\n                <div class=\"spinner-inside\">\n                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/grow-inside.svg\"\n                        alt=\"Inside Spinner\">\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"spacer\"><\/div>\n\n    <div class=\"service_methodology_cta_no_home\">\n        <div class=\"service-wit\">\n            <div class=\"wit-container\">\n                <div class=\"col-md-6 col-sm-12\">\n                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/ppc.svg\" alt=\"\">\n                <\/div>\n\n                <div class=\"col-md-6 col-sm-12\">\n                    <h2 class=\"wit-title\">\n                        What is Growth Marketing?                    <\/h2>\n                    <p class=\"wit-description\">\n                        Growth Marketing is an approach that combines skills, disciplines, and analytical creativity to empower strategies that drive your growth.\r\n\r\nTo ensure concrete results, as a growth marketing agency, we identify opportunities by combining disciplines such as Data, technology, Paid Media, SEO, Revenue Operations, among others, to maximize the development of your project.\r\n\r\n                    <\/p>\n                    <a href=\"https:\/\/www.growketing.com\/contacto\/\" target=\"\"><button>\n                            \u00a1Hablemos!                        <\/button><\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    \/\/ 1. Selecciona el h1 dentro del .service-container\n    const h1 = document.querySelector('.service-container h1');\n\n    \/\/ 2. Obtiene el texto completo omitiendo im\u00e1genes\n    let textContent = '';\n    for (let child of h1.childNodes) {\n        if (child.nodeType === 3) { \/\/ 3 es Node.TEXT_NODE\n            textContent += child.textContent;\n        }\n    }\n\n    \/\/ 3. Encuentra la \u00faltima palabra\n    const words = textContent.trim().split(\/\\s+\/);\n    const lastWord = words[words.length - 1];\n\n    \/\/ 4. Reemplaza la \u00faltima aparici\u00f3n de esa palabra en el h1 con un span que tenga un border-bottom\n    const regexLastWord = new RegExp(`(${lastWord})(?![\\\\s\\\\S]*${lastWord})`, 'g');\n\n    let replacedContent = h1.innerHTML.replace(regexLastWord, `<span style=\"border-bottom: 3px solid #12F266;\">$1<\/span>`);\n\n    h1.innerHTML = replacedContent;\n\n    document.addEventListener('DOMContentLoaded', function () {\n        const SLIDER_MIN_OFFSET = 0;\n        const SLIDER_MAX_OFFSET = -850;\n        const MOBILE_WIDTH_BREAKPOINT = 768;\n\n        \/\/ Utiliza jQuery para obtener el ancho de la ventana\n        function isMobileView() {\n            const width = jQuery(window).width();\n            return width <= MOBILE_WIDTH_BREAKPOINT;\n        }\n\n        if (!isMobileView()) {\n            return; \/\/ No es un dispositivo m\u00f3vil, no continuar\n        }\n\n        const slider = document.querySelector('.service-filter');\n        const offsets = [0, -100, -200, -500, -810];\n        let isDragging = false;\n        let startX = 0;\n        let currentTranslateX = 0;\n\n        function applyTranslateX(offset) {\n            slider.style.transform = `translateX(${offset}px)`;\n            currentTranslateX = offset;\n            localStorage.setItem('scrollPosition', offset);\n        }\n\n        function onStart(event) {\n            isDragging = true;\n            startX = (event.touches ? event.touches[0] : event).clientX;\n            slider.classList.add('grabbing');\n            slider.style.transition = 'none';\n        }\n\n        function onMove(event) {\n            if (!isDragging) return;\n            const clientX = (event.touches ? event.touches[0] : event).clientX;\n            let translateX = currentTranslateX + (clientX - startX);\n\n            translateX = Math.max(translateX, SLIDER_MAX_OFFSET);\n            translateX = Math.min(translateX, SLIDER_MIN_OFFSET);\n\n            applyTranslateX(translateX);\n\n            startX = clientX; \/\/ Restablecer startX a la posici\u00f3n actual\n        }\n\n\n        function onEnd() {\n            isDragging = false;\n            slider.classList.remove('grabbing');\n            slider.style.transition = 'transform 1s ease';\n        }\n\n        slider.addEventListener('mousedown', onStart);\n        slider.addEventListener('touchstart', onStart);\n        window.addEventListener('mousemove', onMove);\n        slider.addEventListener('touchmove', onMove);\n        window.addEventListener('mouseup', onEnd);\n        slider.addEventListener('touchend', onEnd);\n\n        const listItems = slider.querySelectorAll('li');\n        listItems.forEach((item, index) => {\n            item.addEventListener('click', function () {\n                if (index === 0) return;  \/\/ Ignorar el primer elemento\n                const offsetIndex = index - 1;\n                applyTranslateX(offsets[offsetIndex]);\n            });\n        });\n\n        if (localStorage.getItem('scrollPosition')) {\n            const savedOffset = parseInt(localStorage.getItem('scrollPosition'));\n            applyTranslateX(savedOffset);\n        }\n    });\n\n\n<\/script>\n\n\n<div class=\"team-leaders desktop\">\n    <div class=\"row-services\">\n        <img decoding=\"async\" class=\"floating-img-top\"\n            src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_icon_1.svg\" alt=\"\">\n        <h2 class=\"team-leaders-title\">\n            Team Leaders            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/p_arrow-right-svg.svg\"\n                alt=\"arrow logo\">\n        <\/h2>\n        <div class=\"team-leaders-container\">\n\n                                <div class=\"col-md-3 col-sm-12\">\n                        <div class=\"content\">\n                            <div class=\"team-leader-img-container\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/Lucia-Fluck-1.jpg\" alt=\"\"\n                                    class=\"team-leaders-img\">\n                            <\/div>\n                            <h3 class=\"team-leaders-name\">\n                                Lucia Fluck                            <\/h3>\n                            <h4 class=\"team-leaders-job\">\n                                Head of Paid Media                            <\/h4>\n                            <a href=\"https:\/\/www.linkedin.com\/in\/luc%C3%ADa-fluck-71b044120\/\"\n                            \n                            target=\"\"\n                                class=\"team-leaders-in\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                    alt=\"linkedin logo\">\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                                        <div class=\"col-md-3 col-sm-12\">\n                        <div class=\"content\">\n                            <div class=\"team-leader-img-container\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Rocio-Perales-1.jpg\" alt=\"\"\n                                    class=\"team-leaders-img\">\n                            <\/div>\n                            <h3 class=\"team-leaders-name\">\n                                Roc\u00edo Perales                            <\/h3>\n                            <h4 class=\"team-leaders-job\">\n                                Growth Marketing Lead                            <\/h4>\n                            <a href=\"https:\/\/www.linkedin.com\/in\/rocio-perales\/\"\n                            \n                            target=\"\"\n                                class=\"team-leaders-in\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                    alt=\"linkedin logo\">\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                                        <div class=\"col-md-3 col-sm-12\">\n                        <div class=\"content\">\n                            <div class=\"team-leader-img-container\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/Felipe-Mascarenhas.jpg\" alt=\"\"\n                                    class=\"team-leaders-img\">\n                            <\/div>\n                            <h3 class=\"team-leaders-name\">\n                                Felipe Mascarenhas                            <\/h3>\n                            <h4 class=\"team-leaders-job\">\n                                Growth Marketing Lead                            <\/h4>\n                            <a href=\"https:\/\/www.linkedin.com\/in\/felipe-mascarenhas-b571b6165\/\"\n                            \n                            target=\"\"\n                                class=\"team-leaders-in\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                    alt=\"linkedin logo\">\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                            <\/div>\n\n        <img decoding=\"async\" class=\"floating-img-bottom\"\n            src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_icon_2.svg\" alt=\"\">\n\n    <\/div>\n<\/div>\n\n\n<div class=\"team-leaders mobile\">\n    <div class=\"row\">\n        <h2 class=\"team-leaders-title\">\n            Team Leaders            <img decoding=\"async\" class=\"arrow_mobile\"\n                src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_arrow.svg\"\n                alt=\"arrow logo\">\n        <\/h2>\n        <div class=\"team-leaders-container\">\n            <div class=\"expansive_arrows_container\">\n                <div class=\"expansive_arrow\">\n                    <a class=\"prev-tl\">\n                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/white_left_arrow.svg\"\n                            alt=\"arrow\" \/>\n                    <\/a>\n                <\/div>\n                <div class=\"expansive_arrow\">\n                    <a class=\"next-tl\">\n                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/white_right_arrow.svg\"\n                            alt=\"arrow\" \/>\n                    <\/a>\n                <\/div>\n            <\/div>\n            <div class=\"slideshow-container\">\n\n                                        <div class=\"mySlides fade\">\n                            <div class=\"col-md-3 col-sm-12\">\n                                <div class=\"content\">\n                                    <div class=\"team-leader-img-container\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/Lucia-Fluck-1.jpg\" alt=\"\"\n                                            class=\"team-leaders-img\">\n                                    <\/div>\n                                    <h3 class=\"team-leaders-name\">\n                                        Lucia Fluck                                    <\/h3>\n                                    <h4 class=\"team-leaders-job\">\n                                        Head of Paid Media                                    <\/h4>\n                                    <a href=\"https:\/\/www.linkedin.com\/in\/luc%C3%ADa-fluck-71b044120\/\" target=\"\"\n                                        class=\"team-leaders-in\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                            alt=\"linkedin logo\">\n                                    <\/a>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                                                <div class=\"mySlides fade\">\n                            <div class=\"col-md-3 col-sm-12\">\n                                <div class=\"content\">\n                                    <div class=\"team-leader-img-container\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Rocio-Perales-1.jpg\" alt=\"\"\n                                            class=\"team-leaders-img\">\n                                    <\/div>\n                                    <h3 class=\"team-leaders-name\">\n                                        Roc\u00edo Perales                                    <\/h3>\n                                    <h4 class=\"team-leaders-job\">\n                                        Growth Marketing Lead                                    <\/h4>\n                                    <a href=\"https:\/\/www.linkedin.com\/in\/rocio-perales\/\" target=\"\"\n                                        class=\"team-leaders-in\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                            alt=\"linkedin logo\">\n                                    <\/a>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                                                <div class=\"mySlides fade\">\n                            <div class=\"col-md-3 col-sm-12\">\n                                <div class=\"content\">\n                                    <div class=\"team-leader-img-container\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/Felipe-Mascarenhas.jpg\" alt=\"\"\n                                            class=\"team-leaders-img\">\n                                    <\/div>\n                                    <h3 class=\"team-leaders-name\">\n                                        Felipe Mascarenhas                                    <\/h3>\n                                    <h4 class=\"team-leaders-job\">\n                                        Growth Marketing Lead                                    <\/h4>\n                                    <a href=\"https:\/\/www.linkedin.com\/in\/felipe-mascarenhas-b571b6165\/\" target=\"\"\n                                        class=\"team-leaders-in\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                            alt=\"linkedin logo\">\n                                    <\/a>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                                    <\/div>\n        <\/div>\n\n        <img decoding=\"async\" class=\"floating-img-bottom-mobile\"\n            src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_icon_2.svg\" alt=\"\">\n\n    <\/div>\n<\/div>\n\n\n<script>\n    document.addEventListener('DOMContentLoaded', function () {\n        var container = document.querySelector('.team-leaders-container');\n        var cards = container.children.length;\n\n        if (cards === 2) {\n            container.classList.add('space-around');\n        } else if (cards >= 3) {\n            container.classList.add('space-between');\n        } else if (cards === 1) {\n            container.classList.add('space-center');\n        }\n    });\n\n<\/script>\n\n\n<div class=\"services__block\">\n    <div class=\"services__container_sides\">\n        <div class=\"services__top_side\">\n            <div class=\"services__container\">\n                <div class=\"services__title_description\">\n                                            <h2>\n                            Services                        <\/h2>\n                                                                <p>\n                            What can we do for your business?                        <\/p>\n                                    <\/div>\n            <\/div>\n\n            <div class=\"services__bottom_right_side\">\n                                    <div class=\"services__bottom_left_side\">\n                        <div class=\"services__bottom_img\">\n                            <img decoding=\"async\" class=\"services__image\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/serv_exp.svg\"\n                                alt=\"\" \/>\n                        <\/div>\n                    <\/div>\n                \n                <div class=\"container_items\">\n                                                <div class=\"item_container\">\n                                <div class=\"item expanded\">\n                                    <div class=\"container_title_icon expanded\">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Paid Media                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We design segmented and optimized paid campaigns to maximize your return on investment. We ensure that every dollar you invest returns multiplied through advanced PPC strategies.\n\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        SEO                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We enhance your digital presence by generating high-quality organic visits to your website. We use the best SEO practices to ensure your page is visible and recommended by search engines.\n\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        DATA &amp; AI                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We collect and analyze your data to identify the best strategy for business maximization. We transform the information into a clear guide for your expansion, using artificial intelligence and advanced data analysis.\n\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Revenue Operations                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We integrate and optimize sales, marketing, and customer success actions to maximize revenue. We implement personalized strategies to improve your operations and increase profitability.\n\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Web Optimization                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We ensure your page is prepared to convert visits into customers. We ensure your page is prepared to convert visits into customers.\n\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                            <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div class=\"service_methodology_cta_no_home\">\n    <div class=\"service-wit-benefits\">\n        <div class=\"wit-container-benefits\">\n            <div class=\"col-md-6 col-sm-12\">\n                <h2 class=\"wit-title\">\n                    Why work with a Growth Marketing strategy?                <\/h2>\n                <ul>\n                                            <li>\n                            <p>\n                                We develop unique strategies tailored to the specific needs of your business.                            <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                We focus on achieving concrete and measurable results that drive your growth.\n                            <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                We continuously adjust and improve our strategies to maximize your return on investment.                            <\/p>\n                        <\/li>\n                                    <\/ul>\n                <a href=\"https:\/\/www.growketing.com\/contacto\/\" target=\"\"><button>\n                        \u00a1Hablemos!                    <\/button><\/a>\n            <\/div>\n            <div class=\"col-md-6 col-sm-12\">\n                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/ppc_benefit.svg\" alt=\"\">\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div class=\"row-services\">\n    <div class=\"service-stories\">\n        <div class=\"stories-container\">\n                            <h2 class=\"stories-title\">\n                    SUCCESS STORIES                <\/h2>\n                                        <div class=\"col-md-9 align-left col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                            <div class=\"circle-container\">\n                                    <div class=\"circle-background\"><\/div>\n                                    <span class=\"circle-text\">\n                                        Expansive Experiences:                                    <\/span>\n                                <\/div>\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            CardCookie                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                            El re-vendedor online de tarjetas de regalo (Giftcards) con descuento de EE. UU. nos contact\u00f3 para ayudarlos a expandir su negocio y ser menos dependientes de otros vendedores m\u00e1s grandes e importantes.                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/portfolio\/card-cookie\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +3290%                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">de Tr\u00e1fico org\u00e1nico<\/span><\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X10                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">Ingresos<\/span><\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X21.17                                            <\/h3>\n                                            <p>ROAS<\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                            <div class=\"col-md-9 align-right col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            Cetrogar &#8211; Electrofans                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                            It is a company that sells technology, household goods and motorcycles. It was founded in 1980 in Chaco, Argentina.                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/en\/portfolio\/cetrogar-electrofans\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +74.34%                                            <\/h3>\n                                            <p>Income<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +20.47%                                            <\/h3>\n                                            <p>Conversion Rate<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +13.56%                                            <\/h3>\n                                            <p>Transactions<\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                    <\/div>\n        <div class=\"clear-both\"><\/div>\n    <\/div>\n<\/div>\n\n\n\n\n<div class=\"faqs_border\">\n    <div class=\"services__block row-services faqs\">\n        <div class=\"services__container_sides\">\n            <div class=\"services__top_side\">\n                <div class=\"services__container\">\n                    <div class=\"services__title_description\">\n                                                    <h2>\n                                FAQS                            <\/h2>\n                                            <\/div>\n                                                <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                What is Growth Marketing and how is it different from traditional marketing?                                            <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                Growth Marketing is an approach that combines marketing strategies and data analysis to constantly identify and leverage growth opportunities. Unlike traditional marketing, which may focus on short-term campaigns, Growth Marketing seeks to optimize the entire sales funnel, from acquisition to retention, using experimental methods and continuous improvement techniques.\n\n                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                How can Growth Marketing benefit my startup?                                            <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                Growth Marketing can help your business scale quickly by focusing on personalized strategies that drive growth. By using tools like SEO, PPC, data analysis, and funnel optimization, you can increase your visibility, attract more high-quality leads, and improve customer conversion, all while maximizing your return on investment.\n\n                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                What tools and platforms are commonly used in Growth Marketing?                                            <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                In Growth Marketing, various tools and platforms are used to optimize each stage of the sales funnel. Some of the most common ones include web analytics tools like Google Analytics, marketing automation platforms like HubSpot, SEO tools like SEMrush and Ahrefs, and digital advertising platforms like Google Ads and Facebook Ads. These tools help collect data, automate processes, and measure campaign performance to make data-driven adjustments.\n\n                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                What is Programmatic Advertising?                                            <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                It is a type of advertising that allows targeting ads for each user based on their profile and behaviours, making it highly effective. Additionally, it is measurable and quantifiable, meaning you can track the performance of your campaign even while it is running.                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                How to accompany users in their buying journeys?                                             <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                To successfully accompany users in their buying journeys, it is necessary to understand their behaviors and motivations in order to anticipate changes and be prepared for what lies ahead. It is important to be empathetic, agile, and capable of analyzing large amounts of data. It is important to be empathetic, agile, and able to analyze large amounts of data. rn                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                        <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n\n<div class=\"custom-line\"><\/div>\n<div class=\"cta_contact_block\">\n    <div class=\"cta_contact_container\">\n        <div class=\"cta_contact_content\">\n            <div class=\"cta_contact_title\">\n                <p>Ready to Grow?<\/p>\n            <\/div>\n            <div class=\"cta_contact_description\">\n                <p>Tell us about your business and let&#8217;s find the way to maximize it.<\/p>\n            <\/div>\n            <div class=\"cta_contact_img\">\n                                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/05\/cta_home.svg\" alt=\"\" \/>\n                            <\/div>\n        <\/div>\n        <div class=\"container_form\">\n                    <\/div>\n    <\/div>\n<\/div>\n\n<script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.5.1\/jquery.min.js\"><\/script>\n\n<script>\n    $(document).ready(function () {\n        $(\".wpcf7-form-control-wrap input\").each(function () {\n            if ($(this).attr(\"size\") == \"40\") {\n                $(this).attr(\"size\", \"50\");\n            }\n        });\n    });\n\n    document.addEventListener(\"DOMContentLoaded\", function () {\n        var mainElement = document.querySelector('main');\n        var bodyElement = document.querySelector('body');\n\n        if (mainElement && bodyElement) {\n            var classToHideElement = mainElement.querySelector('.custom-line');\n\n            if (classToHideElement) {\n\n                if (!bodyElement.classList.contains('home')) {\n                    classToHideElement.style.display = 'block';\n                } else {\n                    classToHideElement.style.display = 'none';\n                }\n            }\n        }\n    });\n\n<\/script>\n\n<style>\n    .custom-line {\n        box-sizing: border-box;\n        width: 100%;\n        left: 50%;\n        right: 50%;\n        margin-right: -50vw;\n        height: 0;\n        border-top: 1px solid #d3d3d3;\n        margin-bottom: 20px;\n        margin-top: 100px;\n    }\n\n    .cta_contact_container {\n        display: flex;\n        justify-content: space-between;\n    }\n\n    .cta_contact_content {\n        flex: 1;\n    }\n\n    .container_form {\n        flex: 1;\n    }\n<\/style>\n\n<div id=\"message-bar\" class=\"message_block\">\n    <div class=\"message-bar_stars\">\n                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/five_stars.svg\" \/>\n    <\/div>\n            <div class=\"message-bar_message\">\n            <p>We are one of the three agencies in LATAM participating in Google&#8217;s International Growth Agency Program.<\/p>\n        <\/div>\n                <a href=\"https:\/\/www.growketing.com\/contacto\/\" target=\"\" class=\"message-bar_link\">\n            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/GreenArrow.svg\" \/>\n        <\/a>\n    <\/div>\n\n\n<div class=\"logo-repeater\">\n    <div class=\"marquee-wrapper\">\n        <div class=\"marquee-content\">\n                                    <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/VirginMobile-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/cardcookie-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/hipotecarioSeguros-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/VirginMobile-2-1.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/deel-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Loi-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Elgourmet-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/hipotecarioSeguros-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/VirginMobile-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/cardcookie-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/hipotecarioSeguros-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/VirginMobile-2-1.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/deel-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Loi-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Elgourmet-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/hipotecarioSeguros-2.jpg\" alt=\"\">\n                        <\/div>\n                            <\/div>\n    <\/div>\n<\/div>\n\n    <div class=\"footer-expansive\">\n        <div class=\"footer-expansive-title-arrows\">\n            <div class=\"title_arrows_container\">\n                <div class=\"test\">\n                    <div class=\"expansive_title\">\n                        <p>u003ch2u003epalabrasu003c\/h2u003ernu003ch2u003eexpansivasu003c\/h2u003e<\/p>\n                    <\/div>\n\n                   \n\n                    <div class=\"expansive_arrows_container\">\n                        <img decoding=\"async\" class=\"expansive_arrow left\" data-direction=\"-1\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/left_arrow.svg\" alt=\"arrow\" \/>\n\n                        <img decoding=\"async\" class=\"expansive_arrow right\" data-direction=\"1\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/right_arrow.svg\" alt=\"arrow\" \/>\n                    <\/div>\n\n                <\/div>\n            <\/div>\n        <\/div>\n\n\n        <div class=\"footer-expansive-cards-container\">\n            \n                <div id=\"card0\" class=\"footer-expansive-card\">\n                    <div class=\"card_imgs\">\n                                                    <img decoding=\"async\" class=\"background_img\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/background-img-testimonial.svg\" \/>\n                            <img decoding=\"async\" class=\"card_img\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/envoys.jpg\" \/>\n                                                                            <div class=\"logo_card\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/envoys-logo.jpg\" \/>\n                            <\/div>\n                                            <\/div>\n                    <div class=\"card_text\">\n                        <h2>\n                            From the moment we started working with Growketing, the team made it clear that our satisfaction was their highest priority. Their clear communication and positive attitude contribute to a harmonious partnership.                        <\/h2>\n                    <\/div>\n                    <div class=\"name_company_container\">\n                        <p>Angela Gomez<\/p>\n                                                    <p class=\"card_company\">\u2014\n                                Envoys                            <\/p>\n                                            <\/div>\n                <\/div>\n            \n                <div id=\"card3\" class=\"footer-expansive-card\">\n                    <div class=\"card_imgs\">\n                                                    <img decoding=\"async\" class=\"background_img\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/background-img-testimonial.svg\" \/>\n                            <img decoding=\"async\" class=\"card_img\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/virgin.jpg\" \/>\n                                                                            <div class=\"logo_card\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/virgin-logo.jpg\" \/>\n                            <\/div>\n                                            <\/div>\n                    <div class=\"card_text\">\n                        <h2>\n                            A committed agency to its clients. It consistently bases its proposals on the latest industry trends.                         <\/h2>\n                    <\/div>\n                    <div class=\"name_company_container\">\n                        <p>Arturo Garcia<\/p>\n                                                    <p class=\"card_company\">\u2014\n                                Virgin Mobile                            <\/p>\n                                            <\/div>\n                <\/div>\n            \n                <div id=\"card4\" class=\"footer-expansive-card\">\n                    <div class=\"card_imgs\">\n                                                    <img decoding=\"async\" class=\"background_img\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/background-img-testimonial.svg\" \/>\n                            <img decoding=\"async\" class=\"card_img\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/mandao.jpg\" \/>\n                                                                            <div class=\"logo_card\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/mandao-logo.jpg\" \/>\n                            <\/div>\n                                            <\/div>\n                    <div class=\"card_text\">\n                        <h2>\n                            Growketing has a magnificent team that is highly collaborative with our business. They provide solutions and recommendations that are tailored to our needs.\n                        <\/h2>\n                    <\/div>\n                    <div class=\"name_company_container\">\n                        <p>Claudia Cuevas<\/p>\n                                                    <p class=\"card_company\">\u2014\n                                Mandao                            <\/p>\n                                            <\/div>\n                <\/div>\n                    <\/div>\n    <\/div>\n\n<script>\n    jQuery(document).ready(function() {\n\n        var container = jQuery('.footer-expansive-cards-container');\n        var dragging = false;\n        var startX;\n        var threshold = 100; \/\/ Umbral en p\u00edxeles\n\n        function startDrag(e) {\n            dragging = true;\n            startX = e.type === 'touchstart' ? e.originalEvent.touches[0].clientX : e.clientX;\n            container.addClass('grabbing');\n        }\n\n        function moveDrag(e) {\n            if (dragging) {\n                var clientX = e.type === 'touchmove' ? e.originalEvent.touches[0].clientX : e.clientX;\n                var diff = clientX - startX;\n                if (Math.abs(diff) > threshold) {\n                    var direction = diff < 0 ? 1 : -1;\n                    var displayCount = getDisplayCount();\n                    currentCard = (currentCard + direction * displayCount + cardCount) % cardCount;\n                    showCards(currentCard);\n                    dragging = false; \/\/ Finaliza el arrastre\n                }\n            }\n        }\n\n        function endDrag() {\n            dragging = false;\n            container.removeClass('grabbing');\n        }\n\n        \/\/ Eventos para el mouse\n        container.on('mousedown', startDrag);\n        jQuery(document).on('mousemove', moveDrag);\n        jQuery(document).on('mouseup', endDrag);\n\n        \/\/ Eventos para el tacto\n        container.on('touchstart', startDrag);\n        jQuery(document).on('touchmove', moveDrag);\n        jQuery(document).on('touchend', endDrag);\n    });\n\n\n\n    var cards = jQuery('.footer-expansive-card');\n    var cardCount = cards.length;\n    var currentCard = 0;\n\n    cards.sort(function(a, b) {\n        return parseInt(jQuery(a).attr('id').substring(4)) - parseInt(jQuery(b).attr('id').substring(4));\n    });\n\n    function getDisplayCount() {\n        var width = jQuery(window).width();\n        return width <= 768 ? 1 : 4;\n    }\n\n    function showCards(startIndex) {\n        var displayCount = getDisplayCount();\n        cards.hide();\n        cards.slice(startIndex, startIndex + displayCount).each(function(index, card) {\n            jQuery(card).css('margin-bottom', '');\n            if (index % 2 != 0) {\n                jQuery(card).css('margin-bottom', '80px');\n            }\n        }).show();\n    }\n\n    showCards(currentCard);\n\n    jQuery('.expansive_arrows_container').on('click', '.expansive_arrow', function() {\n        var direction = parseInt(jQuery(this).data('direction'), 10);\n        var displayCount = getDisplayCount();\n\n        currentCard = (currentCard + direction * displayCount + cardCount) % cardCount;\n        showCards(currentCard);\n    });\n\n    jQuery(window).resize(function() {\n        showCards(currentCard);\n    });\n<\/script>","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":21501,"parent":17337,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-service.php","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"class_list":["post-23197","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PPC - Digital Marketing Services | Growketing<\/title>\n<meta name=\"description\" content=\"Maximize your results with our digital marketing services. Increase your conversions and achieve your business goals. Discover how today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PPC - Digital Marketing Services | Growketing\" \/>\n<meta property=\"og:description\" content=\"Maximize your results with our digital marketing services. Increase your conversions and achieve your business goals. Discover how today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/\" \/>\n<meta property=\"og:site_name\" content=\"Growketing\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-26T18:41:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/\",\"url\":\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/\",\"name\":\"PPC - Digital Marketing Services | Growketing\",\"isPartOf\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg\",\"datePublished\":\"2024-07-08T20:26:00+00:00\",\"dateModified\":\"2024-08-26T18:41:34+00:00\",\"description\":\"Maximize your results with our digital marketing services. Increase your conversions and achieve your business goals. Discover how today!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#primaryimage\",\"url\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg\",\"contentUrl\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg\",\"width\":2560,\"height\":1440},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Services\",\"item\":\"https:\/\/new.growketing.com\/en\/services\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Growth Marketing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.growketing.com\/en\/#website\",\"url\":\"https:\/\/www.growketing.com\/en\/\",\"name\":\"Growketing\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.growketing.com\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.growketing.com\/en\/#organization\",\"name\":\"Growketing\",\"url\":\"https:\/\/www.growketing.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"\/wp-content\/uploads\/2023\/06\/green_logo.svg\",\"contentUrl\":\"\/wp-content\/uploads\/2023\/06\/green_logo.svg\",\"width\":1,\"height\":1,\"caption\":\"Growketing\"},\"image\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/growketing\/\",\"https:\/\/www.instagram.com\/growketing\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PPC - Digital Marketing Services | Growketing","description":"Maximize your results with our digital marketing services. Increase your conversions and achieve your business goals. Discover how today!","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:\/\/www.growketing.com\/en\/services\/growth-marketing\/","og_locale":"en_US","og_type":"article","og_title":"PPC - Digital Marketing Services | Growketing","og_description":"Maximize your results with our digital marketing services. Increase your conversions and achieve your business goals. Discover how today!","og_url":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/","og_site_name":"Growketing","article_modified_time":"2024-08-26T18:41:34+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/","url":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/","name":"PPC - Digital Marketing Services | Growketing","isPartOf":{"@id":"https:\/\/www.growketing.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#primaryimage"},"image":{"@id":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#primaryimage"},"thumbnailUrl":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg","datePublished":"2024-07-08T20:26:00+00:00","dateModified":"2024-08-26T18:41:34+00:00","description":"Maximize your results with our digital marketing services. Increase your conversions and achieve your business goals. Discover how today!","breadcrumb":{"@id":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.growketing.com\/en\/services\/growth-marketing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#primaryimage","url":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg","contentUrl":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/PPC-scaled.jpg","width":2560,"height":1440},{"@type":"BreadcrumbList","@id":"https:\/\/www.growketing.com\/en\/services\/growth-marketing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Services","item":"https:\/\/new.growketing.com\/en\/services\/"},{"@type":"ListItem","position":2,"name":"Growth Marketing"}]},{"@type":"WebSite","@id":"https:\/\/www.growketing.com\/en\/#website","url":"https:\/\/www.growketing.com\/en\/","name":"Growketing","description":"","publisher":{"@id":"https:\/\/www.growketing.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.growketing.com\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.growketing.com\/en\/#organization","name":"Growketing","url":"https:\/\/www.growketing.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2023\/06\/green_logo.svg","contentUrl":"\/wp-content\/uploads\/2023\/06\/green_logo.svg","width":1,"height":1,"caption":"Growketing"},"image":{"@id":"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/growketing\/","https:\/\/www.instagram.com\/growketing\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/23197","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/comments?post=23197"}],"version-history":[{"count":5,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/23197\/revisions"}],"predecessor-version":[{"id":23670,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/23197\/revisions\/23670"}],"up":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17337"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/media\/21501"}],"wp:attachment":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/media?parent=23197"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}