{"id":4455,"date":"2026-01-13T16:59:17","date_gmt":"2026-01-13T15:59:17","guid":{"rendered":"https:\/\/innovacore.group\/?page_id=4455"},"modified":"2026-03-17T09:29:45","modified_gmt":"2026-03-17T08:29:45","slug":"torne-se-um-membro-central","status":"publish","type":"page","link":"https:\/\/innovacore.group\/pt-pt\/torne-se-um-membro-central\/","title":{"rendered":"Torne-se um membro central"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4455\" class=\"elementor elementor-4455 elementor-2946\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ba1ff3f e-con-full hero-trigger e-flex e-con e-parent\" data-id=\"ba1ff3f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-233ac3b e-con-full animated-background e-flex e-con e-child\" data-id=\"233ac3b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-3c1bcde e-con-full e-flex e-con e-child\" data-id=\"3c1bcde\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c4480c elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-html\" data-id=\"3c4480c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"innovacore-magnet\">\r\n    <canvas id=\"magnetCanvas\"><\/canvas>\r\n<\/div>\r\n\r\n<style>\r\n    #innovacore-magnet { \r\n        width: 100%; \r\n        height: 400px; \r\n        display: flex; \r\n        justify-content: center;\r\n        align-items: center;\r\n        background: transparent; \r\n        overflow: hidden;\r\n        position: relative;\r\n        z-index: 10; \/* Z-index \u00e9lev\u00e9 pour garantir la capture de la souris *\/\r\n        cursor: crosshair; \r\n        \/* Important : permet les \u00e9v\u00e9nements de souris m\u00eame si transparent *\/\r\n        pointer-events: auto; \r\n    }\r\n<\/style>\r\n\r\n<script>\r\n(function() {\r\n    const canvas = document.getElementById('magnetCanvas');\r\n    const ctx = canvas.getContext('2d');\r\n    const root = document.getElementById('innovacore-magnet');\r\n    \r\n    let w, h;\r\n    let particles = [];\r\n\r\n    \/\/ Souris (initialis\u00e9e hors champ)\r\n    let mouse = { x: -9999, y: -9999 };\r\n\r\n    \/\/ Configuration\r\n    const particleColor = 'rgba(245, 245, 245, 1)'; \r\n    const particleCount = 150; \/\/ Nombre de particules pour un pilier dense\r\n    const magneticForce = 0.05; \/\/ Force d'attraction vers le centre\r\n    const mouseRepulsion = 2.5; \/\/ Force de dispersion (tr\u00e8s forte)\r\n    const mouseRadius = 150; \/\/ Rayon d'effet de la souris\r\n    const friction = 0.94; \/\/ Ralentissement pour \u00e9viter l'effet \"ressort\" infini\r\n\r\n    function init() {\r\n        w = root.offsetWidth;\r\n        h = 400;\r\n        \r\n        const dpr = window.devicePixelRatio || 1;\r\n        canvas.width = w * dpr;\r\n        canvas.height = h * dpr;\r\n        canvas.style.width = w + 'px';\r\n        canvas.style.height = h + 'px';\r\n        ctx.scale(dpr, dpr);\r\n        \r\n        createParticles();\r\n    }\r\n\r\n    function createParticles() {\r\n        particles = [];\r\n        for (let i = 0; i < particleCount; i++) {\r\n            resetParticle({});\r\n        }\r\n    }\r\n\r\n    function resetParticle(p) {\r\n        \/\/ Appara\u00eet al\u00e9atoirement \u00e0 gauche OU \u00e0 droite de l'\u00e9cran\r\n        const side = Math.random() > 0.5 ? 0 : w;\r\n        \r\n        p.x = side + (Math.random() - 0.5) * 50; \/\/ Un peu en dehors ou au bord\r\n        p.y = Math.random() * h;\r\n        \r\n        \/\/ Vitesse initiale vers le centre\r\n        p.vx = (Math.random() - 0.5) * 2;\r\n        p.vy = (Math.random() - 0.5) * 2;\r\n        \r\n        p.size = Math.random() * 2 + 1; \/\/ Taille variable\r\n        p.life = 1; \/\/ Vie pour g\u00e9rer l'opacit\u00e9 ou le respawn si besoin\r\n        \r\n        \/\/ Vitesse verticale constante une fois au centre (pour l'effet de flux ascendant)\r\n        p.flowSpeed = -0.5 - Math.random(); \r\n        \r\n        \/\/ Est-ce une particule existante qu'on recycle ?\r\n        if (p.push) particles.push(p);\r\n        return p;\r\n    }\r\n\r\n    function draw() {\r\n        ctx.clearRect(0, 0, w, h);\r\n\r\n        const centerX = w \/ 2;\r\n\r\n        \/\/ Lueur centrale pour le pilier (Background)\r\n        ctx.globalCompositeOperation = 'screen'; \/\/ Mode fusion pour la lumi\u00e8re\r\n        const gradient = ctx.createLinearGradient(centerX - 20, 0, centerX + 20, 0);\r\n        gradient.addColorStop(0, 'rgba(245, 245, 245, 0)');\r\n        gradient.addColorStop(0.5, 'rgba(245, 245, 245, 0.05)'); \/\/ Lueur tr\u00e8s subtile\r\n        gradient.addColorStop(1, 'rgba(245, 245, 245, 0)');\r\n        ctx.fillStyle = gradient;\r\n        ctx.fillRect(centerX - 50, 0, 100, h);\r\n        ctx.globalCompositeOperation = 'source-over'; \/\/ Retour normal\r\n\r\n        particles.forEach(p => {\r\n            \/\/ 1. ATTRACTION MAGN\u00c9TIQUE (Le Pilier)\r\n            \/\/ Calcul de la distance au centre X\r\n            const dxCenter = centerX - p.x;\r\n\r\n            \/\/ Force horizontale : Attire vers le centre\r\n            \/\/ Plus on est loin, plus on est attir\u00e9. Plus on est pr\u00e8s, plus \u00e7a se calme.\r\n            p.vx += dxCenter * 0.001 * (p.size * 0.5); \r\n\r\n            \/\/ Force verticale : Tendance \u00e0 monter (flux d'\u00e9nergie)\r\n            p.vy += -0.02; \r\n\r\n            \/\/ 2. DISPERSION (Souris)\r\n            const dxMouse = p.x - mouse.x;\r\n            const dyMouse = p.y - mouse.y;\r\n            const distMouse = Math.sqrt(dxMouse * dxMouse + dyMouse * dyMouse);\r\n\r\n            if (distMouse < mouseRadius) {\r\n                \/\/ Calcul de la force de r\u00e9pulsion (inversement proportionnelle \u00e0 la distance)\r\n                const force = (mouseRadius - distMouse) \/ mouseRadius;\r\n\r\n                \/\/ On explose la v\u00e9locit\u00e9\r\n                p.vx += (dxMouse \/ distMouse) * force * mouseRepulsion;\r\n                p.vy += (dyMouse \/ distMouse) * force * mouseRepulsion;\r\n            }\r\n\r\n            \/\/ 3. PHYSIQUE\r\n            p.vx *= friction; \/\/ Friction pour que les particules ne partent pas \u00e0 l'infini\r\n            p.vy *= friction;\r\n\r\n            p.x += p.vx;\r\n            p.y += p.vy;\r\n\r\n            \/\/ Si la particule est pi\u00e9g\u00e9e au centre (dans le pilier), on limite sa vitesse X\r\n            \/\/ pour qu'elle ne \"vibre\" pas trop, mais on la laisse monter\r\n            if (Math.abs(p.x - centerX) < 20 && distMouse > mouseRadius) {\r\n                p.vx *= 0.8; \/\/ Friction X plus forte au centre\r\n                p.y += p.flowSpeed; \/\/ Monte plus vite\r\n            }\r\n\r\n            \/\/ 4. RESPAWN (Cycle de vie)\r\n            \/\/ Si la particule sort en haut, en bas, ou trop sur les c\u00f4t\u00e9s (apr\u00e8s dispersion)\r\n            if (p.y < -50 || p.y > h + 50 || p.x < -100 || p.x > w + 100) {\r\n                resetParticle(p);\r\n            }\r\n\r\n            \/\/ 5. DESSIN\r\n            \/\/ Opacit\u00e9 : plus c'est proche du centre, plus c'est solide\r\n            const distToCenter = Math.abs(p.x - centerX);\r\n            const alpha = Math.max(0.2, 1 - (distToCenter \/ (w\/2)));\r\n\r\n            ctx.fillStyle = particleColor;\r\n            ctx.globalAlpha = alpha;\r\n            ctx.beginPath();\r\n            ctx.arc(p.x, p.y, p.size, 0, Math.PI * 2);\r\n            ctx.fill();\r\n        });\r\n\r\n        ctx.globalAlpha = 1;\r\n        requestAnimationFrame(draw);\r\n    }\r\n\r\n    const updateMouse = (e) => {\r\n        const r = canvas.getBoundingClientRect();\r\n        mouse.x = e.clientX - r.left;\r\n        mouse.y = e.clientY - r.top;\r\n    };\r\n\r\n    window.addEventListener('resize', init);\r\n    \r\n    \/\/ \u00c9v\u00e9nements souris\r\n    canvas.addEventListener('mousemove', updateMouse);\r\n    \/\/ Important : quand la souris part, on met ses coordonn\u00e9es tr\u00e8s loin\r\n    \/\/ pour arr\u00eater la dispersion imm\u00e9diatement\r\n    canvas.addEventListener('mouseleave', () => { \r\n        mouse.x = -9999; \r\n        mouse.y = -9999; \r\n    });\r\n\r\n    init();\r\n    \r\n    \/\/ Initialisation des particules\r\n    for (let i = 0; i < particleCount; i++) {\r\n        particles.push(resetParticle({}));\r\n    }\r\n    \r\n    draw();\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18ba1ca elementor-widget elementor-widget-heading\" data-id=\"18ba1ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Torne-se um <span class=\"ic-nycd\">membro central<\/span>.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f9f5e9 elementor-widget elementor-widget-text-editor\" data-id=\"2f9f5e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Pare de asesorar, comece a construir. Desdobre a metodologia CORE dentro das empresas e alinhe o seu sucesso financeiro com os resultados que entrega.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b24f958 e-con-full e-flex e-con e-child\" data-id=\"b24f958\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d879c3 elementor-widget elementor-widget-button\" data-id=\"5d879c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#concept\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">SABER MAIS<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0153046 elementor-widget elementor-widget-button\" data-id=\"0153046\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#cta\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">CONSTRUIR CONOSCO<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02eca23 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"02eca23\" data-element_type=\"container\" data-e-type=\"container\" id=\"concept\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6dbab67 e-con-full e-flex e-con e-child\" data-id=\"6dbab67\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0401e53 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0401e53\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">O CONCEITO<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9de8b4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"f9de8b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\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<div class=\"elementor-element elementor-element-5bd7df4 e-con-full e-flex e-con e-child\" data-id=\"5bd7df4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-413f6fc e-con-full e-flex e-con e-child\" data-id=\"413f6fc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-194a169 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"194a169\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"433\" height=\"433\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized.jpg\" class=\"attachment-large size-large wp-image-890\" alt=\"\" srcset=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized.jpg 433w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized-300x300.jpg 300w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized-150x150.jpg 150w\" sizes=\"(max-width: 433px) 100vw, 433px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-21d0889 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"21d0889\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Junte-se ao CORE. Uma coletividade de operadores de elite guiados por uma \u00fanica ambi\u00e7\u00e3o: penetrar, estabilizar e Escalar as empresas mais promissoras tratando-as como nossas.<\/p><p data-path-to-node=\"8\">O modelo de ag\u00eancia est\u00e1 quebrado. Estamos a construir uma <b data-path-to-node=\"8\" data-index-in-node=\"57\">alternativa disruptiva<\/b>. Como Membro CORE, n\u00e3o \u00e9 freelancer nem uma ag\u00eancia de modelo antigo enviando uma factura. \u00c9 um <b data-path-to-node=\"8\" data-index-in-node=\"154\">Parceiro Estrat\u00e9gico e Mentor<\/b>. Entra num projeto para partilhar o teu conhecimento e ativos sem restri\u00e7\u00f5es.<\/p><p data-path-to-node=\"9\">A tua miss\u00e3o \u00e9 simples, mas exigente: acompanhar as empresas para assegurar fundos, pivotar ou escalar internacionalmente. Trabalhamos como um c\u00e9rebro unificado a complementar-se para fazer a empresa ter sucesso. N\u00e3o cobramos por esfor\u00e7o; somos remunerados por resultados, participa\u00e7\u00e3o acionista e o valor de longo prazo que criamos juntos.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d06fb77 e-con-full e-flex e-con e-child\" data-id=\"d06fb77\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c1bd029 e-con-full e-flex e-con e-child\" data-id=\"c1bd029\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a8fcd2 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5a8fcd2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">N\u00e3o cobramos por horas,<br>\nConstru\u00edmos <span class=\"ic-nycd\">ativos<\/span>.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bfb6544 e-con-full e-flex e-con e-child\" data-id=\"bfb6544\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4057e64 e-con-full e-flex e-con e-child\" data-id=\"4057e64\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cbd2ec6 e-con-full e-flex e-con e-child\" data-id=\"cbd2ec6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8c95abf e-con-full e-flex e-con e-child\" data-id=\"8c95abf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dfbe1fc elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"dfbe1fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_document-add-outline.svg\" class=\"attachment-large size-large wp-image-1166\" alt=\"\" \/>\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<div class=\"elementor-element elementor-element-2052546 e-con-full e-flex e-con e-child\" data-id=\"2052546\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0e0ee16 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0e0ee16\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Generosidade Radical<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7db6c6e e-con-full e-flex e-con e-child\" data-id=\"7db6c6e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b7a07f animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"6b7a07f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">N\u00e3o escondemos conhecimento. Abrimos os nossos playbooks e ativos totalmente para as empresas que apoiamos. O sucesso delas \u00e9 literalmente o nosso sucesso.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-811232e e-con-full e-flex e-con e-child\" data-id=\"811232e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e340447 e-con-full e-flex e-con e-child\" data-id=\"e340447\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a9220f6 e-con-full e-flex e-con e-child\" data-id=\"a9220f6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-bdc167e e-con-full e-flex e-con e-child\" data-id=\"bdc167e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83693f2 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"83693f2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_tuning-square-2-outline-about-us-2.svg\" class=\"attachment-large size-large wp-image-2294\" alt=\"\" \/>\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<div class=\"elementor-element elementor-element-0233f37 e-con-full e-flex e-con e-child\" data-id=\"0233f37\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f1e9e1 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8f1e9e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Fatura zero, 100% Alinhamento<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20ec175 e-con-full e-flex e-con e-child\" data-id=\"20ec175\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c4628e animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5c4628e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Disruptamos o mercado removendo a barreira das taxas. Investimos o nosso tempo para capturar participa\u00e7\u00e3o acionista e fluxos de receita recorrentes mais tarde.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a78e32b e-con-full e-flex e-con e-child\" data-id=\"a78e32b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6ea80c3 e-con-full e-flex e-con e-child\" data-id=\"6ea80c3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d870e26 e-con-full e-flex e-con e-child\" data-id=\"d870e26\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2b92617 e-con-full e-flex e-con e-child\" data-id=\"2b92617\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-93ba148 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"93ba148\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_settings-minimalistic-outline-about-us-3.svg\" class=\"attachment-large size-large wp-image-2305\" alt=\"\" \/>\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<div class=\"elementor-element elementor-element-02ad853 e-con-full e-flex e-con e-child\" data-id=\"02ad853\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8edec9b animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8edec9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Mentor &amp; Operador<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-65a93c4 e-con-full e-flex e-con e-child\" data-id=\"65a93c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bf3d7c8 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"bf3d7c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Atua como estratega ao lado de outros especialistas. Guias o fundador, removes gargalos e executas com a precis\u00e3o de um propriet\u00e1rio.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4bb11c2 e-flex e-con-boxed e-con e-parent\" data-id=\"4bb11c2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-212099e e-con-full e-flex e-con e-child\" data-id=\"212099e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c8fcb2 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7c8fcb2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A COMUNIDADE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2fcac5a elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"2fcac5a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\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<div class=\"elementor-element elementor-element-e23fce2 e-con-full e-flex e-con e-child\" data-id=\"e23fce2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c331d3d animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c331d3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Um ecossistema onde a tua expertise <span class=\"ic-nycd\">escala<\/span> .<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0216c7b elementor-widget elementor-widget-text-editor\" data-id=\"0216c7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>J\u00e1 n\u00e3o \u00e9s um <strong>consultor solit\u00e1rio<\/strong> ou uma <strong>ag\u00eancia de modelo antigo<\/strong>. \u00c9s parte de uma m\u00e1quina industrial desenhada para penetrar mercados.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b73a9d0 e-con-full e-flex e-con e-child\" data-id=\"b73a9d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-85a00f9 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"85a00f9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-aeaf5c4 e-con-full e-flex e-con e-child\" data-id=\"aeaf5c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4768954 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"4768954\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-founders.svg\" class=\"attachment-large size-large wp-image-2243\" alt=\"\" \/>\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<div class=\"elementor-element elementor-element-6ac3479 e-con-full e-flex e-con e-child\" data-id=\"6ac3479\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15b70ae elementor-widget elementor-widget-heading\" data-id=\"15b70ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Mentalidade de Propriet\u00e1rio<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a8103c0 elementor-widget elementor-widget-text-editor\" data-id=\"a8103c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>N\u00e3o aceitamos &#8220;briefings de clientes&#8221;. Entramos na sala de reuni\u00f5es. Tomamos decis\u00f5es como se fosse o nosso dinheiro na mesa.<\/p><p><strong>O Objetivo<\/strong>: Levar a empresa de potencial a um ativo &#8220;atribu\u00edvel&#8221;.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-33b8463 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"33b8463\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-00174c6 e-con-full e-flex e-con e-child\" data-id=\"00174c6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e67097c animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"e67097c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-operators.svg\" class=\"attachment-large size-large wp-image-2265\" alt=\"\" \/>\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<div class=\"elementor-element elementor-element-32b224f e-con-full e-flex e-con e-child\" data-id=\"32b224f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-362a2cd elementor-widget elementor-widget-heading\" data-id=\"362a2cd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">For\u00e7a Complementar<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42239e7 elementor-widget elementor-widget-text-editor\" data-id=\"42239e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Ningu\u00e9m vence sozinho. Apresentas o teu ativo espec\u00edfico (Vendas, Tecnologia, M&amp;A) e integramo-nos no trabalho de outros membros CORE.<\/p><p><strong>O Objetivo<\/strong>: Uma interven\u00e7\u00e3o hol\u00edstica onde cada \u00e2ngulo do neg\u00f3cio \u00e9 coberto por um especialista.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3669a8b e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"3669a8b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-017a661 e-con-full e-flex e-con e-child\" data-id=\"017a661\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c67fd80 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"c67fd80\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-investors.svg\" class=\"attachment-large size-large wp-image-2254\" alt=\"\" \/>\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<div class=\"elementor-element elementor-element-0f9bec8 e-con-full e-flex e-con e-child\" data-id=\"0f9bec8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d5003f elementor-widget elementor-widget-heading\" data-id=\"6d5003f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Portf\u00f3lio Diversificado<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d58c070 elementor-widget elementor-widget-text-editor\" data-id=\"d58c070\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Em vez de um sal\u00e1rio, constr\u00f3is um portf\u00f3lio. Ganhas atrav\u00e9s de Taxas de Sucesso, participa\u00e7\u00e3o acionista, honor\u00e1rios de gest\u00e3o de longo prazo e equipas de opera\u00e7\u00e3o.<\/p><p><strong>O Objetivo<\/strong>: Ser acionista no ecossistema de empresas que ajudamos a crescer.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4372856 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"4372856\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c3e331 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"5c3e331\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#cta\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">FALAMOS SOBRE O TEU PROJETO<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e2dc2d0 e-con-full e-flex e-con e-child\" data-id=\"e2dc2d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4017fb1 e-con-full e-flex e-con e-child\" data-id=\"4017fb1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a1641a7 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"a1641a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"619\" height=\"283\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized.jpg\" class=\"attachment-large size-large wp-image-1212\" alt=\"\" srcset=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized.jpg 619w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized-300x137.jpg 300w\" sizes=\"(max-width: 619px) 100vw, 619px\" \/>\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<div class=\"elementor-element elementor-element-9be19a8 e-con-full e-flex e-con e-child\" data-id=\"9be19a8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5899b1 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"a5899b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Ao aderires \u00e0 Innovacore, deixas de trocar tempo por dinheiro. Come\u00e7as a <span class=\"ic-nycd\">acumular valor<\/span>.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6d27d1b e-flex e-con-boxed e-con e-parent\" data-id=\"6d27d1b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d16af87 e-con-full e-flex e-con e-child\" data-id=\"d16af87\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8692d23 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8692d23\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">PROCESSO<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-77bfe67 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"77bfe67\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\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<div class=\"elementor-element elementor-element-248a2c5 e-con-full e-flex e-con e-child\" data-id=\"248a2c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4e3f512 e-con-full e-flex e-con e-child\" data-id=\"4e3f512\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e7614b4 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"e7614b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A tua jornada como <span class=\"ic-nycd\">operador central<\/span> .<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54178d6 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"54178d6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:100,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e127eac elementor-widget elementor-widget-text-editor\" data-id=\"e127eac\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Do onboarding de um projeto \u00e0 partilha do ganho. Eis como mobilizamos a nossa for\u00e7a coletiva.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b7565c2 e-con-full e-flex e-con e-child\" data-id=\"b7565c2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-44c587d e-con-full e-flex e-con e-child\" data-id=\"44c587d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9af5f28 e-con-full e-flex e-con e-child\" data-id=\"9af5f28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74bd5c3 circle elementor-widget elementor-widget-heading\" data-id=\"74bd5c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">01<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2269917 elementor-widget elementor-widget-heading\" data-id=\"2269917\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Imers\u00e3o de Integra\u00e7\u00e3o &amp; Inje\u00e7\u00e3o de Ativos<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-393922f elementor-widget elementor-widget-text-editor\" data-id=\"393922f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Entras numa equipa. Abres a tua caixa de ferramentas. Analisamos a empresa-alvo e injetamos os nossos &#8220;Ativos&#8221; (modelos, estrat\u00e9gias, redes) imediatamente para parar o sangramento ou disparar o crescimento.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3e05b14 e-con-full e-flex e-con e-child\" data-id=\"3e05b14\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-68429c3 elementor-widget elementor-widget-html\" data-id=\"68429c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\\\"arrow-widget-container\\\">\\r\\n    <div class=\\\"standalone-arrow\\\"><\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4cd115b e-con-full e-flex e-con e-child\" data-id=\"4cd115b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c09813b circle elementor-widget elementor-widget-heading\" data-id=\"c09813b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">02<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3094bb8 elementor-widget elementor-widget-heading\" data-id=\"3094bb8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Estrat\u00e9gia &amp; Dire\u00e7\u00e3o de Mentoria<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-575e1ff elementor-widget elementor-widget-text-editor\" data-id=\"575e1ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Assumes a lideran\u00e7a no teu vertical. Mentorias a equipa interna ou o fundador. Estruturas o roadmap de Recolha de Fundos, Reestrutura\u00e7\u00e3o ou Escala. \u00c9s o arquiteto.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e96cbc9 e-con-full e-flex e-con e-child\" data-id=\"e96cbc9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9a7eb42 elementor-widget elementor-widget-html\" data-id=\"9a7eb42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\\\"arrow-widget-container\\\">\\r\\n    <div class=\\\"standalone-arrow\\\"><\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c8aef94 e-con-full e-flex e-con e-child\" data-id=\"c8aef94\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e469076 circle elementor-widget elementor-widget-heading\" data-id=\"e469076\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">03<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de43646 elementor-widget elementor-widget-heading\" data-id=\"de43646\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Execu\u00e7\u00e3o A Fase de \"Skin in the Game\"<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38a6af7 elementor-widget elementor-widget-text-editor\" data-id=\"38a6af7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>N\u00e3o apenas aconselhamos; atuamos. Executamos o roteiro juntos para alcan\u00e7ar o &#8220;Unlock&#8221; (Financiamento, Rentabilidade). \u00c9 aqui que o teu impacto \u00e9 medido.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b204675 e-con-full e-flex e-con e-child\" data-id=\"b204675\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d837354 elementor-widget elementor-widget-html\" data-id=\"d837354\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\\\"arrow-widget-container\\\">\\r\\n    <div class=\\\"standalone-arrow\\\"><\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-92c71ee e-con-full e-flex e-con e-child\" data-id=\"92c71ee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22ef9ea circle elementor-widget elementor-widget-heading\" data-id=\"22ef9ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">04<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4dd26f9 elementor-widget elementor-widget-heading\" data-id=\"4dd26f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Aproveitamento de Valor &amp; Remunera\u00e7\u00e3o<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6a3b767 elementor-widget elementor-widget-text-editor\" data-id=\"6a3b767\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Uma vez atingido o marco, o modelo muda. Ativamos contratos recorrentes e validamos as nossas posi\u00e7\u00f5es de equity. Recebes pagamento pelo desempenho que projetaste.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-04f8709 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"04f8709\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d650426 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"d650426\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#cta\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">FALAMOS SOBRE O TEU PROJETO<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8c26c67 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"8c26c67\" data-element_type=\"container\" data-e-type=\"container\" id=\"cta\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d74e966 e-con-full e-flex e-con e-child\" data-id=\"d74e966\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b7c8c30 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"b7c8c30\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">A\u00c7\u00c3O<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-222c1a7 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"222c1a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\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<div class=\"elementor-element elementor-element-f320f2e e-con-full e-flex e-con e-child\" data-id=\"f320f2e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ea41033 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"ea41033\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c4700c elementor-widget elementor-widget-heading\" data-id=\"6c4700c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Est\u00e1s preparado para deixar de <span class=\"ic-nycd\">faturar<\/span> e come\u00e7ar a <span class=\"ic-nycd\">construir<\/span> ?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-46283c6 elementor-widget elementor-widget-text-editor\" data-id=\"46283c6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Procuramos peritos experientes, Diretores de Vendas, CFOs, CTOs, COOs, CMOs, Growth Hackers que queiram construir ativos relevantes.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b33bad elementor-widget elementor-widget-heading\" data-id=\"6b33bad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Concordas em partilhar<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e355618 elementor-widget elementor-widget-html\" data-id=\"e355618\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"give-item-wrapper\">\r\n    <div class=\"give-icon\">\r\n        <div class=\"give-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"give-text\">\r\n        Os teus ativos operacionais (playbooks, modelos, rede) sem restri\u00e7\u00f5es\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"give-item-wrapper\">\r\n    <div class=\"give-icon\">\r\n        <div class=\"give-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"give-text\">\r\n        Investimento de tempo com uma mentalidade de \"skin in the game\" (sem taxas imediatas)\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"give-item-wrapper\">\r\n    <div class=\"give-icon\">\r\n        <div class=\"give-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"give-text\">\r\n        Honestidade radical e capacidades de mentoria ativa\r\n    <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43734f7 elementor-widget elementor-widget-heading\" data-id=\"43734f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Receber\u00e1s<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1239bca elementor-widget elementor-widget-html\" data-id=\"1239bca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Fluxo exclusivo de oportunidades de alto potencial & reestrutura\u00e7\u00f5es\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Participa\u00e7\u00e3o acionista e remunera\u00e7\u00e3o baseada em sucesso\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Acesso a um grupo de pares de topo de operadores de N\u00edvel C\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        Receita recorrente de longo prazo a partir de contratos de execu\u00e7\u00e3o\r\n    <\/div>\r\n<\/div>\r\n\r\n<div class=\"get-item-wrapper\">\r\n    <div class=\"get-icon\">\r\n        <div class=\"get-css-check\"><\/div>\r\n    <\/div>\r\n    <div class=\"get-text\">\r\n        A liberdade para atuar como parceiro estrat\u00e9gico, n\u00e3o como fornecedor\r\n    <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c248a2 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"9c248a2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:1,&quot;background_background&quot;:&quot;classic&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-976531f elementor-widget elementor-widget-jet-form-builder-form\" data-id=\"976531f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"jet-form-builder-form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<link rel='stylesheet' id='wp-block-library-css' href='https:\/\/innovacore.group\/wp-includes\/css\/dist\/block-library\/common.min.css?ver=7.0' media='all' \/>\n<style id=\"jet-form-builder-2598-inline-css\"><\/style><form  class=\"jet-form-builder layout-column submit-type-reload\" action=\"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/pages\/4455\/?87rU8v=j8B14n44Q0sm&amp;method=reload\" method=\"POST\" data-form-id=\"2598\" data-layout=\"column\" enctype=\"multipart\/form-data\" novalidate=\"null\" ssr_validation_method=\"rest\"><input type=\"hidden\" id=\"_wpnonce\" name=\"_wpnonce\" value=\"4fcda4db8b\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/pt-pt\/wp-json\/wp\/v2\/pages\/4455\" \/>\r\n<input type=\"hidden\" name=\"_jfb_current_render_states[]\" value=\"DEFAULT.STATE\" data-jfb-sync \/><input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"_jet_engine_booking_form_id\" data-field-name=\"_jet_engine_booking_form_id\" value=\"2598\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"_jet_engine_refer\" data-field-name=\"_jet_engine_refer\" value=\"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/pages\/4455\/\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"__queried_post_id\" data-field-name=\"__queried_post_id\" value=\"4455\">\n<div class=\"jet-form-builder-page \" data-page=\"1\" data-page-offset=\"75\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"postID\" data-field-name=\"postID\" data-jfb-sync=\"null\" value=\"4455\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_source\" data-field-name=\"utm_source\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_medium\" data-field-name=\"utm_medium\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_campaign\" data-field-name=\"utm_campaign\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_content\" data-field-name=\"utm_content\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_id\" data-field-name=\"utm_id\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"fbclid\" data-field-name=\"fbclid\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"ggclid\" data-field-name=\"ggclid\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"isocode\" data-field-name=\"isocode\" data-jfb-sync=\"null\" value=\"en\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"form-type\" data-field-name=\"form-type\" data-jfb-sync=\"null\" value=\"general\">\n\n\n\n<div  data-validation-type=\"advanced\" data-validation-messages=\"{&quot;url&quot;:&quot;Please fill a valid url.&quot;,&quot;empty&quot;:&quot;Please fill in this field.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your website url\" name=\"web_url\" id=\"web_url\" type=\"url\" data-field-name=\"web_url\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_gH1BEf2T\">\n\t\t\t\t\t<\/div><div class=\"jet-form-builder__desc\"><small>Please feel free to share your URL so that we can become familiar with the specifics of your activity. If you wish to share other links and\/or any additional useful information, please use the field below.<\/small><\/div>\n<\/div>\n\n<div  class=\"jet-form-builder-row field-type-textarea-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t<textarea class=\"jet-form-builder__field textarea-field\" placeholder=\"Your message \/ project\" required=\"required\" name=\"project_description\" data-field-name=\"project_description\" id=\"project_description\" data-jfb-sync=\"null\"><\/textarea>\n\t<\/div><div class=\"jet-form-builder__desc\"><small>You will be contacted soon by a innovacore team member; to help them prepare for your discussion effectively, we invite you to describe your project in as much detail as possible and to share any useful information with them.<\/small><\/div>\n<\/div>\n\n<div class=\"jet-form-builder__next-page-wrap\">\n\t\t\t\t\t<button class=\"jet-form-builder__next-page\" type=\"button\">Next<\/button>\n\t<\/div>\n<\/div>\n<div class=\"jet-form-builder-page jet-form-builder-page--hidden\" data-page=\"2\" data-page-offset=\"75\">\n\n<div  data-validation-type=\"advanced\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please fill in this field.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your first and last name*\" required=\"required\" name=\"firstname\" id=\"firstname\" type=\"text\" data-field-name=\"firstname\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_goLODknu\">\n\t\t\t\t\t<\/div>\n<\/div>\n\n<div  data-validation-type=\"advanced\" data-validation-rules=\"[{&quot;__visible&quot;:true,&quot;message&quot;:&quot;Veuillez entrer une adresse e-mail correcte.&quot;,&quot;type&quot;:&quot;regexp&quot;,&quot;value&quot;:&quot;^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\\\.[a-zA-Z]{2,}$&quot;}]\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please enter a valid email.&quot;,&quot;email&quot;:&quot;Please enter a valid email.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your email *\" required=\"required\" name=\"email\" id=\"email\" type=\"text\" data-field-name=\"email\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_rFbutkIX\">\n\t\t\t\t\t<\/div>\n<\/div>\n\n<div  data-validation-type=\"advanced\" data-validation-rules=\"[{&quot;__visible&quot;:true,&quot;type&quot;:&quot;regexp&quot;,&quot;value&quot;:&quot;^\\\\s*(?:\\\\+|00)?\\\\d{1,4}[\\\\s.-]?(?:\\\\d{1,4}[\\\\s.-]?){3,10}\\\\d\\\\s*$&quot;,&quot;message&quot;:&quot;Sorry, the mobile phone number you entered is incorrect. Please check your entry and enter a valid mobile phone number.&quot;}]\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please fill out this field.&quot;,&quot;email&quot;:&quot;Merci d&#039;entrer un email valide.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your phone *\" required=\"required\" name=\"phone\" id=\"phone\" type=\"tel\" data-field-name=\"phone\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_QKdaLAcC\">\n\t\t\t\t\t<\/div><div class=\"jet-form-builder__desc\"><small>Please enter your international phone prefix in the format 00XXx or +XXx.<\/small><\/div>\n<\/div>\n\n<div  class=\"jet-form-builder-row field-type-checkbox-field\" >\n<div class=\"jet-form-builder__fields-group checkradio-wrap\" data-jfb-sync><div class=\"jet-form-builder__field-wrap checkboxes-wrap checkradio-wrap\"><label class=\"jet-form-builder__field-label for-checkbox\">\n\t\t\t<input type=\"checkbox\" name=\"field_name\" value=\"true\" data-field-name=\"field_name\"  class=\"jet-form-builder__field checkboxes-field checkradio-field\" required=\"required\"><span>I accept the privacy policy and wish to be contacted by a innovacore representative.<\/span><\/label><\/div><\/div>\n<\/div>\n\n<input type=\"hidden\" class=\"captcha-token\" name=\"_captcha_token\" value=\"\"\/><div  class=\"jet-form-builder-row field-type-submit-field\" >\n\t<div data-type=\"submit\" class=\"jet-form-builder__action-button-wrapper jet-form-builder__submit-wrap\">\n\t<button class=\"jet-form-builder__action-button jet-form-builder__submit submit-type-reload\" type=\"submit\">Submit<\/button>\n\t<\/div>\n\t\n<\/div>\n\n<\/div>\t<div class=\"jet-form-builder-messages-wrap\" data-form-id=\"2598\"><\/div>\n<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab7640e animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"ab7640e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-64a1470 e-con-full e-flex e-con e-child\" data-id=\"64a1470\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ac0797d animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"ac0797d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Perguntas Frequentes<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b118ace elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b118ace\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\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<div class=\"elementor-element elementor-element-4a95063 e-con-full e-flex e-con e-child\" data-id=\"4a95063\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6787fb9 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"6787fb9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c811cf7 elementor-widget elementor-widget-text-editor\" data-id=\"c811cf7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Quest\u00f5es? Alguma obje\u00e7\u00e3o? Consulte o nosso FAQ para respostas \u00e0s perguntas mais frequentes.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f68e10 elementor-widget elementor-widget-html\" data-id=\"3f68e10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\ndocument.addEventListener(\"DOMContentLoaded\", function() {\r\n    \r\n    \/\/ On attache l'\u00e9v\u00e9nement au document pour attraper les clics \r\n    \/\/ m\u00eame si les \u00e9l\u00e9ments sont charg\u00e9s dynamiquement par JetEngine\r\n    document.body.addEventListener('click', function(e) {\r\n        \r\n        \/\/ On v\u00e9rifie si on a cliqu\u00e9 sur un header (ou un de ses enfants)\r\n        const header = e.target.closest('.faq-header');\r\n        \r\n        if (header) {\r\n            \/\/ On trouve l'item parent\r\n            const item = header.closest('.faq-item');\r\n            if (!item) return;\r\n\r\n            \/\/ Est-ce qu'il est d\u00e9j\u00e0 ouvert ?\r\n            const isActive = item.classList.contains('active');\r\n            \r\n            \/\/ 1. FERMER TOUS LES AUTRES (Mode Accord\u00e9on strict)\r\n            \/\/ On cherche tous les items qui sont dans le m\u00eame conteneur\r\n            const parentList = item.closest('.jet-listing-dynamic-repeater__items');\r\n            if (parentList) {\r\n                const siblings = parentList.querySelectorAll('.faq-item');\r\n                siblings.forEach(sibling => {\r\n                    sibling.classList.remove('active');\r\n                    const body = sibling.querySelector('.faq-body');\r\n                    if(body) body.style.maxHeight = null;\r\n                });\r\n            }\r\n\r\n            \/\/ 2. OUVRIR CELUI-CI (S'il n'\u00e9tait pas d\u00e9j\u00e0 ouvert)\r\n            if (!isActive) {\r\n                item.classList.add('active');\r\n                const body = item.querySelector('.faq-body');\r\n                if (body) {\r\n                    body.style.maxHeight = body.scrollHeight + \"px\";\r\n                }\r\n            }\r\n        }\r\n    });\r\n\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-daf2403 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"daf2403\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:1,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c664584 elementor-widget elementor-widget-html\" data-id=\"c664584\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"custom-faq-wrapper\">\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Isto \u00e9 um trabalho pago ou uma miss\u00e3o de freelancer?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Nem um nem outro. \u00c9 uma <strong>Parceria<\/strong>. Juntas-te \u00e0 Innovacore como membro. Investes o teu know-how em projetos em troca de uma parte do valor criado (Participa\u00e7\u00e3o acionista, Taxas de Sucesso, Contratos Futuros). \u00c9 para quem pode dedicar tempo para ganhar significativamente mais mais tarde.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">O que queres dizer com \"Partilhar ativos sem limites\"?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Acreditamos na <strong>execu\u00e7\u00e3o de c\u00f3digo aberto<\/strong> dentro do nosso portf\u00f3lio. Se tiveres um gui\u00e3o de vendas excepcional ou um modelo financeiro, tr\u00e1z-nos \u00e0 mesa. N\u00e3o vendemos templates; usamos-los para construir empresas bem-sucedidas.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Como escolhemos as empresas que ajudamos?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Seleccionamos empresas com potencial para crescer ou recuperar impulso. O CORE decide <strong>coletivamente<\/strong>. Se o projeto se enquadrar no nosso programa de Venture ou Turnaround, e acreditarmos que podemos \"Unlock\" fundos ou crescimento, avan\u00e7amos.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">Posso fazer isto em conjunto com outra atividade?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                Sim, inicialmente. Muitos membros come\u00e7am como <strong>especialistas fracion\u00e1rios<\/strong> ou mentores. No entanto, o objetivo final \u00e9 gerar lucro recorrente suficiente a partir dos nossos projetos de sucesso para permitir concentrar-se integralmente no ecossistema Innovacore.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"faq-item\">\r\n        <div class=\"faq-header\">\r\n            <h4 class=\"faq-question\">O que \u00e9 o \"Modelo Disruptivo\"?<\/h4>\r\n            <div class=\"faq-icon\">\r\n                <div class=\"faq-icon-line horizontal\"><\/div>\r\n                <div class=\"faq-icon-line vertical\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"faq-body\">\r\n            <div class=\"faq-answer\">\r\n                O mercado est\u00e1 farto de consultores que aconselham sem risco. Disruptamo-lo dizendo: <strong>\"S\u00f3 vencemos se voc\u00eas vencerem.\"<\/strong> Penetramos no ecossistema sendo os parceiros mais alinhados que um fundador pode encontrar. N\u00e3o cobramos dinheiro; criamos riqueza.\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>#innovacore-magnet { width: 100%; height: 400px; display: flex; justify-content: center; align-items: center; background: transparent; overflow: hidden; position: relative; z-index: 10; \/* Z-index \u00e9lev\u00e9 pour garantir la capture de la souris *\/ cursor: crosshair; \/* Important : permet les \u00e9v\u00e9nements de souris m\u00eame si transparent *\/ pointer-events: auto; } Torne-se um membro central. Pare de asesorar, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2369,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-4455","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/pages\/4455","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/comments?post=4455"}],"version-history":[{"count":6,"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/pages\/4455\/revisions"}],"predecessor-version":[{"id":7477,"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/pages\/4455\/revisions\/7477"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/media\/2369"}],"wp:attachment":[{"href":"https:\/\/innovacore.group\/pt-pt\/wp-json\/wp\/v2\/media?parent=4455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}