{"id":49,"date":"2025-08-05T19:09:17","date_gmt":"2025-08-05T19:09:17","guid":{"rendered":"https:\/\/flamingo.codeyuzu.com\/rubita\/?page_id=49"},"modified":"2025-10-09T10:05:00","modified_gmt":"2025-10-09T10:05:00","slug":"inicio","status":"publish","type":"page","link":"https:\/\/rubitastudio.com\/en\/","title":{"rendered":"Home"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"49\" class=\"elementor elementor-49\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-498e9e4 e-con-full e-flex e-con e-parent\" data-id=\"498e9e4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3872e22 elementor-widget elementor-widget-html\" data-id=\"3872e22\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- Contenedor -->\r\n<div id=\"pelotas-anim\" class=\"pelotas-anim\">\r\n  <!-- Sustituye estas 5 im\u00e1genes por tus pelotas -->\r\n  <img decoding=\"async\" class=\"ball\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse23.png\" alt=\"Roja\" \/>\r\n  <img decoding=\"async\" class=\"ball\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse24.png\" alt=\"Azul\" \/>\r\n  <img decoding=\"async\" class=\"ball\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse25.png\" alt=\"Verde\" \/>\r\n  <img decoding=\"async\" class=\"ball\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse26.png\" alt=\"Amarilla\" \/>\r\n  <img decoding=\"async\" class=\"ball\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse27.png\" alt=\"Morada\" \/>\r\n<\/div>\r\n\r\n<style>\r\n.pelotas-anim {\r\n    height: 100vh;\r\n    top: -76vh;\r\n    pointer-events: none;\r\n    isolation: isolate;\r\n    overflow: hidden;\r\n    position: absolute;\r\n    width: 100%;\r\n}\r\n  .pelotas-anim .ball{\r\n    position: absolute;\r\n    top: 0; left: 0;\r\n    will-change: transform;\r\n    user-select: none;\r\n    -webkit-user-drag: none;\r\n    transform: translate(-200px, -200px); \/* fuera de vista por defecto *\/\r\n\r\n  }\r\n  \/* Respeta usuarios con reduce motion *\/\r\n  @media (prefers-reduced-motion: reduce) {\r\n    .pelotas-anim .ball { transition: none !important; animation: none !important; }\r\n  }\r\n  \r\n  \r\n  @media only screen and (max-width: 600px) {\r\n  body {\r\n    .pelotas-anim {\r\n        height: 100vh;\r\n        top: -100vh;\r\n        pointer-events: none;\r\n        isolation: isolate;\r\n        overflow: hidden;\r\n        position: absolute;\r\n        width: 100%;\r\n    }\r\n}\r\n\r\n<\/style>\r\n\r\n<script>\r\n(function(){\r\n  const container = document.getElementById('pelotas-anim');\r\n  const balls = Array.from(container.querySelectorAll('.ball'));\r\n\r\n  \/\/ Configuraci\u00f3n\r\n  const CONFIG = {\r\n    minSpeed: 250,   \/\/ px\/seg\r\n    maxSpeed: 450,   \/\/ px\/seg\r\n    padding: 0,     \/\/ margen interior para evitar bordes duros\r\n    sizeJitter: [0.9, 1.15],\r\n    gapBetweenRuns: [200, 1200], \/\/ ms\r\n    diagFactor: [0.3, 0.9] \/\/ qu\u00e9 tan diagonal (fracci\u00f3n del ancho\/alto)\r\n  };\r\n\r\n  const prefersReduced = window.matchMedia('(prefers-reduced-motion: reduce)').matches;\r\n  let running = false;\r\n  let rafId = null;\r\n  const actors = [];\r\n\r\n  const rand   = (min, max) => min + Math.random() * (max - min);\r\n  const randi  = (min, max) => Math.floor(rand(min, max));\r\n  const pick   = (arr) => arr[Math.floor(Math.random()*arr.length)];\r\n  const clamp  = (v, a, b) => Math.max(a, Math.min(b, v));\r\n  const sign   = () => Math.random() < 0.5 ? -1 : 1;\r\n\r\n  function makeRun(el, contW, contH, scale){\r\n    const p = CONFIG.padding;\r\n    const modes = ['L2R','R2L','T2B','B2T'];\r\n    const mode = pick(modes);\r\n\r\n    let startX, startY, endX, endY;\r\n\r\n    if (mode === 'L2R') {\r\n      startX = -el.width * scale - 20;\r\n      startY = rand(p, contH - p);\r\n      endX   = contW + 20;\r\n      const deltaY = sign() * rand(contH * CONFIG.diagFactor[0], contH * CONFIG.diagFactor[1]);\r\n      endY   = clamp(startY + deltaY, p, contH - p);\r\n    } else if (mode === 'R2L') {\r\n      startX = contW + 20;\r\n      startY = rand(p, contH - p);\r\n      endX   = -el.width * scale - 20;\r\n      const deltaY = sign() * rand(contH * CONFIG.diagFactor[0], contH * CONFIG.diagFactor[1]);\r\n      endY   = clamp(startY + deltaY, p, contH - p);\r\n    } else if (mode === 'T2B') {\r\n      startY = -el.height * scale - 20;\r\n      startX = rand(p, contW - p);\r\n      endY   = contH + 20;\r\n      const deltaX = sign() * rand(contW * CONFIG.diagFactor[0], contW * CONFIG.diagFactor[1]);\r\n      endX   = clamp(startX + deltaX, p, contW - p);\r\n    } else { \/\/ B2T\r\n      startY = contH + 20;\r\n      startX = rand(p, contW - p);\r\n      endY   = -el.height * scale - 20;\r\n      const deltaX = sign() * rand(contW * CONFIG.diagFactor[0], contW * CONFIG.diagFactor[1]);\r\n      endX   = clamp(startX + deltaX, p, contW - p);\r\n    }\r\n\r\n    const dx = endX - startX;\r\n    const dy = endY - startY;\r\n    const distance = Math.hypot(dx, dy);\r\n    const speed = rand(CONFIG.minSpeed, CONFIG.maxSpeed); \/\/ px\/s\r\n    const duration = distance \/ speed * 1000; \/\/ ms\r\n\r\n    return { startX, startY, endX, endY, duration, startTime: null };\r\n  }\r\n\r\n  function layout(){\r\n    const contW = container.clientWidth;\r\n    const contH = container.clientHeight;\r\n\r\n    balls.forEach((el, idx) => {\r\n      if (!actors[idx]) actors[idx] = { el, running: false, scale: 1 };\r\n\r\n      const actor = actors[idx];\r\n      actor.scale = rand(CONFIG.sizeJitter[0], CONFIG.sizeJitter[1]);\r\n\r\n      \/\/ inicial fuera de vista\r\n      el.style.transform = `translate(-200px,-200px) scale(${actor.scale})`;\r\n\r\n      actor.reset = function(){\r\n        actor.state = makeRun(el, contW, contH, actor.scale);\r\n        actor.running = true;\r\n      };\r\n\r\n      if (!actor.running) {\r\n        setTimeout(() => actor.reset(), randi(0, 800));\r\n      }\r\n    });\r\n  }\r\n\r\n  function step(ts){\r\n    if (!running) return;\r\n\r\n    actors.forEach(actor => {\r\n      if (!actor || !actor.running) return;\r\n\r\n      const { el, state, scale } = actor;\r\n      if (state.startTime === null) state.startTime = ts;\r\n\r\n      const t = Math.min(1, (ts - state.startTime) \/ state.duration);\r\n\r\n      const x = state.startX + (state.endX - state.startX) * t;\r\n      const y = state.startY + (state.endY - state.startY) * t;\r\n\r\n      el.style.transform = `translate(${x}px, ${y}px) scale(${scale})`;\r\n\r\n      if (t >= 1) {\r\n        actor.running = false;\r\n        setTimeout(() => {\r\n          if (running) {\r\n            \/\/ nueva diagonal con nuevo scale (var\u00eda tama\u00f1o entre recorridos)\r\n            actor.scale = rand(CONFIG.sizeJitter[0], CONFIG.sizeJitter[1]);\r\n            actor.reset();\r\n          }\r\n        }, randi(CONFIG.gapBetweenRuns[0], CONFIG.gapBetweenRuns[1]));\r\n      }\r\n    });\r\n\r\n    rafId = requestAnimationFrame(step);\r\n  }\r\n\r\n  const io = new IntersectionObserver((entries) => {\r\n    entries.forEach(entry => {\r\n      if (entry.isIntersecting && !prefersReduced) {\r\n        if (!running){\r\n          running = true;\r\n          layout();\r\n          cancelAnimationFrame(rafId);\r\n          rafId = requestAnimationFrame(step);\r\n        }\r\n      } else {\r\n        running = false;\r\n        cancelAnimationFrame(rafId);\r\n      }\r\n    });\r\n  }, { threshold: 0 });\r\n\r\n  let resizeTO = null;\r\n  window.addEventListener('resize', () => {\r\n    clearTimeout(resizeTO);\r\n    resizeTO = setTimeout(() => layout(), 150);\r\n  });\r\n\r\n  layout();\r\n  io.observe(container);\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-02838d1 elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"02838d1\" 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\">rubita studio<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5702052 e-con-full e-flex e-con e-parent\" data-id=\"5702052\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-76597ac e-con-full e-flex e-con e-child\" data-id=\"76597ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8ca808b elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8ca808b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Playful minds, professional voices<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-96f6cfb elementor-invisible elementor-widget elementor-widget-button\" data-id=\"96f6cfb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" 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=\"https:\/\/rubitastudio.com\/en\/nosotros\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"16\" height=\"12\" viewbox=\"0 0 16 12\" fill=\"none\"><path d=\"M15.6491 6.18414C15.942 5.89125 15.942 5.41637 15.6491 5.12348L10.8761 0.350508C10.5832 0.0576143 10.1084 0.0576143 9.81547 0.350508C9.52258 0.643401 9.52258 1.11827 9.81547 1.41117L14.0581 5.65381L9.81547 9.89645C9.52258 10.1893 9.52258 10.6642 9.81547 10.9571C10.1084 11.25 10.5832 11.25 10.8761 10.9571L15.6491 6.18414ZM0 5.65381V6.40381H15.1188V5.65381V4.90381H0V5.65381Z\" fill=\"black\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">ABOUT RUBITA STUDIO<\/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-603de28 e-con-full ripple-container e-flex e-con e-child\" data-id=\"603de28\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0132eb5 e-con-full e-flex e-con e-parent\" data-id=\"0132eb5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6eaedd1 elementor-position-inline-end hover-area elementor-mobile-position-inline-end elementor-view-default elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"6eaedd1\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"overimageeffect1\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:0}\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/estrategia\/\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"Strategy\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"80\" height=\"81\" viewbox=\"0 0 80 81\" fill=\"none\"><circle cx=\"40\" cy=\"40.7056\" r=\"40\" fill=\"#111111\"><\/circle><path d=\"M50.6824 29.9541L29.8969 50.7397\" stroke=\"white\" stroke-width=\"5\"><\/path><path d=\"M28.6558 29.3376H51.3441V52.0735\" stroke=\"white\" stroke-width=\"5\"><\/path><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h5 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/estrategia\/\" >\n\t\t\t\t\t\t\tStrategy\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/h5>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-386e5f3 elementor-position-inline-end hover-area elementor-mobile-position-inline-end elementor-view-default elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"386e5f3\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"overimageeffect2\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:50}\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/branding\/\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"Branding\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"80\" height=\"81\" viewbox=\"0 0 80 81\" fill=\"none\"><circle cx=\"40\" cy=\"40.7056\" r=\"40\" fill=\"#111111\"><\/circle><path d=\"M50.6824 29.9541L29.8969 50.7397\" stroke=\"white\" stroke-width=\"5\"><\/path><path d=\"M28.6558 29.3376H51.3441V52.0735\" stroke=\"white\" stroke-width=\"5\"><\/path><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h5 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/branding\/\" >\n\t\t\t\t\t\t\tBranding\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/h5>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6db03bf elementor-position-inline-end hover-area elementor-mobile-position-inline-end elementor-view-default elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"6db03bf\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"overimageeffect3\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/contenido\/\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"Content\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"80\" height=\"81\" viewbox=\"0 0 80 81\" fill=\"none\"><circle cx=\"40\" cy=\"40.7056\" r=\"40\" fill=\"#111111\"><\/circle><path d=\"M50.6824 29.9541L29.8969 50.7397\" stroke=\"white\" stroke-width=\"5\"><\/path><path d=\"M28.6558 29.3376H51.3441V52.0735\" stroke=\"white\" stroke-width=\"5\"><\/path><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h5 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/contenido\/\" >\n\t\t\t\t\t\t\tContent\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/h5>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d3eba97 elementor-position-inline-end hover-area elementor-mobile-position-inline-end elementor-view-default elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"d3eba97\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"overimageeffect4\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:150}\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/redes-sociales\/\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"Social media\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"80\" height=\"81\" viewbox=\"0 0 80 81\" fill=\"none\"><circle cx=\"40\" cy=\"40.7056\" r=\"40\" fill=\"#111111\"><\/circle><path d=\"M50.6824 29.9541L29.8969 50.7397\" stroke=\"white\" stroke-width=\"5\"><\/path><path d=\"M28.6558 29.3376H51.3441V52.0735\" stroke=\"white\" stroke-width=\"5\"><\/path><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h5 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/redes-sociales\/\" >\n\t\t\t\t\t\t\tSocial media\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/h5>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b8c37fd elementor-position-inline-end hover-area elementor-mobile-position-inline-end elementor-view-default elementor-invisible elementor-widget elementor-widget-icon-box\" data-id=\"b8c37fd\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"overimageeffect5\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:200}\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/produccion\/\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"Production\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"80\" height=\"81\" viewbox=\"0 0 80 81\" fill=\"none\"><circle cx=\"40\" cy=\"40.7056\" r=\"40\" fill=\"#111111\"><\/circle><path d=\"M50.6824 29.9541L29.8969 50.7397\" stroke=\"white\" stroke-width=\"5\"><\/path><path d=\"M28.6558 29.3376H51.3441V52.0735\" stroke=\"white\" stroke-width=\"5\"><\/path><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h5 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"https:\/\/rubitastudio.com\/en\/produccion\/\" >\n\t\t\t\t\t\t\tProduction\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/h5>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\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-85ab04c e-con-full ripple-container e-flex e-con e-parent\" data-id=\"85ab04c\" 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-9e9bc20 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"9e9bc20\" 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\">Featured Projects<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-03fc861 e-con-full e-flex elementor-invisible e-con e-parent\" data-id=\"03fc861\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-68c4b9b elementor-pagination-type-bullets elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel\" data-id=\"68c4b9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 1&quot;,&quot;_id&quot;:&quot;b4257c9&quot;},{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 1&quot;,&quot;_id&quot;:&quot;cbf7e5d&quot;},{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 1&quot;,&quot;_id&quot;:&quot;930159d&quot;},{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 1&quot;,&quot;_id&quot;:&quot;d273cba&quot;},{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 1&quot;,&quot;_id&quot;:&quot;c83002d&quot;},{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 1&quot;,&quot;_id&quot;:&quot;bf0f8a8&quot;}],&quot;offset_sides&quot;:&quot;right&quot;,&quot;offset_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:80,&quot;sizes&quot;:[]},&quot;offset_width_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;offset_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;image_spacing_custom_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8570116 e-flex e-con-boxed e-con e-child\" data-id=\"8570116\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f6364b2 elementor-widget elementor-widget-image\" data-id=\"f6364b2\" 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 fetchpriority=\"high\" decoding=\"async\" width=\"750\" height=\"879\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-epos-home.jpg\" class=\"attachment-full size-full wp-image-1014\" alt=\"\" srcset=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-epos-home.jpg 750w, https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-epos-home-256x300.jpg 256w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\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-f7f8754 elementor-widget elementor-widget-text-editor\" data-id=\"f7f8754\" 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>EPOS CINE<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b416aa4 elementor-widget elementor-widget-button\" data-id=\"b416aa4\" 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=\"https:\/\/rubitastudio.com\/en\/epos-cine\/\">\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\">SEE MORE<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6d827f8 e-flex e-con-boxed e-con e-child\" data-id=\"6d827f8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-061e2e1 elementor-widget elementor-widget-image\" data-id=\"061e2e1\" 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=\"750\" height=\"879\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-miranda-home.jpg\" class=\"attachment-full size-full wp-image-1017\" alt=\"\" srcset=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-miranda-home.jpg 750w, https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-miranda-home-256x300.jpg 256w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\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-5257ac7 elementor-widget elementor-widget-text-editor\" data-id=\"5257ac7\" 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>Miranda Bosch Real Estate<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f4f5ef elementor-widget elementor-widget-button\" data-id=\"2f4f5ef\" 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=\"https:\/\/rubitastudio.com\/en\/miranda-bosch-real-estate-art\/\">\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\">SEE MORE<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-edc6e49 e-flex e-con-boxed e-con e-child\" data-id=\"edc6e49\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f185e65 elementor-widget elementor-widget-image\" data-id=\"f185e65\" 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=\"750\" height=\"879\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-tersus-home.jpg\" class=\"attachment-full size-full wp-image-1018\" alt=\"\" srcset=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-tersus-home.jpg 750w, https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-tersus-home-256x300.jpg 256w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\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-663586f elementor-widget elementor-widget-text-editor\" data-id=\"663586f\" 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>TERSUS WINES<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-64b5fde elementor-widget elementor-widget-button\" data-id=\"64b5fde\" 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=\"https:\/\/rubitastudio.com\/en\/tersus-wines\/\">\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\">SEE MORE<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c672c45 e-flex e-con-boxed e-con e-child\" data-id=\"c672c45\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d0e8c25 elementor-widget elementor-widget-image\" data-id=\"d0e8c25\" 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 loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"879\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-falcon-home.jpg\" class=\"attachment-full size-full wp-image-1015\" alt=\"\" srcset=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-falcon-home.jpg 750w, https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-falcon-home-256x300.jpg 256w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\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-ef6b49f elementor-widget elementor-widget-text-editor\" data-id=\"ef6b49f\" 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>FALCON PROPERTIES<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7ea03b elementor-widget elementor-widget-button\" data-id=\"a7ea03b\" 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=\"https:\/\/rubitastudio.com\/en\/falcon-properties\/\">\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\">SEE MORE<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5996ded e-flex e-con-boxed e-con e-child\" data-id=\"5996ded\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b8340e3 elementor-widget elementor-widget-image\" data-id=\"b8340e3\" 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 loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"879\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-florencia-home.jpg\" class=\"attachment-full size-full wp-image-1016\" alt=\"\" srcset=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-florencia-home.jpg 750w, https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-florencia-home-256x300.jpg 256w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\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-ec19621 elementor-widget elementor-widget-text-editor\" data-id=\"ec19621\" 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>Florencia Masri<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-172e8e8 elementor-widget elementor-widget-button\" data-id=\"172e8e8\" 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=\"https:\/\/rubitastudio.com\/en\/florencia-masri\/\">\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\">SEE MORE<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"6\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ebd6bbd e-flex e-con-boxed e-con e-child\" data-id=\"ebd6bbd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d0b4650 elementor-widget elementor-widget-image\" data-id=\"d0b4650\" 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 loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"879\" src=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-diana-montoya-1.jpg\" class=\"attachment-full size-full wp-image-1481\" alt=\"\" srcset=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-diana-montoya-1.jpg 750w, https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-diana-montoya-1-256x300.jpg 256w, https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-diana-montoya-1-10x12.jpg 10w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\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-7da65c8 elementor-widget elementor-widget-text-editor\" data-id=\"7da65c8\" 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>Diana Montoya<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3587b53 elementor-widget elementor-widget-button\" data-id=\"3587b53\" 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=\"https:\/\/rubitastudio.com\/en\/diana-montoya\/\">\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\">SEE MORE<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a045fa4 e-flex e-con-boxed e-con e-parent\" data-id=\"a045fa4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-089633c e-con-full e-flex e-con e-child\" data-id=\"089633c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0f376e elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"e0f376e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Let's talk. Every good strategy starts with a conversation that sparks ideas.\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1bf3f6c elementor-align-start elementor-mobile-align-start elementor-icon-list--layout-inline elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"1bf3f6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/rubitastudio\/\" target=\"_blank\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-instagram\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.linkedin.com\/company\/rubita-studio\/\" target=\"_blank\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-linkedin-in\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:hello@rubitastudio.com\" target=\"_blank\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-envelope\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-437a8bd e-con-full e-flex e-con e-child\" data-id=\"437a8bd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8a04ec2 elementor-button-align-end elementor-widget elementor-widget-form\" data-id=\"8a04ec2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Siguiente&quot;,&quot;step_previous_label&quot;:&quot;Anterior&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"Nuevo formulario\" aria-label=\"New form\" action=\"\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"49\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"8a04ec2\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Inicio - Rubita\" \/>\n\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"queried_id\" value=\"49\"\/>\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tName\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Name\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-email\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tE-mail\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"E-mail\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_34c0ef6 elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_34c0ef6\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tPhone\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_34c0ef6]\" id=\"form-field-field_34c0ef6\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Phone\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-message\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tMessage\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[message]\" id=\"form-field-message\" rows=\"2\" placeholder=\"WRITE YOUR MESSAGE HERE...\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-recaptcha_v3 elementor-field-group elementor-column elementor-field-group-field_8cb9614 elementor-col-100 recaptcha_v3-bottomright\">\n\t\t\t\t\t<div class=\"elementor-field\" id=\"form-field-field_8cb9614\"><div class=\"elementor-g-recaptcha\" data-sitekey=\"6LcbdOArAAAAACv7zLGVRu312tWBIbfYHI8jzyQW\" data-type=\"v3\" data-action=\"Form\" data-badge=\"bottomright\" data-size=\"invisible\"><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"16\" height=\"12\" viewbox=\"0 0 16 12\" fill=\"none\"><path d=\"M15.6491 6.18414C15.942 5.89125 15.942 5.41637 15.6491 5.12348L10.8761 0.350508C10.5832 0.0576143 10.1084 0.0576143 9.81547 0.350508C9.52258 0.643401 9.52258 1.11827 9.81547 1.41117L14.0581 5.65381L9.81547 9.89645C9.52258 10.1893 9.52258 10.6642 9.81547 10.9571C10.1084 11.25 10.5832 11.25 10.8761 10.9571L15.6491 6.18414ZM0 5.65381V6.40381H15.1188V5.65381V4.90381H0V5.65381Z\" fill=\"black\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">SEND MESSAGE<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<input type=\"hidden\" name=\"trp-form-language\" value=\"en\"\/><\/form>\n\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-8a93c49 e-flex e-con-boxed e-con e-parent\" data-id=\"8a93c49\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ab6d26 elementor-widget elementor-widget-html\" data-id=\"7ab6d26\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"floating-image\"><\/div>\r\n\r\n<style>\r\n.hover-area {\r\n  width: 100%;\r\n  position: relative;\r\n  z-index: 1;\r\n}\r\n\r\n#floating-image {\r\n  position: fixed;\r\n  pointer-events: none;\r\n  top: 0;\r\n  left: 0;\r\n  width: 400px;\r\n  height: 300px;\r\n  background-size: cover !important;\r\n  background-position: center !important;\r\n  background-repeat: no-repeat !important;\r\n  background-attachment: scroll !important;\r\n  opacity: 0;\r\n  transform: translate(-50%, -70%) rotate(0deg) scale(1);\r\n  transition: opacity 0.3s ease, transform 0.5s ease;\r\n  z-index: 9999;\r\n  border-radius: 8px;\r\n  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);\r\n  overflow: hidden;\r\n}\r\n\r\n.hover-area:hover p {\r\n  color: #111013 !important;\r\n  -webkit-text-stroke: 0.5px white;\r\n}\r\n<\/style>\r\n\r\n\r\n\r\n<script>\r\n  document.addEventListener(\"DOMContentLoaded\", () => {\r\n    const floating = document.getElementById(\"floating-image\");\r\n    const $floating = jQuery(floating);\r\n\r\n    const imageMap = {\r\n      overimageeffect1: \"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/img-3-consultoria_1.jpg\",\r\n      overimageeffect2: \"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/servicios-portadas-4_1.jpg\",\r\n      overimageeffect3: \"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-contenido.jpg\",\r\n      overimageeffect4: \"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/portada-redes-sociales-1.jpg\",\r\n      overimageeffect5: \"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/09\/servicios-portadas-2_1.jpg\"\r\n    };\r\n\r\n    Object.keys(imageMap).forEach(id => {\r\n      const el = document.getElementById(id);\r\n      if (!el) return;\r\n\r\n      el.addEventListener(\"mouseenter\", () => {\r\n        const imageUrl = imageMap[id];\r\n\r\n        \/\/ Aplicar background con !important\r\n        floating.style.setProperty('background-image', `url(${imageUrl})`, 'important');\r\n\r\n        \/\/ Destruir efecto previo si exist\u00eda\r\n        try { $floating.ripples('destroy'); } catch(e) {}\r\n\r\n        \/\/ Activar efecto de agua\r\n        $floating.ripples({\r\n          resolution: 256,\r\n          perturbance: 0.02,\r\n          interactive: false\r\n        });\r\n\r\n        \/\/ Mostrar el bloque flotante\r\n        floating.style.opacity = \"1\";\r\n        floating.style.transition = \"none\";\r\n        floating.style.transform = \"translate(-50%, -70%) rotate(-18deg) scale(0.95)\";\r\n        void floating.offsetWidth;\r\n        floating.style.transition = \"opacity 0.3s ease, transform 1.5s ease\";\r\n        floating.style.transform = \"translate(-50%, -70%) rotate(0deg) scale(1)\";\r\n      });\r\n\r\n      el.addEventListener(\"mousemove\", (e) => {\r\n        floating.style.top = `${e.clientY + 20}px`;\r\n        floating.style.left = `${e.clientX}px`;\r\n      });\r\n\r\n      el.addEventListener(\"mouseleave\", () => {\r\n        floating.style.opacity = \"0\";\r\n        try { $floating.ripples('destroy'); } catch(e) {}\r\n      });\r\n    });\r\n  });\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4843650 elementor-widget elementor-widget-tp-smooth-scroll\" data-id=\"4843650\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tp-smooth-scroll.default\">\n\t\t\t\t\t<div class=\"plus-smooth-scroll\" data-scroll-type=\"basic\" data-framerate=\"150\" data-animationtime=\"1000\" data-stepsize=\"100\" data-pulsealgorithm=\"1\" data-pulsescale=\"4\" data-pulsenormalize=\"1\" data-accelerationdelta=\"50\" data-accelerationmax=\"3\" data-keyboardsupport=\"1\" data-arrowscroll=\"50\" data-touchpadsupport=\"0\" data-fixedbackground=\"1\" data-basicdata=\"{&quot;Browsers&quot;:[&quot;ieWin7&quot;,&quot;chrome&quot;,&quot;firefox&quot;,&quot;safari&quot;]}\"   data-tablet-off=\"&quot;no&quot;\" ><script>var smoothAllowedBrowsers = [\"ieWin7\",\"chrome\",\"firefox\",\"safari\"]<\/script><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>rubita studio Playful minds, professional voices &nbsp; SOBRE RUBITA STUDIO Estrategia \u00a0 Branding \u00a0 Contenido \u00a0 Redes sociales \u00a0 Producci\u00f3n Proyectos realizados EPOS CINE VER M\u00c1S Miranda Bosch Real Estate VER M\u00c1S TERSUS WINES VER M\u00c1S FALCON PROPERTIES VER M\u00c1S Florencia Masri VER M\u00c1S Diana Montoya VER M\u00c1S EPOS CINE VER M\u00c1S Miranda Bosch Real [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-49","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Inicio - Rubita<\/title>\n<meta name=\"description\" content=\"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rubitastudio.com\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inicio - Rubita\" \/>\n<meta property=\"og:description\" content=\"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rubitastudio.com\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Rubita\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-09T10:05:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/10\/Foto-de-Perfil-1-scaled.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"2560\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/\",\"url\":\"https:\\\/\\\/rubitastudio.com\\\/\",\"name\":\"Inicio - Rubita\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/rubitastudio.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/Ellipse23.png\",\"datePublished\":\"2025-08-05T19:09:17+00:00\",\"dateModified\":\"2025-10-09T10:05:00+00:00\",\"description\":\"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rubitastudio.com\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#primaryimage\",\"url\":\"https:\\\/\\\/rubitastudio.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/Ellipse23.png\",\"contentUrl\":\"https:\\\/\\\/rubitastudio.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/Ellipse23.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/rubitastudio.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Inicio\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#website\",\"url\":\"https:\\\/\\\/rubitastudio.com\\\/\",\"name\":\"Rubita\",\"description\":\"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica\",\"publisher\":{\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/rubitastudio.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#organization\",\"name\":\"Rubita\",\"url\":\"https:\\\/\\\/rubitastudio.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/rubitastudio.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/rubita-studio.svg\",\"contentUrl\":\"https:\\\/\\\/rubitastudio.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/rubita-studio.svg\",\"width\":505,\"height\":68,\"caption\":\"Rubita\"},\"image\":{\"@id\":\"https:\\\/\\\/rubitastudio.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inicio - Rubita","description":"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica","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:\/\/rubitastudio.com\/en\/","og_locale":"en_US","og_type":"article","og_title":"Inicio - Rubita","og_description":"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica","og_url":"https:\/\/rubitastudio.com\/en\/","og_site_name":"Rubita","article_modified_time":"2025-10-09T10:05:00+00:00","og_image":[{"width":2560,"height":2560,"url":"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/10\/Foto-de-Perfil-1-scaled.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/rubitastudio.com\/","url":"https:\/\/rubitastudio.com\/","name":"Inicio - Rubita","isPartOf":{"@id":"https:\/\/rubitastudio.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rubitastudio.com\/#primaryimage"},"image":{"@id":"https:\/\/rubitastudio.com\/#primaryimage"},"thumbnailUrl":"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse23.png","datePublished":"2025-08-05T19:09:17+00:00","dateModified":"2025-10-09T10:05:00+00:00","description":"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica","breadcrumb":{"@id":"https:\/\/rubitastudio.com\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rubitastudio.com\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rubitastudio.com\/#primaryimage","url":"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse23.png","contentUrl":"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/Ellipse23.png"},{"@type":"BreadcrumbList","@id":"https:\/\/rubitastudio.com\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rubitastudio.com\/"},{"@type":"ListItem","position":2,"name":"Inicio"}]},{"@type":"WebSite","@id":"https:\/\/rubitastudio.com\/#website","url":"https:\/\/rubitastudio.com\/","name":"Rubita","description":"Estudio creativo de comunicaci\u00f3n estrat\u00e9gica","publisher":{"@id":"https:\/\/rubitastudio.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rubitastudio.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rubitastudio.com\/#organization","name":"Rubita","url":"https:\/\/rubitastudio.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rubitastudio.com\/#\/schema\/logo\/image\/","url":"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/rubita-studio.svg","contentUrl":"https:\/\/rubitastudio.com\/wp-content\/uploads\/2025\/08\/rubita-studio.svg","width":505,"height":68,"caption":"Rubita"},"image":{"@id":"https:\/\/rubitastudio.com\/#\/schema\/logo\/image\/"}}]}},"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"_links":{"self":[{"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/pages\/49","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/comments?post=49"}],"version-history":[{"count":580,"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/pages\/49\/revisions"}],"predecessor-version":[{"id":2624,"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/pages\/49\/revisions\/2624"}],"wp:attachment":[{"href":"https:\/\/rubitastudio.com\/en\/wp-json\/wp\/v2\/media?parent=49"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}