<br />
<b>Warning</b>:  Array to string conversion in <b>/srv/vhost/optimitive.com/home/html/wp-content/plugins/divi-pixel/divi5/modules/GravityFormsStyler/ModuleStylesTrait.php</b> on line <b>312</b><br />
{"id":8233,"date":"2026-01-21T20:19:32","date_gmt":"2026-01-21T19:19:32","guid":{"rendered":"https:\/\/optimitive.com\/solicita-una-demostracion\/"},"modified":"2026-04-05T20:56:08","modified_gmt":"2026-04-05T18:56:08","slug":"solicita-una-demostracion","status":"publish","type":"page","link":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/","title":{"rendered":"Solicita una demostraci\u00f3n"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_0 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_0 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_code_0 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\">    \n    <!-- Contenedor con ancho configurable -->\n    <div id=\"topo_69e8c362cb780_wrapper\" style=\"width:100%; height:120vh; position:relative; overflow:hidden; background:#000;\">\n        <!-- Canvas Element -->\n        <canvas id=\"topo_69e8c362cb780_canvas\" style=\"display:block; width:100%; height:100%;\"><\/canvas>\n    <\/div>\n\n    <script>\n    (function() {\n        const uid = \"topo_69e8c362cb780\";\n        const canvas = document.getElementById(uid + '_canvas');\n        const ctx = canvas.getContext('2d', { alpha: false }); \/\/ alpha false para mayor rendimiento si el fondo es s\u00f3lido\n\n        const config = {\n            numLines: parseInt(\"365\"),\n            lineColor: \"#334155\",\n            bgColor: \"#000\",\n            lineOpacity: parseFloat(\"0.7\"),\n            shapeColor: \"#555555\",\n            accentColor: \"#FF0000\",\n            speedMult: parseFloat(\"1.5\"),\n            ampMult: parseFloat(\"2.0\"),\n            scale: parseFloat(\"1.0\"),\n            posX: parseFloat(\"500\"),\n            posY: parseFloat(\"450\"),\n            targetFPS: parseInt(\"30\"),\n            \/\/ Configuraciones de Formas\n            numShapes: parseInt(\"50\"),\n            accentCount: parseInt(\"10\"),\n            shapeStroke: parseFloat(\"0.5\"),\n            \/\/ Configuraciones C\u00edrculo Grande\n            showBigCircle: \"true\" === \"true\",\n            bigCircleX: parseFloat(\"900\"),\n            bigCircleY: parseFloat(\"800\"),\n            bigCircleDiam: parseFloat(\"900\"),\n            bigCircleColor: \"#1E293B\"\n        };\n\n        \/\/ Optimizaciones de Canvas\n        const pointsPerLine = 120; \n        const waves = [];\n        \n        \/\/ Inicializar Ondas\n        for (let i = 0; i < 4; i++) {\n            waves.push({\n                freqX: 0.01 + Math.random() * 0.02,\n                freqZ: 0.01 + Math.random() * 0.02,\n                amp: (5 + Math.random() * 15) * config.ampMult, \n                speed: (0.00005 + Math.random() * 0.0003) * config.speedMult,\n                phase: Math.random() * Math.PI * 20\n            });\n        }\n\n        \/\/ Inicializar Formas (Generaci\u00f3n din\u00e1mica)\n        const shapesData = [];\n        const shapeTypes = ['square', 'circle', 'cross', 'triangle'];\n\n        \/\/ C\u00edrculo Grande\n        if (config.showBigCircle) {\n            shapesData.push({\n                type: 'circle',\n                color: config.bigCircleColor, \/\/ Usar color configurable espec\u00edfico\n                x: config.bigCircleX,    \/\/ Posici\u00f3n configurable X\n                y: config.bigCircleY,    \/\/ Posici\u00f3n configurable Y\n                size: config.bigCircleDiam \/ 2, \/\/ Radio es mitad del di\u00e1metro\n                rotSpeed: 0.0005, \/\/ Rotaci\u00f3n muy lenta\n                driftX: 0, \n                driftY: 0,\n                startTime: 0,\n                strokeWidth: config.shapeStroke \/\/ Opcional: podr\u00edas quererlo m\u00e1s fino\n            });\n        }\n\n        \/\/ Formas aleatorias\n        for (let i = 0; i < config.numShapes; i++) {\n            \/\/ Determinar color: Las primeras 'accentCount' figuras ser\u00e1n del color de acento\n            const isAccent = i < config.accentCount;\n            \n            shapesData.push({\n                type: shapeTypes[Math.floor(Math.random() * shapeTypes.length)],\n                color: isAccent ? config.accentColor : config.shapeColor,\n                x: Math.random() * 1000,\n                y: Math.random() * 1000,\n                size: 4 + Math.random() * 6, \/\/ Tama\u00f1o entre 4 y 10\n                rotSpeed: (Math.random() - 0.5) * 0.02,\n                driftX: 10 + Math.random() * 20,\n                driftY: 10 + Math.random() * 20,\n                startTime: Math.random() * 5000,\n                strokeWidth: config.shapeStroke\n            });\n        }\n\n        \/\/ Ajuste de tama\u00f1o del Canvas (Retina \/ High DPI support)\n        let renderScale = 1;\n        let shiftX = 0;\n        let shiftY = 0;\n\n        function resize() {\n            const wrapper = document.getElementById(uid + '_wrapper');\n            const dpr = window.devicePixelRatio || 1;\n            const rect = wrapper.getBoundingClientRect();\n            \n            canvas.width = rect.width * dpr;\n            canvas.height = rect.height * dpr;\n            \n            \/\/ L\u00f3gica para emular \"preserveAspectRatio='xMidYMid slice'\" del SVG\n            \/\/ Calculamos cu\u00e1nto tenemos que escalar el espacio virtual de 1000x1000 para llenar la pantalla\n            const scaleX = canvas.width \/ 1000;\n            const scaleY = canvas.height \/ 1000;\n            renderScale = Math.max(scaleX, scaleY); \/\/ 'slice' usa el mayor (cover)\n            \n            \/\/ Centrar\n            shiftX = (canvas.width - 1000 * renderScale) \/ 2;\n            shiftY = (canvas.height - 1000 * renderScale) \/ 2;\n\n            ctx.scale(1, 1); \/\/ Reset transform is handled manually in draw loop for performace\n        }\n        window.addEventListener('resize', resize);\n        resize();\n\n        \/\/ Funci\u00f3n de proyecci\u00f3n (matem\u00e1tica pura, igual que antes)\n        function project(x, y, z) {\n            const angleX = 0.5; \n            const angleY = 0.7; \n            const sc = config.scale; \n            const centerX = config.posX;\n            const centerY = config.posY;\n\n            const isoX = (x - z) * Math.cos(angleY);\n            const isoZ = (x + z) * Math.sin(angleY);\n            const isoY = y - isoZ * Math.sin(angleY); \/\/ Usamos angleY para simetr\u00eda o 0.5 fix\n\n            \/\/ Fix math to match SVG perfectly\n            const finalX = centerX + isoX * sc;\n            const finalY = centerY - (y - isoZ * Math.sin(angleX)) * sc + (isoZ * Math.cos(angleX) * sc * 0.45);\n            \n            return { x: finalX, y: finalY };\n        }\n        \n        \/\/ Loop de Animaci\u00f3n\n        let lastFrameTime = 0;\n        const fpsInterval = 1000 \/ config.targetFPS;\n\n        function draw(timestamp) {\n            requestAnimationFrame(draw);\n\n            if (!lastFrameTime) lastFrameTime = timestamp;\n            const elapsed = timestamp - lastFrameTime;\n\n            if (elapsed > fpsInterval) {\n                lastFrameTime = timestamp - (elapsed % fpsInterval);\n                const time = Date.now();\n\n                \/\/ 1. Limpiar Canvas\n                ctx.fillStyle = config.bgColor;\n                ctx.fillRect(0, 0, canvas.width, canvas.height);\n\n                \/\/ Configurar Transformaci\u00f3n Global (Simular SVG ViewBox)\n                ctx.save();\n                ctx.translate(shiftX, shiftY);\n                ctx.scale(renderScale, renderScale);\n\n                \/\/ 2. Dibujar L\u00edneas\n                ctx.beginPath();\n                ctx.strokeStyle = config.lineColor;\n                ctx.lineWidth = 0.45;\n                ctx.globalAlpha = config.lineOpacity;\n                \n                \/\/ Eliminado modo 'multiply' para garantizar visibilidad en todos los colores\n                ctx.globalCompositeOperation = 'source-over'; \n\n                for (let i = 0; i < config.numLines; i++) {\n                    const z = (i - config.numLines \/ 2) * 8.5; \n                    let firstPoint = true;\n\n                    for (let j = 0; j <= pointsPerLine; j++) {\n                        const x = (j - pointsPerLine \/ 2) * 18;\n                        let y = 0;\n                        \/\/ Suma de ondas (sinroll loop)\n                        for(let w=0; w<4; w++) {\n                            y += Math.sin(x * waves[w].freqX + z * waves[w].freqZ + time * waves[w].speed + waves[w].phase) * waves[w].amp;\n                        }\n\n                        \/\/ Proyecci\u00f3n manual simplificada inline para velocidad\n                        const angleX = 0.5; const angleY = 0.7; \n                        const sc = config.scale;\n                        \n                        const isoX = (x - z) * Math.cos(angleY);\n                        const isoZ = (x + z) * Math.sin(angleY);\n                        \/\/ formula ajustada del SVG original\n                        const isoY = y - isoZ * Math.sin(angleX);\n                        \n                        const px = config.posX + isoX * sc;\n                        const py = config.posY - isoY * sc + (isoZ * Math.cos(angleX) * sc * 0.45);\n\n                        if (firstPoint) {\n                            ctx.moveTo(px, py);\n                            firstPoint = false;\n                        } else {\n                            ctx.lineTo(px, py);\n                        }\n                    }\n                }\n                ctx.stroke();\n\n                \/\/ 3. Dibujar Formas\n                ctx.globalCompositeOperation = 'source-over'; \/\/ Restaurar mezcla normal\n                ctx.globalAlpha = 1.0;\n                \n                shapesData.forEach(s => {\n                    const t = (time + s.startTime) * 0.001 * config.speedMult;\n                    const curX = s.x + Math.sin(t * 0.4) * s.driftX;\n                    const curY = s.y + Math.cos(t * 0.5) * s.driftY;\n                    const rotation = t * s.rotSpeed * 250 * (Math.PI \/ 180); \/\/ Radianes\n\n                    ctx.save();\n                    ctx.translate(curX, curY);\n                    ctx.rotate(rotation);\n                    ctx.strokeStyle = s.color;\n                    ctx.lineWidth = s.strokeWidth; \/\/ Usar el grosor configurado\n                    ctx.beginPath();\n\n                    if (s.type === 'square') {\n                        ctx.rect(-s.size\/2, -s.size\/2, s.size, s.size);\n                    } else if (s.type === 'circle') {\n                        ctx.arc(0, 0, s.size, 0, Math.PI * 2);\n                    } else if (s.type === 'triangle') {\n                        \/\/ Tri\u00e1ngulo equil\u00e1tero simple\n                        const h = s.size;\n                        ctx.moveTo(0, -h);\n                        ctx.lineTo(h, h);\n                        ctx.lineTo(-h, h);\n                        ctx.closePath();\n                    } else if (s.type === 'cross') {\n                        const sz = s.size;\n                        ctx.moveTo(-sz, 0); ctx.lineTo(sz, 0);\n                        ctx.moveTo(0, -sz); ctx.lineTo(0, sz);\n                    }\n                    \n                    ctx.stroke();\n                    ctx.restore();\n                });\n\n                ctx.restore(); \/\/ Restaurar transformaci\u00f3n global\n            }\n        }\n\n        requestAnimationFrame(draw);\n    })();\n    <\/script>\n    <\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_1 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_1 et_pb_column et_block_column et_pb_css_mix_blend_mode_passthrough et_flex_column_8_24 et_flex_column_8_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_dark et_pb_module et_block_module preset--module--divi-text--default\"><div class=\"et_pb_text_inner\"><h1>Solicitar una demostraci\u00f3n de OPTIBAT\u00ae<\/h1>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_2 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_16_24 et_flex_column_16_24_tablet et_flex_column_24_24_phone\">\n<div class=\"dipi_gravity_forms_styler_0 dipi_gravity_forms_styler et_pb_bg_layout_light et_pb_module\"><div class=\"dipi_gf_styler_container\" data-config=\"{&quot;order_class&quot;:&quot;dipi_gravity_forms_styler_0&quot;,&quot;use_custom_select_arrow&quot;:&quot;off&quot;,&quot;select_arrow_use_icon&quot;:&quot;off&quot;,&quot;select_arrow_icon_last_edited&quot;:&quot;&quot;,&quot;select_arrow_icon&quot;:&quot;\\uf078&quot;,&quot;select_arrow_icon_tablet&quot;:&quot;\\uf078&quot;,&quot;select_arrow_icon_phone&quot;:&quot;\\uf078&quot;}\">\n                <div class=\"dipi_gf_styler_wrapper clearfix\"><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_1' ><style>#gform_wrapper_1[data-form-index=\"0\"].gform-theme,[data-parent-form=\"1_0\"]{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style>\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_1'  action='\/es\/wp-json\/wp\/v2\/pages\/8233' data-formid='1' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_1' class='gform_fields top_label form_sublabel_above description_above validation_below'><div id=\"field_1_6\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_6'>Email<\/label><div class='gfield_description' id='gfield_description_1_6'>Este campo es un campo de validaci\u00f3n y debe quedar sin cambios.<\/div><div class='ginput_container'><input name='input_6' id='input_1_6' type='text' value='' autocomplete='new-password'\/><\/div><\/div><fieldset id=\"field_1_1\" class=\"gfield gfield--type-name gfield--input-type-name gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Nombre<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_1_1'>\n                            \n                            <span id='input_1_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <label for='input_1_1_3' class='gform-field-label gform-field-label--type-sub '>Nombre<\/label>\n                                                    <input type='text' name='input_1.3' id='input_1_1_3' value=''   aria-required='true'    autocomplete=\"given-name\" \/>\n                                                <\/span>\n                            \n                            <span id='input_1_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                            <label for='input_1_1_6' class='gform-field-label gform-field-label--type-sub '>Apellidos<\/label>\n                                                            <input type='text' name='input_1.6' id='input_1_1_6' value=''   aria-required='true'    autocomplete=\"family-name\" \/>\n                                                        <\/span>\n                            \n                        <\/div><\/fieldset><div id=\"field_1_4\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_4'>Empresa<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_1_4' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_2\" class=\"gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_2'>Correo electr\u00f3nico<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_2' id='input_1_2' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><fieldset id=\"field_1_5\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield--width-full field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Consentimiento<\/legend><div class='ginput_container ginput_container_consent'><input name='input_5.1' id='input_1_5_1' type='checkbox' value='1'    aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_1_5_1' >Acepto la Pol\u00edtica de Privacidad.<\/label><input type='hidden' name='input_5.2' value='Acepto la Pol\u00edtica de Privacidad.' class='gform_hidden' \/><input type='hidden' name='input_5.3' value='1' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/REC-html40\/loose.dtd\">\n<?xml encoding=\"UTF-8\"><html><body><input type=\"submit\" id=\"gform_submit_button_1\" class=\"gform_button button\" onclick=\"gform.submission.handleButtonClick(this);\" data-submission-type=\"submit\" value=\"Enviar\" data-replace-button-html=\"&amp;lt;button type=&amp;quot;submit&amp;quot; id=&amp;quot;gform_submit_button_1&amp;quot; class=&amp;quot;dipi_gf_submit_button gform_button  et_pb_button et_pb_custom_button_icon gform_button button&amp;quot; onclick=&amp;quot;gform.submission.handleButtonClick(this);&amp;quot; data-submission-type=&amp;quot;submit&amp;quot; value=&amp;quot;Enviar&amp;quot;&amp;gt;Enviar&amp;lt;\/button&amp;gt;\"><\/body><\/html>\n \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_1' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_1' id='gform_theme_1' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_1' id='gform_style_settings_1' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='EUR' value='Q1Vn3tTAJlmoqmGUPLQT5RbvSvaPiyY8xbw8ypNiMLN9Q5iT5TjnyQWT0sEoaogJZvyco8UF31mZFaVc\/oMBYID9qaPi\/Oyc+tcjrK1\/rTVzPYs=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_1' value='WyJ7XCI1LjFcIjpcImM1N2EyOGI2ZjQyNDBjY2NlMzViZTM2MjE3NzUyNzI2XCIsXCI1LjJcIjpcImNkMWQyNGNhODY3MTY3ZmYyMDliODdiZDA5ZDUwNzQxXCIsXCI1LjNcIjpcImM1N2EyOGI2ZjQyNDBjY2NlMzViZTM2MjE3NzUyNzI2XCJ9IiwiY2QxNDU1NmNhMzU4YWQ4ODFkM2EzNjllOGJlNzdlYjEiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 1, 'https:\/\/optimitive.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery('#gform_ajax_frame_1').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_1');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_1').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_1').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_1').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_1').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_1').val();gformInitSpinner( 1, 'https:\/\/optimitive.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [1, current_page]);window['gf_submitting_1'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_1').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [1]);window['gf_submitting_1'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_1').text());}else{jQuery('#gform_1').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"1\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_1\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_1\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_1\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 1, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n<\/div>\n            <\/div><\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":8040,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"iawp_total_views":3,"footnotes":""},"dipi_cpt_category":[157,158],"class_list":["post-8233","page","type-page","status-publish","has-post-thumbnail","hentry","dipi_cpt_category-demo","dipi_cpt_category-formularios"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Solicita una demostraci\u00f3n - OPTIMITIVE<\/title>\n<meta name=\"description\" content=\"Solicita una demostraci\u00f3n - OPTIMITIVE -\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Solicita una demostraci\u00f3n\" \/>\n<meta property=\"og:description\" content=\"Optimitive optimizes industrial processes with AI and digital twins. We reduce energy costs up to 15% in cement, chemical, and manufacturing plants. Discover proven RTO solutions in Spain and Europe.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/\" \/>\n<meta property=\"og:site_name\" content=\"OPTIMITIVE\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-05T18:56:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/optimitive.com\/wp-content\/uploads\/2026\/02\/featured-dark-center.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@OPTIMITIVE\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/\",\"url\":\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/\",\"name\":\"Solicita una demostraci\u00f3n - OPTIMITIVE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/optimitive.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/featured-dark-center.jpg\",\"datePublished\":\"2026-01-21T19:19:32+00:00\",\"dateModified\":\"2026-04-05T18:56:08+00:00\",\"description\":\"Solicita una demostraci\u00f3n - OPTIMITIVE -\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/#primaryimage\",\"url\":\"https:\\\/\\\/optimitive.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/featured-dark-center.jpg\",\"contentUrl\":\"https:\\\/\\\/optimitive.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/featured-dark-center.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/solicita-una-demostracion\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/optimitive.com\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Solicita una demostraci\u00f3n\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/optimitive.com\\\/es\\\/\",\"name\":\"optimitive.com\",\"description\":\"Real-time optimization by AI\",\"publisher\":{\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/optimitive.com\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/#organization\",\"name\":\"OPTIMITIVE\",\"url\":\"https:\\\/\\\/optimitive.com\\\/es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/optimitive.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/logo-optimitive-color-black.svg\",\"contentUrl\":\"https:\\\/\\\/optimitive.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/logo-optimitive-color-black.svg\",\"width\":251,\"height\":30,\"caption\":\"OPTIMITIVE\"},\"image\":{\"@id\":\"https:\\\/\\\/optimitive.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/OPTIMITIVE\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/optimitive-s.l.\\\/?originalSubdomain=es\"],\"description\":\"Optimitive is a software company founded in 2008, specializing in AI-driven Real-Time Optimization (RTO) for industrial processes. We enhance efficiency and sustainability in sectors like cement, chemicals, oil & gas, and manufacturing, reducing energy costs up to 15% via closed-loop AI solutions like OPTIBAT\u00ae\",\"email\":\"info@optimitive.com\",\"telephone\":\"+34 945 298 120\",\"legalName\":\"OPTIMITIVE S.L.\",\"foundingDate\":\"2008-01-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"},\"publishingPrinciples\":\"https:\\\/\\\/optimitive.com\\\/privacy-policy\\\/\",\"ownershipFundingInfo\":\"https:\\\/\\\/optimitive.com\\\/legal-notice\\\/\",\"actionableFeedbackPolicy\":\"https:\\\/\\\/optimitive.com\\\/privacy-policy\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Solicita una demostraci\u00f3n - OPTIMITIVE","description":"Solicita una demostraci\u00f3n - OPTIMITIVE -","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:\/\/optimitive.com\/es\/solicita-una-demostracion\/","og_locale":"es_ES","og_type":"article","og_title":"Solicita una demostraci\u00f3n","og_description":"Optimitive optimizes industrial processes with AI and digital twins. We reduce energy costs up to 15% in cement, chemical, and manufacturing plants. Discover proven RTO solutions in Spain and Europe.","og_url":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/","og_site_name":"OPTIMITIVE","article_modified_time":"2026-04-05T18:56:08+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/optimitive.com\/wp-content\/uploads\/2026\/02\/featured-dark-center.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@OPTIMITIVE","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/","url":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/","name":"Solicita una demostraci\u00f3n - OPTIMITIVE","isPartOf":{"@id":"https:\/\/optimitive.com\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/#primaryimage"},"image":{"@id":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/#primaryimage"},"thumbnailUrl":"https:\/\/optimitive.com\/wp-content\/uploads\/2026\/02\/featured-dark-center.jpg","datePublished":"2026-01-21T19:19:32+00:00","dateModified":"2026-04-05T18:56:08+00:00","description":"Solicita una demostraci\u00f3n - OPTIMITIVE -","breadcrumb":{"@id":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/optimitive.com\/es\/solicita-una-demostracion\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/#primaryimage","url":"https:\/\/optimitive.com\/wp-content\/uploads\/2026\/02\/featured-dark-center.jpg","contentUrl":"https:\/\/optimitive.com\/wp-content\/uploads\/2026\/02\/featured-dark-center.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/optimitive.com\/es\/solicita-una-demostracion\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/optimitive.com\/es\/"},{"@type":"ListItem","position":2,"name":"Solicita una demostraci\u00f3n"}]},{"@type":"WebSite","@id":"https:\/\/optimitive.com\/es\/#website","url":"https:\/\/optimitive.com\/es\/","name":"optimitive.com","description":"Real-time optimization by AI","publisher":{"@id":"https:\/\/optimitive.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/optimitive.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/optimitive.com\/es\/#organization","name":"OPTIMITIVE","url":"https:\/\/optimitive.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/optimitive.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/optimitive.com\/wp-content\/uploads\/2026\/01\/logo-optimitive-color-black.svg","contentUrl":"https:\/\/optimitive.com\/wp-content\/uploads\/2026\/01\/logo-optimitive-color-black.svg","width":251,"height":30,"caption":"OPTIMITIVE"},"image":{"@id":"https:\/\/optimitive.com\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/OPTIMITIVE","https:\/\/www.linkedin.com\/company\/optimitive-s.l.\/?originalSubdomain=es"],"description":"Optimitive is a software company founded in 2008, specializing in AI-driven Real-Time Optimization (RTO) for industrial processes. We enhance efficiency and sustainability in sectors like cement, chemicals, oil & gas, and manufacturing, reducing energy costs up to 15% via closed-loop AI solutions like OPTIBAT\u00ae","email":"info@optimitive.com","telephone":"+34 945 298 120","legalName":"OPTIMITIVE S.L.","foundingDate":"2008-01-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"},"publishingPrinciples":"https:\/\/optimitive.com\/privacy-policy\/","ownershipFundingInfo":"https:\/\/optimitive.com\/legal-notice\/","actionableFeedbackPolicy":"https:\/\/optimitive.com\/privacy-policy\/"}]}},"_links":{"self":[{"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/pages\/8233","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/comments?post=8233"}],"version-history":[{"count":5,"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/pages\/8233\/revisions"}],"predecessor-version":[{"id":8435,"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/pages\/8233\/revisions\/8435"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/media\/8040"}],"wp:attachment":[{"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/media?parent=8233"}],"wp:term":[{"taxonomy":"dipi_cpt_category","embeddable":true,"href":"https:\/\/optimitive.com\/es\/wp-json\/wp\/v2\/dipi_cpt_category?post=8233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}