{"id":7983,"date":"2025-11-20T10:58:56","date_gmt":"2025-11-20T09:58:56","guid":{"rendered":"https:\/\/ds4mmed.uv.es\/?page_id=7983"},"modified":"2026-04-02T15:37:59","modified_gmt":"2026-04-02T13:37:59","slug":"about-us","status":"publish","type":"page","link":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/","title":{"rendered":"About us"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"7983\" class=\"elementor elementor-7983\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9986941 e-flex e-con-boxed e-con e-parent\" data-id=\"9986941\" 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-faf1f56 elementor-widget elementor-widget-html\" data-id=\"faf1f56\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<section id=\"about-us\" style=\"\r\n  position: relative;\r\n  width: 100%;\r\n  min-height: 100vh;\r\n  background: #ffffff;\r\n  padding: 6rem 4rem 6rem 4rem;\r\n  font-family: 'Raleway', sans-serif;\r\n  overflow: hidden;\r\n  display: flex;\r\n  flex-direction: column;\r\n  align-items: center;\r\n  justify-content: center;\r\n\">\r\n  <canvas id=\"particles-canvas\" style=\"\r\n    position: absolute;\r\n    top: 0; left: 0; width: 100%; height: 100%;\r\n    z-index: 0;\r\n  \"><\/canvas>\r\n\r\n  <div style=\"position: relative; z-index: 1; max-width: 1000px; text-align: justify; color: #333; flex: 1; display: flex; flex-direction: column; justify-content: center;\">\r\n    \r\n    <h2 style=\"\r\n      font-size: 3rem;\r\n      font-weight: 700;\r\n      color: #092238;\r\n      text-align: center;\r\n      margin-bottom: 2rem;\r\n    \">\r\n      About the DS4M Mediterr\u00e1neo Project\r\n    <\/h2>\r\n\r\n    <p style=\"\r\n      font-size: 1.2rem;\r\n      line-height: 1.9;\r\n      margin-bottom: 1.8rem;\r\n    \">\r\n      <strong>DS4M Mediterr\u00e1neo<\/strong> (Data Space for Mobility) is an initiative promoted by the Ministry for Digital Transformation and Public Function and funded by the European Union through Next Generation EU funds, under the framework of the Sectoral Data Spaces Promotion Plan. This project is led by the <a href=\"https:\/\/www.uv.es\/uvweb\/instituto-universitario-investigacion-transito-seguridad-vial-INTRAS\/es\/instituto-universitario-investigacion-transito-seguridad-vial-1285892783720.html\" target=\"_blank\" class=\"link-bold\"><strong>Instituto Universitario de Investigaci\u00f3n de Tr\u00e1fico y Seguridad Vial (INTRAS)<\/strong><\/a> and also involves collaboration with other research centers of the University of Valencia, such as the <a href=\"https:\/\/www.uv.es\/uvweb\/instituto-universitario-investigacion-robotica-tecnologias-informacion-comunicacion-IRTIC\/es\/instituto-universitario-investigacion-robotica-tecnologias-informacion-comunicaciones-irtic-1285895240418.html\" target=\"_blank\" class=\"link-bold\"><strong>Instituto Universitario de Investigaci\u00f3n de Rob\u00f3tica y Tecnolog\u00edas de la Informaci\u00f3n y la Comunicaci\u00f3n (IRTIC)<\/strong><\/a>, as well as support from important institutions like the <a href=\"https:\/\/itsspain.com\/\" target=\"_blank\" class=\"link-bold\"><strong>Sistemas Inteligentes de Transporte (ITS Spain)<\/strong><\/a>.\r\n    <\/p>\r\n\r\n    <p style=\"\r\n      font-size: 1.2rem;\r\n      line-height: 1.9;\r\n      margin-bottom: 1.8rem;\r\n    \">\r\n      The main objective of this project is the creation of a <strong>Mobility Data Space in the Mediterranean Corridor<\/strong> to improve sustainable mobility (connected, efficient, safe, inclusive, and responsible), facilitate and support the development of Access Points, and promote strategic digital autonomy and data quality.\r\n    <\/p>\r\n\r\n  <\/div>\r\n\r\n  <div style=\"\r\n    position: absolute;\r\n    bottom: 0;\r\n    left: 50%;\r\n    transform: translateX(-50%);\r\n    width: 150px;\r\n    height: 4px;\r\n    background-color: #092238;\r\n    border-radius: 2px;\r\n    z-index: 1;\r\n  \"><\/div>\r\n<\/section>\r\n\r\n<style>\r\n.link-bold, .link-bold strong {\r\n  color: #092238 !important;\r\n  font-weight: 700;\r\n  text-decoration: none !important;\r\n  transition: text-decoration 0.2s, color 0.2s;\r\n}\r\n\r\n.link-bold:hover, .link-bold:hover strong {\r\n  text-decoration: underline !important;\r\n  color: #0056b3 !important;\r\n}\r\n<\/style>\r\n\r\n<script>\r\nconst canvas = document.getElementById('particles-canvas');\r\nconst ctx = canvas.getContext('2d');\r\nlet particlesArr = [];\r\nconst particlesCount = 60;\r\n\r\nfunction resizeCanvas() {\r\n  const dpr = window.devicePixelRatio || 1;\r\n  const rect = canvas.getBoundingClientRect();\r\n  canvas.width = rect.width * dpr;\r\n  canvas.height = rect.height * dpr;\r\n  ctx.scale(dpr, dpr);\r\n}\r\n\r\nclass Particle {\r\n  constructor(){\r\n    const rect = canvas.getBoundingClientRect();\r\n    this.x = Math.random() * rect.width;\r\n    this.y = Math.random() * rect.height;\r\n    this.size = Math.random() * 3 + 1;\r\n    this.vx = (Math.random() - 0.5) * 0.8;\r\n    this.vy = (Math.random() - 0.5) * 0.8;\r\n    this.color = 'rgba(0,178,255,0.6)';\r\n  }\r\n  update(rect){\r\n    this.x += this.vx;\r\n    this.y += this.vy;\r\n    if(this.x < 0 || this.x > rect.width) this.vx *= -1;\r\n    if(this.y < 0 || this.y > rect.height) this.vy *= -1;\r\n  }\r\n  draw(){\r\n    ctx.beginPath();\r\n    ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);\r\n    ctx.fillStyle = this.color;\r\n    ctx.fill();\r\n  }\r\n}\r\n\r\nfunction init(){\r\n  particlesArr = [];\r\n  const rect = canvas.getBoundingClientRect();\r\n  for(let i = 0; i < particlesCount; i++){\r\n    particlesArr.push(new Particle());\r\n  }\r\n}\r\n\r\nfunction connect(){\r\n  const rect = canvas.getBoundingClientRect();\r\n  for(let a=0;a<particlesArr.length;a++){\r\n    for(let b=a; b<particlesArr.length; b++){\r\n      const dx = particlesArr[a].x - particlesArr[b].x;\r\n      const dy = particlesArr[a].y - particlesArr[b].y;\r\n      const dist = Math.hypot(dx, dy);\r\n      if(dist < 120){\r\n        ctx.strokeStyle = 'rgba(0,178,255,0.2)';\r\n        ctx.lineWidth = 1;\r\n        ctx.beginPath();\r\n        ctx.moveTo(particlesArr[a].x, particlesArr[a].y);\r\n        ctx.lineTo(particlesArr[b].x, particlesArr[b].y);\r\n        ctx.stroke();\r\n      }\r\n    }\r\n  }\r\n}\r\n\r\nfunction animate(){\r\n  const rect = canvas.getBoundingClientRect();\r\n  ctx.clearRect(0, 0, rect.width, rect.height);\r\n  particlesArr.forEach(p => { p.update(rect); p.draw(); });\r\n  connect();\r\n  requestAnimationFrame(animate);\r\n}\r\n\r\nwindow.addEventListener('resize', () => {\r\n  resizeCanvas();\r\n  init();\r\n});\r\n\r\nresizeCanvas();\r\ninit();\r\nanimate();\r\n<\/script>\r\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-a67d71b e-flex e-con-boxed e-con e-parent\" data-id=\"a67d71b\" 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-2916d02 elementor-widget elementor-widget-menu-anchor\" data-id=\"2916d02\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"entities\"><\/div>\n\t\t\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-f8d05f6 e-flex e-con-boxed e-con e-parent\" data-id=\"f8d05f6\" 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-0125f2c elementor-widget elementor-widget-html\" data-id=\"0125f2c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<section class=\"epic-entidades\" aria-labelledby=\"epic-entidades-title\" style=\"--accent:#6ee7b7;\">\r\n  <style>\r\n    :root{ --bg1:#ffffff; --bg2:#f9fafb; --card:#ffffff; --text-main: #092238; --text-light: #4b5563; }\r\n\r\n    .epic-entidades{\r\n      padding: 3.5rem 1rem;\r\n      background: linear-gradient(160deg,var(--bg1),var(--bg2));\r\n      color: #111827;\r\n      font-family: 'Raleway', sans-serif;\r\n    }\r\n\r\n    .epic-entidades h2{\r\n      text-align: center;\r\n      font-weight: 700;\r\n      color: var(--text-main);\r\n      font-size: clamp(2rem,3vw,2.8rem);\r\n      margin-bottom: 3rem;\r\n    }\r\n\r\n    .entities-grid{\r\n      max-width: 1400px;\r\n      margin: 0 auto;\r\n      display: grid;\r\n      grid-template-columns: repeat(4, 1fr); \r\n      gap: 1.5rem;\r\n    }\r\n\r\n    @media (max-width: 1200px) {\r\n      .entities-grid {\r\n        grid-template-columns: repeat(4, 1fr);\r\n      }\r\n    }\r\n\r\n    @media (max-width: 900px) {\r\n      .entities-grid {\r\n        grid-template-columns: repeat(2, 1fr);\r\n      }\r\n    }\r\n\r\n    @media (max-width: 600px) {\r\n      .entities-grid {\r\n        grid-template-columns: 1fr;\r\n      }\r\n    }\r\n\r\n    .entity {\r\n      position: relative;\r\n      background: #fff;\r\n      border-radius: 12px;\r\n      box-shadow: 0 4px 15px rgba(0,0,0,0.05);\r\n      overflow: hidden;\r\n      height: 260px; \r\n      display: flex;\r\n      align-items: center;\r\n      justify-content: center;\r\n      transition: box-shadow 0.3s ease;\r\n    }\r\n\r\n    .entity:hover{\r\n      box-shadow: 0 10px 30px rgba(0,0,0,0.15);\r\n    }\r\n\r\n    .logo-wrapper{\r\n      padding: 1.5rem;\r\n      width: 100%;\r\n      height: 100%;\r\n      display: flex;\r\n      align-items: center;\r\n      justify-content: center;\r\n      transition: transform 0.4s ease, opacity 0.4s ease;\r\n    }\r\n\r\n    .entity img {\r\n      width: 80%;\r\n      height: 140px;\r\n      object-fit: contain; \r\n      display: block;\r\n    }\r\n\r\n    .entity:hover .logo-wrapper{\r\n      opacity: 0.1;\r\n      transform: scale(0.9);\r\n    }\r\n\r\n    .entity-info {\r\n      position: absolute;\r\n      top: 0;\r\n      left: 0;\r\n      width: 100%;\r\n      height: 100%;\r\n      background: rgba(255, 255, 255, 0.98);\r\n      padding: 1rem;\r\n      display: flex;\r\n      flex-direction: column;\r\n      justify-content: center;\r\n      align-items: center;\r\n      text-align: center;\r\n      opacity: 0;\r\n      transform: translateY(20px);\r\n      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);\r\n      pointer-events: none;\r\n    }\r\n\r\n    .entity:hover .entity-info {\r\n      opacity: 1;\r\n      transform: translateY(0);\r\n      pointer-events: all;\r\n    }\r\n\r\n    .entity-info h3 {\r\n      font-size: 0.95rem;\r\n      font-weight: 700;\r\n      color: var(--text-main);\r\n      margin: 0 0 0.5rem 0;\r\n      line-height: 1.2;\r\n    }\r\n\r\n    .entity-info p {\r\n      font-size: 0.75rem;\r\n      color: var(--text-light);\r\n      margin-bottom: 0.8rem;\r\n      line-height: 1.4;\r\n      display: -webkit-box;\r\n      -webkit-line-clamp: 5;\r\n      -webkit-box-orient: vertical;\r\n      overflow: hidden;\r\n    }\r\n\r\n    .btn-visit {\r\n      display: inline-block;\r\n      padding: 0.4rem 1rem;\r\n      background-color: var(--text-main);\r\n      color: #fff;\r\n      text-decoration: none !important;\r\n      font-size: 0.75rem;\r\n      font-weight: 600;\r\n      border-radius: 50px;\r\n      transition: all 0.3s ease;\r\n    }\r\n    \r\n    .btn-visit:hover {\r\n      background-color: white;\r\n      color: var(--text-main);\r\n      text-decoration: underline;\r\n    }\r\n\r\n    .group-title {\r\n      grid-column: 1 \/ -1;\r\n      margin-bottom: 2rem;\r\n    }\r\n\r\n    .group-title h2 {\r\n      text-align: center;\r\n      font-weight: 700;\r\n      color: var(--text-main);\r\n      font-size: clamp(1.5rem, 2vw, 2rem);\r\n      margin: 0;\r\n      border-bottom: 2px solid var(--accent);\r\n      padding-bottom: 0.5rem;\r\n    }\r\n\r\n  <\/style>\r\n\r\n  <div class=\"wrap\">\r\n    <h2 id=\"epic-entidades-title\">Entities that have joined<\/h2>\r\n\r\n    <div class=\"search-container\">\r\n      <input type=\"text\" id=\"search-input\" placeholder=\"Search entities...\" style=\"width: 100%; padding: 0.5rem; border: 1px solid #ccc; border-radius: 5px; font-size: 1rem;\">\r\n    <\/div>\r\n\r\n    <div id=\"entities-grid\" class=\"entities-grid\"><\/div>\r\n\r\n  <\/div>\r\n\r\n  <script>\r\n   const entidades = [\r\n       {\r\n          nombre: \"BONAI\",\r\n          tipo: \"privadas\",\r\n          img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/BONAI.png\",\r\n          desc: \"Strategic consultancy specialized in the integration of Generative Artificial Intelligence and intelligent automation to optimize business processes.\",\r\n          url: \"https:\/\/bonaimad.com\/\"\r\n        },\r\n       {\r\n          nombre: \"Rowiko\",\r\n          tipo: \"privadas\",\r\n          img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/logo_ROWIKO.png\",\r\n          desc: \"Engineering firm specialized in the technical inspection of racking and storage systems, ensuring safety in industrial warehouses.\",\r\n          url: \"https:\/\/rowiko.com\/\"\r\n        },\r\n       {\r\n          nombre: \"Foncad Group\",\r\n          tipo: \"privadas\",\r\n          img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/FoncadGroup.png\",\r\n          desc: \"Business group specialized in integrated installations, industrial maintenance, and energy efficiency solutions for large-scale infrastructures.\",\r\n          url: \"https:\/\/www.foncad-group.com\/\"\r\n        },\r\n       {\r\n          nombre: \"QuantumDrive\",\r\n          tipo: \"privadas\",\r\n          img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/QuantumDrive-scaled.png\",\r\n          desc: \"Company specialized in developing advanced charging infrastructure solutions and energy management for electric vehicles.\",\r\n          url: \"https:\/\/www.quantumdriveev.com\/\"\r\n        },\r\n       {\r\n        nombre: \"ALFmabi\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Logo_ALF_mabi_version_original_w1200px.webp\",\r\n        desc: \"Engineering firm specialized in technological solutions for smart water management, remote reading, and energy efficiency.\",\r\n        url: \"https:\/\/www.alfmabi.com\/\"\r\n      },\r\n      {\r\n        nombre: \"GRUPO GBL\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/GRUPO_GBL.png\",\r\n        desc: \"Business group dedicated to providing comprehensive logistics services, consultancy, and operational solutions for companies.\",\r\n        url: \"\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Val\u00e8ncia\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Ajuntament-de-Valencia.png\",\r\n        desc: \"Institution responsible for the government and administration of the city of Valencia, driving urban innovation and sustainability.\",\r\n        url: \"https:\/\/www.valencia.es\/cas\/inicio\"\r\n      },\r\n      {\r\n        nombre: \"Wardado\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/1.-Wardado_logo_verde_high.png\",\r\n        desc: \"Digital platform specialized in the smart management and custody of items, providing secure storage solutions.\",\r\n        url: \"https:\/\/wardado.com\/\"\r\n      },\r\n       {\r\n          nombre: \"Go Zero Waste\",\r\n          tipo: \"privadas\",\r\n          img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Go_Zero_Waste.png\",\r\n          desc: \"Technology company driving the circular economy through digital solutions to facilitate zero-waste consumption and sustainable management.\",\r\n          url: \"https:\/\/gozerowaste.es\/\"\r\n        },\r\n       {\r\n              nombre: \"Ayuntamiento de Puerto Real\",\r\n              tipo: \"ayuntamientos\",\r\n              isAyuntamiento: true,\r\n              img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/logo-puertoreal-300x94-2.png\",\r\n              desc: \"Institution responsible for the government and administration of the municipality of Puerto Real, C\u00e1diz, focused on local development and sustainability.\",\r\n              url: \"https:\/\/puertoreal.es\/\"\r\n            },\r\n       {\r\n          nombre: \"Cetery\",\r\n          tipo: \"privadas\",\r\n          img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/cetery-og.png\",\r\n          desc: \"Technology consultancy and development company specialized in digital transformation and critical infrastructure optimization.\",\r\n          url: \"https:\/\/www.cetery.com\/\"\r\n        },\r\n       {\r\n        nombre: \"APEC Educaci\u00f3n\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/LOGO_APEC_educacion.png\",\r\n        desc: \"Training center specialized in professional development programs, vocational certificates, and employment-focused training.\",\r\n        url: \"https:\/\/www.apeceducacion.com\/\"\r\n      },\r\n      {\r\n        nombre: \"ATFORMA\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/LOGO_ATFORMA.png\",\r\n        desc: \"Comprehensive training consultancy managing technical education plans and skills development for the business sector.\",\r\n        url: \"https:\/\/atforma.gestiondeformacion.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Capmar Systems\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/CAPMAR-SYSTEMS-LOGO-scaled.png\",\r\n        desc: \"Experts in smart urban furniture engineering and dynamic solar-powered information systems for cities.\",\r\n        url: \"https:\/\/www.capmarsystems.com\/en\/\"\r\n      },\r\n      {\r\n        nombre: \"CUENDE\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/CUENDE.png\",\r\n        desc: \"Leading technology company in Out-of-Home advertising audience measurement using advanced geolocation and computer vision.\",\r\n        url: \"https:\/\/cuende.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Encomenda\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/LOGO_Encomenda.png\",\r\n        desc: \"Venture Capital firm investing in seed-stage technology startups, providing both capital and strategic management support.\",\r\n        url: \"https:\/\/encomenda.com\/\"\r\n      },\r\n      {\r\n        nombre: \"FTF - Foro T\u00e9cnico de Formaci\u00f3n\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/LOGO_FTF-ForoTecnicoDeFormacion.png\",\r\n        desc: \"Organization dedicated to vocational training and technical consultancy, specialized in talent development and tailored training plans.\",\r\n        url: \"https:\/\/forotf.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Leco Formaci\u00f3n\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Logo_LecoFormacion.png\",\r\n        desc: \"Technical consultancy specialized in environmental health, Legionella prevention, and hygienic-sanitary training for professionals.\",\r\n        url: \"https:\/\/www.legionellaconsulting.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Mottum\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Logo-Mottum-oscuro-fondo-transp-512w.png\",\r\n        desc: \"Electric mobility services platform facilitating the transition to sustainable transport through charging solutions and consultancy.\",\r\n        url: \"https:\/\/mottum.es\/\"\r\n      },\r\n      {\r\n        nombre: \"SOFTLED\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/LOGO_SOFTLED.png\",\r\n        desc: \"Company dedicated to manufacturing and installing high-tech LED screens for digital signage, events, and visual communication.\",\r\n        url: \"https:\/\/www.softled.es\/\"\r\n      },\r\n       {\r\n        nombre: \"Asociaci\u00f3n OpenStreetMap Espa\u00f1a\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/OpenStreetMap_Logo-1.png\",\r\n        desc: \"Organization promoting the use of free and collaborative geographic data to improve digital mapping and territorial knowledge.\",\r\n        url: \"https:\/\/www.openstreetmap.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Adaral\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Logo_Adaral.png\",\r\n        desc: \"Consultancy specialized in the digital transformation of industrial and logistics processes through advanced technological solutions.\",\r\n        url: \"https:\/\/adaral.com\/\"\r\n      },\r\n       {\r\n        nombre: \"Fivecomm\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Fivecomm.png\",\r\n        desc: \"Expert company in 5G connectivity applied to industry, robotics, and mobility, developing low-latency solutions for critical environments.\",\r\n        url: \"https:\/\/fivecomm.eu\/\"\r\n      },\r\n       {\r\n        nombre: \"Efficient Industrial Design\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/EID-Logo-1.png\",\r\n        desc: \"Industrial engineering and design specialists focused on process optimization and the development of efficient and sustainable machinery.\",\r\n        url: \"\"\r\n      },\r\n      {\r\n        nombre: \"AquaReturn\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/AquaReturn.png\",\r\n        desc: \"Innovative water and energy-saving technology using smart recirculation systems to prevent waste in the home.\",\r\n        url: \"https:\/\/aquareturn.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Atogo\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Atogo-Logo.png\",\r\n        desc: \"Smart mobility solutions and personalized transport services focused on urban efficiency and user experience.\",\r\n        url: \"https:\/\/atogo.es\/\"\r\n      },\r\n      {\r\n        nombre: \"DoYouBike\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Doyoubike_logo.png\",\r\n        desc: \"Cycling mobility reference in Valencia, specialized in rental, sales, and guided tours to promote sustainable transport.\",\r\n        url: \"https:\/\/www.doyoubike.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Equanimity Energy\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Equanimity_Energy.png\",\r\n        desc: \"Energy consultancy dedicated to the development of renewable energy projects and consumption optimization.\",\r\n        url: \"https:\/\/equanimity.energy\/\"\r\n      },\r\n      {\r\n        nombre: \"GRECOTEX\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/GRECOTEX-logo-2.png\",\r\n        desc: \"Textile Sector Trade Guild that boosts competitiveness, innovation, and digitalization of specialized trade.\",\r\n        url: \"https:\/\/grecotex.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Zebra Ventures\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Zebra-Ventures.png\",\r\n        desc: \"Venture builder that drives high-impact technological startups to solve global challenges through disruptive innovation.\",\r\n        url: \"https:\/\/zebraventures.eu\/\"\r\n      },\r\n      {\r\n        nombre: \"Sertrans\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/sertrans.png\",\r\n        desc: \"International logistics operator specialized in road transport and integrated supply chain management in Europe.\",\r\n        url: \"https:\/\/www.sertrans.es\/\"\r\n      },\r\n      {\r\n        nombre: \"World Wide Mobility\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/WWM-scaled.png\",\r\n        desc: \"Technology company that develops advanced shared mobility platforms and digital transport solutions.\",\r\n        url: \"https:\/\/worldwidemobility.io\/\"\r\n      },\r\n      {\r\n        nombre: \"Pavapark\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo-PAVAPARK-marca.png\",\r\n        desc: \"Pavasal group company specialized in urban mobility management, parking operation, and development of technological solutions for Smart Cities.\",\r\n        url: \"https:\/\/www.pavapark.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Nunsys\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Logo-Nunsys.png\",\r\n        desc: \"Technology company specialized in the implementation of comprehensive digitalization, cybersecurity, systems, software, and communications solutions for public and private organizations.\",\r\n        url: \"https:\/\/www.nunsys.com\/\"\r\n      },\r\n      {\r\n        nombre: \"B-libe\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/be-libe.png\",\r\n        desc: \"Valencian facility services company offering cleaning, maintenance, and comprehensive facility management for companies, institutions, offices, and buildings, optimizing operations and costs.\",\r\n        url: \"https:\/\/b-libe.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Parc Cient\u00edfic de la UV\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_PCUV.png\",\r\n        desc: \"Innovation ecosystem that connects university research with the business environment, boosting knowledge transfer and the growth of technology-based companies.\",\r\n        url: \"https:\/\/www.pcuv.es\/es\/home\"\r\n      },\r\n      {\r\n        nombre: \"Vicky Foods\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/VICKY_foods_logo.png\",\r\n        desc: \"Spanish food company specialized in the production and marketing of frozen products, pastries, and ready meals for mass consumption.\",\r\n        url: \"https:\/\/www.vickyfoods.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Umivale Activa\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/logo-umivale-activa-suma.png\",\r\n        desc: \"Mutual society collaborating with the Social Security that manages occupational health, risk prevention, and care for work accidents and occupational diseases.\",\r\n        url: \"https:\/\/umivaleactiva.es\/\"\r\n      },\r\n      {\r\n        nombre: \"AZA Logistics\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/AZA.png\",\r\n        desc: \"Spanish logistics operator offering storage, stock management, order preparation, and distribution services for companies, with traceability systems and solutions for B2B, B2C, and e-commerce channels.\",\r\n        url: \"https:\/\/www.azalogistics.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Gastraval\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/GASTRAVAL.png\",\r\n        desc: \"Annual gastronomic fair in the province of Valencia that brings together producers, chefs, restaurants, and fans to promote local cuisine and quality food products.\",\r\n        url: \"https:\/\/gastraval.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Asociaci\u00f3n Espa\u00f1ola de Startups\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/AES-LOGO-scaled.png\",\r\n        desc: \"Organization that groups and represents startups in Spain, boosting technological entrepreneurship and defending the interests of the entrepreneurial ecosystem.\",\r\n        url: \"https:\/\/asociacionstartups.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Foro de Log\u00edstica\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/FDL_alta-scaled.png\",\r\n        desc: \"Platform and professional community dedicated to debate, dissemination, and exchange of knowledge on logistics, transport, and supply chain among companies and experts.\",\r\n        url: \"https:\/\/forodelogistica.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Logistop\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/logo2025-verde-logistop.png\",\r\n        desc: \"Spanish Technological Platform for Integral Logistics, Intermodality, and Mobility, oriented towards R&D&I in supply chain management.\",\r\n        url: \"https:\/\/logistop.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Global Tech Strategies\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/GlobalTech.png\",\r\n        desc: \"Company specialized in advanced technological solutions, strategic consultancy, and development of digital platforms for process optimization.\",\r\n        url: \"https:\/\/gts-sp.com\/\"\r\n      },\r\n      {\r\n        nombre: \"RACC\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/LogoRACC.png\",\r\n        desc: \"Mobility services club founded in Barcelona that offers assistance, insurance, and support to drivers and travelers, and promotes safer and more sustainable mobility for millions of people.\",\r\n        url: \"https:\/\/www.racc.es\/\"\r\n      },\r\n      {\r\n        nombre: \"iRAP\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/iRAP-logo.png\",\r\n        desc: \"International charity dedicated to saving lives by eliminating high-risk roads worldwide.\",\r\n        url: \"https:\/\/irap.org\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"AENOR\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/aenor_logo.png\",\r\n        desc: \"Spanish entity that develops standards and certifies the quality, safety, and sustainability of companies and products.\",\r\n        url: \"https:\/\/www.aenor.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Grupo Etra\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/logotipo-Etra.png\",\r\n        desc: \"Technological business group that develops and integrates advanced solutions in mobility, traffic, transport, lighting, energy, security, and communications for infrastructures and smart cities.\",\r\n        url: \"https:\/\/www.grupoetra.com\/\"\r\n      },\r\n      {\r\n        nombre: \"AJEV (Asociaci\u00f3n de J\u00f3venes Empresarios de Valencia)\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/ajev.webp\",\r\n        desc: \"Association of Young Entrepreneurs of Valencia that boosts and supports entrepreneurs and young companies through networking, training, events, and business consolidation programs.\",\r\n        url: \"https:\/\/ajevalencia.org\/\"\r\n      },\r\n      {\r\n        nombre: \"ICTIC\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/logo_ICTIC.png\",\r\n        desc: \"Institute of Creativity and Technological Innovation that promotes research, development, and application of creative, digital, and emerging technologies in projects and companies.\",\r\n        url: \"http:\/\/www.ictic.es\/\"\r\n      },\r\n      {\r\n        nombre: \"COCEMFE CV\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/logo-cocemfe-cv.png\",\r\n        desc: \"Non-profit organization that works for the defense of rights, improvement of quality of life, and inclusion in the Valencian Community.\",\r\n        url: \"https:\/\/www.cocemfe.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Impulsa Igualdad\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/ImpulsaIgualdad.png\",\r\n        desc: \"Organization that works for the inclusion and rights of people with physical and organic disabilities.\",\r\n        url: \"https:\/\/www.impulsaigualdad.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Asociaci\u00f3n Empresarial para el Desarrollo e Impulso del Veh\u00edculo El\u00e9ctrico\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/AEDIVE.png\",\r\n        desc: \"Spanish business association that promotes and represents the electric mobility sector and charging infrastructure.\",\r\n        url: \"https:\/\/aedive.es\/\"\r\n      },\r\n      {\r\n        nombre: \"BLACKCAPE\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/LOGO-BLACKCAPE-scaled.png\",\r\n        desc: \"Valencian men's fashion brand specialized in garments and accessories of timeless style.\",\r\n        url: \"https:\/\/www.blackcape.es\/index.php?id_lang=1\"\r\n      },\r\n      {\r\n        nombre: \"FEMEVAL\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/logo_femeval.png\",\r\n        desc: \"Valencian Metal Business Federation, an organization that leads, represents, and defends the interests of companies in the metal-mechanical sector, trade, and metal sector services.\",\r\n        url: \"https:\/\/www.femeval.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Valmetal\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/LOGO_VALMETAL-2.png\",\r\n        desc: \"Innovative Business Grouping (Cluster) of the metal in the Valencian Community that fosters cooperation, technological innovation, and digital transformation in the sector.\",\r\n        url: \"https:\/\/www.valmetal.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Fongascal\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/logo-fongascal.png\",\r\n        desc: \"Company specialized in installations and maintenance of plumbing, gas, heating, and air conditioning, offering comprehensive energy efficiency and comfort solutions for both homes and businesses.\",\r\n        url: \"https:\/\/fongascalsl.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Evenergia\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/logo__Evenergia.png\",\r\n        desc: \"Company specialized in comprehensive energy management and electric mobility solutions, offering charging point installation, monitoring software, and renewable energy systems for companies and individuals.\",\r\n        url: \"https:\/\/www.evenergia.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Vehicle Testing Equipment\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/LOGO_VTEQ_2021_HD.png\",\r\n        desc: \"International leader in the design, manufacture, and development of equipment for Technical Vehicle Inspection (ITV), offering advanced technological solutions for road safety and automotive diagnostics.\",\r\n        url: \"https:\/\/vteq.es\/\"\r\n      },\r\n      {\r\n        nombre: \"DRYFING\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Imagotipo_Colores_dryfing-scaled.png\",\r\n        desc: \"Technology company dedicated to the design, manufacture, and commercialization of specialized machinery for washing, drying, and disinfecting sports equipment and wetsuits.\",\r\n        url: \"https:\/\/dryfing.com\/\"\r\n      },\r\n      {\r\n        nombre: \"DeepSense\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/LOGO-COLOR_2_deepsense-e1771320324837.png\",\r\n        desc: \"Technology company specialized in Artificial Intelligence and Deep Learning, dedicated to developing advanced computer vision and data analysis solutions to optimize industrial and urban processes.\",\r\n        url: \"https:\/\/deepsense.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Dirigent\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/Dirigent.png\",\r\n        desc: \"European organization specialized in innovative solutions for business management and leadership, providing digital tools.\",\r\n        url: \"https:\/\/drgnt.eu\/\"\r\n      },\r\n      {\r\n        nombre: \"Routal\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/routal.png\",\r\n        desc: \"SaaS platform that allows delivery and logistics companies to plan, optimize, and manage last-mile routes, improving operational efficiency and reducing costs.\",\r\n        url: \"https:\/\/www.routal.com\/\"\r\n      },\r\n      {\r\n        nombre: \"TicMoveo\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/imageonline-co-whitebackgroundremoved-scaled.png\",\r\n        desc: \"Technology consultancy dedicated to innovation in mobility and the development of intelligent transport systems.\",\r\n        url: \"https:\/\/www.ticmoveo.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Asociaci\u00f3n para el Desarollo de la Comunicaci\u00f3n\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Logo_adcomunica.png\",\r\n        desc: \"Non-profit association that promotes the development of communication and innovation in communication through activities, debates, events, and the dissemination of best practices in the sector.\",\r\n        url: \"https:\/\/adcomunica.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Automovilistas Europeos Asociados\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/LOGOTIPO-AEA.jpg\",\r\n        desc: \"Non-profit association that defends the rights of motorists, offering legal advice, fine management, roadside assistance, and information on road safety and traffic regulations.\",\r\n        url: \"https:\/\/aeaclub.org\/\"\r\n      },\r\n      {\r\n        nombre: \"\u00c1rea de Carreteras de la Diputaci\u00f3n de Valencia\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/diputacio-valencia-carreteres.png\",\r\n        desc: \"Public institution that governs and administers the province of Valencia, providing technical, legal, and economic assistance to town councils, especially the smallest ones.\",\r\n        url: \"https:\/\/www.dival.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Autoritat de Transport Metropolit\u00e1 de Val\u00e8ncia\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/ATMV_transparente.png\",\r\n        desc: \"Autonomous body of the Generalitat Valenciana responsible for the planning, management, coordination, and promotion of the public passenger transport system in the Metropolitan Area of Valencia.\",\r\n        url: \"https:\/\/atmv.gva.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Consorcio de Transporte Metropolitano del \u00c1rea de Sevilla\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/consorciotransporteareasevilla.png\",\r\n        desc: \"Public law entity that coordinates technical and administrative cooperation to jointly exercise competencies in regular passenger transport in the Seville area.\",\r\n        url: \"https:\/\/www.ctas.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de Murcia\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/ayuntamiento-murcia.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Murcia, located in the Huerta de Murcia region, in the province of Murcia.\",\r\n        url: \"https:\/\/www.murcia.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Benidorm\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/LOGOTIPO-AYTO-BENIDORM.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Benidorm, located in the Marina Baixa region, in the province of Alicante.\",\r\n        url: \"https:\/\/benidorm.org\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Reus\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Ajuntament-de-Reus.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Reus, located in the Baix Camp region, in the province of Tarragona.\",\r\n        url: \"https:\/\/www.reus.cat\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament d'Esplugues de Llobregat\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Ajuntament_Esplugues.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Esplugues de Llobregat, located in the Baix Llobregat region, in the province of Barcelona.\",\r\n        url: \"https:\/\/www.esplugues.cat\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Vila-real\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Diseno-sin-titulo-1.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Vila-real, located in the Plana Baixa region, in the province of Castell\u00f3n.\",\r\n        url: \"https:\/\/www.vila-real.es\/portal\/p_1_principal1.jsp?codResi=1&language=ca\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament d'Onda\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/AJUNTAMENT_ONDA_COLOR.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Onda, located in the Plana Baixa region, in the province of Castell\u00f3n.\",\r\n        url: \"https:\/\/www.onda.es\/ond\/web_php\/index.php\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament d'Atzeneta del Maestrat\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/atzeneta-del-maestrat.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Atzeneta del Maestrat, located in the Alt Maestrat region, in the province of Castell\u00f3n.\",\r\n        url: \"https:\/\/www.atzenetadelmaestrat.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Pedreguer\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/ajuntament_pedreguer.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Pedreguer, located in the Marina Alta region, in the province of Alicante.\",\r\n        url: \"https:\/\/pedreguer.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Loriguilla\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/logo-ayuntamiento-de-loriguilla.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Loriguilla, located in the Camp de T\u00faria region, in the province of Valencia.\",\r\n        url: \"https:\/\/www.loriguilla.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Quatretondeta\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Escudo_de_Quatretondeta.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Quatretondeta, located in the Comtat region, in the province of Alicante.\",\r\n        url: \"https:\/\/www.quatretondeta.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Rafelguaraf\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/AjuntamentRafelguaraf.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Rafelguaraf, located in the Ribera Alta region, in the province of Valencia.\",\r\n        url: \"https:\/\/www.rafelguaraf.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de Alcal\u00e1 del R\u00edo\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Ayuntamiento-de-Alcala-del-Rio.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Alcal\u00e1 del R\u00edo, located in the Vega del Guadalquivir region, in the province of Seville.\",\r\n        url: \"https:\/\/www.alcaladelrio.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Quart de Poblet\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/quart-de-poblet-logo.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Quart de Poblet, located in the Horta Sud region, in the province of Valencia.\",\r\n        url: \"https:\/\/quartdepoblet.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de La Palma del Condado\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/LOGOTIPOLAPALMADELCONDADO.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of La Palma del Condado, located in the El Condado region, in the province of Huelva.\",\r\n        url: \"https:\/\/www.lapalmadelcondado.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Mon\u00f2ver\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Escuts-Ajuntament_10-scaled.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Mon\u00f2ver, located in the Vinalop\u00f3 Mitj\u00e0 region, in the province of Alicante.\",\r\n        url: \"https:\/\/www.monovar.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de la Vall de Bo\u00ed\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/logoaj.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of la Vall de Bo\u00ed, located in the Alta Ribagor\u00e7a region, in the province of Lleida.\",\r\n        url: \"https:\/\/www.ajuntamentvalldeboi.cat\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de Encinas Reales\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/logo_ayto_encinas_reales.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Encinas Reales, located in the Subb\u00e9tica region, in the province of C\u00f3rdoba.\",\r\n        url: \"https:\/\/www.encinasreales.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de Salar\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/AyuntamientoSalar.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Salar, located in the Loja region, in the province of Granada.\",\r\n        url: \"https:\/\/salar.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de Grazalema\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/grazalema.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Grazalema, located in the Sierra de C\u00e1diz region, in the province of C\u00e1diz.\",\r\n        url: \"https:\/\/www.grazalema.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Verges\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/ajuntament_de_verges.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Verges, located in the Baix Empord\u00e0 region, in the province of Girona.\",\r\n        url: \"https:\/\/verges.cat\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Campdev\u00e0nol\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/logocampdevanolP.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Campdev\u00e0nol, located in the Ripoll\u00e8s region, in the province of Girona.\",\r\n        url: \"https:\/\/campdevanol.cat\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de Meng\u00edbar\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/Ayuntamiento_Mengibar.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Meng\u00edbar, located in the Campi\u00f1a de Ja\u00e9n region, in the province of Ja\u00e9n.\",\r\n        url: \"https:\/\/aytomengibar.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament d'Alfara del Patriarca\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/Alfara.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Alfara del Patriarca, located in the Horta Nord region, in the province of Valencia.\",\r\n        url: \"https:\/\/www.alfaradelpatriarca.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de Alm\u00f3cita\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Almocita.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Alm\u00f3cita, located in the Alpujarra Almeriense region, in the province of Almer\u00eda.\",\r\n        url: \"https:\/\/www.almocita.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ayuntamiento de C\u00fallar Vega\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/escudo-cullar-vega-transparente.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of C\u00fallar Vega, located in the Vega de Granada region, in the province of Granada.\",\r\n        url: \"https:\/\/www.cullarvega.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Fageca\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/ajuntament_facheca.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Fageca, located in the Comtat region, in the province of Alicante.\",\r\n        url: \"https:\/\/www.fageca.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ajuntament de Gandia\",\r\n        tipo: \"ayuntamientos\",\r\n        isAyuntamiento: true,\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo-Ajuntament-Gandia.png\",\r\n        desc: \"Institution responsible for the government and administration of the municipality of Gandia, located in the Safor region, in the province of Valencia.\",\r\n        url: \"https:\/\/www.gandia.es\/atg\/web_php\/index.php?lang=10\"\r\n      },\r\n      {\r\n        nombre: \"Mancomunitat Safor\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo_Mancomunitat_Safor.png\",\r\n        desc: \"Supramunicipal entity that groups the municipalities of the Safor region for the joint provision of public services and administrative management.\",\r\n        url: \"https:\/\/www.mancomunitat-safor.es\/\"\r\n      },\r\n      {\r\n        nombre: \"FAES Safor\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo_FAES.png\",\r\n        desc: \"Federation of Business Associations of Safor, an organization that represents, defends, and promotes the interests of the region's business community.\",\r\n        url: \"https:\/\/faesafor.com\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"C\u00e1tedra Joan Noguera\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo_Observatori_Adaptat-removebg-preview.png\",\r\n        desc: \"Academic unit of the University of Valencia focused on research, training, and dissemination on territorial planning and management.\",\r\n        url: \"https:\/\/www.uv.es\/catedra-pensamiento-territorial\/es\/catedra-pensamiento-territorial-joan-noguera.html\"\r\n      },\r\n      {\r\n        nombre: \"Creama\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Creama.jpg\",\r\n        desc: \"Non-profit entity of the Marina Alta that boosts local economic and social development through training, employment, support for entrepreneurs, and career guidance services.\",\r\n        url: \"https:\/\/creama.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Fundaci\u00f3n Valenciaport\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/ValenciaPort-1.png\",\r\n        desc: \"Research and innovation center focused on improving the competitiveness of the logistics-port sector and urban sustainability.\",\r\n        url: \"https:\/\/www.fundacion.valenciaport.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Autoridad Portuaria de Alicante\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/LOGO_autoridad-portuaria-de-alicante.png\",\r\n        desc: \"Public body responsible for the management, administration, security, and operation of the services and facilities of the Port of Alicante.\",\r\n        url: \"https:\/\/www.puertoalicante.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Alicante Port Innova\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/LogoAlicantePortInnova.png\",\r\n        desc: \"Technological innovation hub promoted by the Port Authority of Alicante to encourage entrepreneurship and digitalization in the logistics-port sector.\",\r\n        url: \"https:\/\/www.puertoalicante.com\/\"\r\n      },\r\n      {\r\n        nombre: \"TMS Alicante\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/TMS-Alicante-full-color.png\",\r\n        desc: \"Terminales Mar\u00edtimas del Sureste forms a multimodal platform that operates as a port of import, export, and transshipment in commercial exchange.\",\r\n        url: \"https:\/\/www.aleatica.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Mendel Brain\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/mendel_brain_logo-scaled.png\",\r\n        desc: \"Valencian startup specialized in behavioral genetics, offering genetic analysis (via saliva sample) to assess biological predisposition to psychological traits and potential mental health risks.\",\r\n        url: \"https:\/\/mendelbrain.com\/\"\r\n      },\r\n      {\r\n        nombre: \"PESI\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/LogoPESI.png\",\r\n        desc: \"Spanish Technological Platform for Industrial Safety, a collaborative network for the development of industrial safety technologies and risk management.\",\r\n        url: \"http:\/\/www.pesi-seguridadindustrial.org\/es\"\r\n      },\r\n      {\r\n        nombre: \"Gaia Charge\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/gaia_charge_black.png\",\r\n        desc: \"Specialists in intelligent solutions for charging electric vehicles, focused on optimizing energy consumption and facilitating the transition towards sustainable and connected mobility.\",\r\n        url: \"https:\/\/gaiacharge.com\/es\"\r\n      },\r\n      {\r\n        nombre: \"EVorada\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/EVorada-logo-black.png\",\r\n        desc: \"Advanced technology consultancy specialized in the electric vehicle sector, providing analysis and management tools to boost efficient transport infrastructure.\",\r\n        url: \"https:\/\/evorada.eu\/\"\r\n      },\r\n      {\r\n        nombre: \"Nuevas Estrategias\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_NuevasEstrategias.png\",\r\n        desc: \"Strategic consultancy centered on innovation, organizational transformation, and competitiveness improvement for companies and institutions.\",\r\n        url: \"\"\r\n      },\r\n      {\r\n        nombre: \"Falomir Juegos\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/logo-falomir-x2.png\",\r\n        desc: \"Valencian family business with a long history in the manufacture of board and educational games, committed to learning through leisure and the development of social skills.\",\r\n        url: \"https:\/\/falomirjuegos.com\/\"\r\n      },\r\n      {\r\n        nombre: \"RB Consulting\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/rb_consulting.png\",\r\n        desc: \"Strategic consultancy specialized in infrastructure and public service management, providing innovative solutions for process optimization and organizational efficiency.\",\r\n        url: \"https:\/\/rbconsulting.es\/\"\r\n      },\r\n      {\r\n        nombre: \"TransBase Soler\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_TBS_2024.png\",\r\n        desc: \"Leading company in logistics and intermodal transport, specialized in container management, storage, and maintenance with a strong commitment to supply chain safety.\",\r\n        url: \"https:\/\/www.transbasesoler.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Electrotruck\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Logo_ELECTROTRUCK-1.png\",\r\n        desc: \"Alliance focused on efficient logistics transport and the development of high-power electromobility solutions.\",\r\n        url: \"https:\/\/www.electrotruckpower.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Pangeanic\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/pangeanic.png\",\r\n        desc: \"Leading technology company in natural language processing, artificial intelligence, and machine translation services for global multilingual solutions.\",\r\n        url: \"https:\/\/pangeanic.com\/es\"\r\n      },\r\n      {\r\n        nombre: \"Metalesa\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Metalesa-scaled.png\",\r\n        desc: \"Valencian company specialized in manufacturing and installing road safety, urban mobility, and railway equipment, including acoustic barriers and tech solutions.\",\r\n        url: \"https:\/\/metalesa.com\/\"\r\n      },\r\n      {\r\n        nombre: \"INSIA\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/image-removebg-preview.png\",\r\n        desc: \"Institute of the Polytechnic University of Madrid specialized in vehicle and transport system research, focusing on safety, homologation, and environment.\",\r\n        url: \"https:\/\/insia-upm.es\/\"\r\n      },\r\n      {\r\n        nombre: \"The Smart City Journal\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/image-removebg-preview.png\",\r\n        desc: \"Digital communication platform specialized in the dissemination of news, analysis, and projects regarding smart cities and urban sustainability.\",\r\n        url: \"https:\/\/www.thesmartcityjournal.com\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"Stop Accidentes\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/image-removebg.png\",\r\n        desc: \"Non-governmental organization founded by victims and those affected by traffic accidents, dedicated to prevention and victim assistance.\",\r\n        url: \"https:\/\/stopaccidentes.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Fenadismer\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Fenadismer.png\",\r\n        desc: \"National Federation of Transport Associations of Spain, representing and defending the interests of self-employed carriers and small transport SMEs.\",\r\n        url: \"https:\/\/www.fenadismer.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Drive Smart\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/logo-drive-smart-trans-bg-black1.png\",\r\n        desc: \"Spanish company offering insurance solutions, technology, and data analysis for the automotive sector, improving driving and safety for users.\",\r\n        url: \"https:\/\/drive-smart.com\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"SGMAS\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/Logo_SGMAS.png\",\r\n        desc: \"Consultancy specialized in the implementation and maintenance of management systems (quality, environment, and safety), helping companies comply with regulations.\",\r\n        url: \"https:\/\/www.sgmas.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Aesleme\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/logo-aesleme.png\",\r\n        desc: \"Spanish non-profit association dedicated to preventing serious accidents through road education campaigns and supporting injury victims and their families.\",\r\n        url: \"https:\/\/www.aesleme.es\/\"\r\n      },\r\n      {\r\n        nombre: \"MOVIAM\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/MOVIAM.png\",\r\n        desc: \"Mobility and Road Safety Institute that helps companies prevent occupational risks and reduce accidents through training and sustainable mobility plans.\",\r\n        url: \"https:\/\/moviam.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Movus\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/logo-movus.png\",\r\n        desc: \"Pioneer in sustainable mobility management, specialized in shared transport systems, electric fleet management, and consultancy for efficient urban transition.\",\r\n        url: \"https:\/\/movus.es\/\"\r\n      },\r\n      {\r\n        nombre: \"RedCat\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_RedCat.png\",\r\n        desc: \"Specialists in advanced engineering and technology consultancy, focused on developing custom hardware and software solutions for high-demand industrial sectors.\",\r\n        url: \"https:\/\/redcat.best\/\"\r\n      },\r\n      {\r\n        nombre: \"ADN Mobile Solutions\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_AdnMobileSolutions.png\",\r\n        desc: \"Leaders in advanced telematics technology, specialized in fleet monitoring and driver behavior to improve road safety and energy efficiency.\",\r\n        url: \"https:\/\/adnmobilesolutions.com\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"Ok Located\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/AA-LOGO-2025-scaled.png\",\r\n        desc: \"Proximity marketing and smart mobility platform using Bluetooth technology to offer tourist, commercial, and service information intelligently to the user.\",\r\n        url: \"https:\/\/www.oklocated.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Nebulous Systems\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/logo_nombre_transparente.png\",\r\n        desc: \"Specialists in telecommunications solutions and advanced data management systems, focused on efficient connectivity and digital infrastructure security.\",\r\n        url: \"https:\/\/nebsyst.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Gecor\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/LogoGecor.webp\",\r\n        desc: \"Leading tool in public space maintenance management, facilitating communication between citizens and city councils for efficient incident resolution.\",\r\n        url: \"https:\/\/gecorsystem.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Waiis\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/WAIIS.png\",\r\n        desc: \"Technology platform dedicated to Mobility as a Service (MaaS), integrating transport options into a single digital solution for eco-friendly travel.\",\r\n        url: \"https:\/\/waiis.eco\/\"\r\n      },\r\n      {\r\n        nombre: \"FESVIAL\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/logo-FESVIAL.jpg\",\r\n        desc: \"Spanish Foundation for Road Safety, an independent entity focused on research, training, and dissemination to prevent road accidents.\",\r\n        url: \"https:\/\/fesvial.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Fundaci\u00f3n Investpro\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/SIN-fondo.-Fundacion-investpro.png\",\r\n        desc: \"Foundation for Professional Studies Research, dedicated to promoting innovation and quality within the Professional Training system.\",\r\n        url: \"https:\/\/fundacioninvespro.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Invest Group\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/invest-group.png\",\r\n        desc: \"Valencian market research institute offering qualitative and quantitative studies, tracking, and consumer analysis across various sectors.\",\r\n        url: \"https:\/\/www.invest-group.com\/\"\r\n      },\r\n      {\r\n        nombre: \"ASPAYM\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/logo_aspaym.png\",\r\n        desc: \"National Federation representing people with spinal cord injuries and other physical disabilities, working to improve their quality of life and integration.\",\r\n        url: \"https:\/\/www.aspaym.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Fundaci\u00f3n Neuronest\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/logo-fundacion-neuronest-1024x229-1.png\",\r\n        desc: \"Organization dedicated to improving the quality of life for people with functional diversity and brain damage.\",\r\n        url: \"https:\/\/fundacionneuronest.org\/\"\r\n      },\r\n      {\r\n        nombre: \"ADNcom\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/01\/adnCOM.png\",\r\n        desc: \"Brand and communication strategy consultancy acting as an external marketing department to define identity and optimize market positioning.\",\r\n        url: \"https:\/\/www.adncom.es\/\"\r\n      },\r\n      {\r\n        nombre: \"PMSV (Plataforma Motera para la Seguridad Vial)\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/pmsv-calidad.png\",\r\n        desc: \"Motorcyclist Platform for Road Safety, a national association working for the defense of rights, safety, and infrastructure for riders.\",\r\n        url: \"https:\/\/www.pmsv.org\/\"\r\n      },\r\n      {\r\n        nombre: \"General ASDE\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo_General-ASDE.png\",\r\n        desc: \"Group specialized in providing technological services and solutions for Driver Recognition Centers and medical facilities.\",\r\n        url: \"https:\/\/www.generalasde.com\/webASDE\/\"\r\n      },\r\n      {\r\n        nombre: \"Cities Forum\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/CitiesForum_Positivo_Color-1.png\",\r\n        desc: \"International organization dedicated to consultancy and promotion of projects on sustainable urban development and smart mobility.\",\r\n        url: \"https:\/\/citiesforum.org\"\r\n      },\r\n      {\r\n        nombre: \"Umibots\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_Umibots.png\",\r\n        desc: \"Company specialized in autonomous mobile robotics and logistics automation solutions, transforming internal mobility through intelligent technology.\",\r\n        url: \"https:\/\/umibots.com\/\"\r\n      },\r\n      {\r\n        nombre: \"GoPlanner\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_GoPlanner-e1771488196667.png\",\r\n        desc: \"Advanced software for route planning and optimization, designed to improve operational efficiency in logistics through data intelligence.\",\r\n        url: \"https:\/\/go-planner.com\/\"\r\n      },\r\n      {\r\n        nombre: \"WonderBits\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/wonderbits-logo.png\",\r\n        desc: \"Valencian tech company assisting digital transformation through custom analytics, automation, and AI solutions to optimize decision-making.\",\r\n        url: \"https:\/\/www.wonderbits.net\/\"\r\n      },\r\n      {\r\n        nombre: \"Nanfor\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Nanfor.png\",\r\n        desc: \"Experts in technological training and digital learning solutions for the transformation of companies and professionals.\",\r\n        url: \"https:\/\/nanfor.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Myrentgo Mobility\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/logo-MYRENTGO-alta-vertical-pequeno.png\",\r\n        desc: \"Mobility company offering rental services for personal mobility vehicles (PMV) and bicycles in urban and tourist environments.\",\r\n        url: \"https:\/\/myrentgo.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Movea Consulting\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Logo-Movea-compacto-7.png\",\r\n        desc: \"Strategic consultancy specialized in the automotive and mobility sector, focusing on electrification, fleets, and business development.\",\r\n        url: \"https:\/\/moveaconsulting.com\"\r\n      },\r\n      {\r\n        nombre: \"Valle Hidr\u00f3geno C.V.\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/LOGO-VAHIA-COMUNIDAD-VALENCIANA-2.png\",\r\n        desc: \"Multisectoral initiative for the development and implementation of renewable hydrogen technologies as an energy vector in the Valencian Community.\",\r\n        url: \"https:\/\/www.fempa.es\/sobre-fempa\/vahia-2030\"\r\n      },\r\n      {\r\n        nombre: \"Movildata\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Movildata_logo.png\",\r\n        desc: \"Verizon group company leading in GPS fleet management, telemetry, and digital transport processes to improve productivity and safety.\",\r\n        url: \"https:\/\/movildata.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Datfor\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_Datfor.png\",\r\n        desc: \"Technical consultancy specialized in forensic data analysis applied to road safety and accident reconstruction using advanced technology.\",\r\n        url: \"https:\/\/datfor.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Torch\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_Torch-scaled-e1771314804610.png\",\r\n        desc: \"Technology company focused on Smart City solutions for urban management, offering monitoring platforms and intelligent devices.\",\r\n        url: \"https:\/\/torchurbansmart.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Impact Ware\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Impact_Ware.png\",\r\n        desc: \"Technology company developing software solutions and digital transformation to help organizations improve processes and data results.\",\r\n        url: \"https:\/\/www.impactware.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Hostliday\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Hostliday.png\",\r\n        desc: \"Digital platform connecting travelers with local hosts to book authentic experiences and activities in various worldwide destinations.\",\r\n        url: \"https:\/\/www.hostliday.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Mundo Marino\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/MundoMarinoCatamaranes.png\",\r\n        desc: \"Specialists in nautical excursions and catamaran events, promoting sustainable maritime tourism in the Mediterranean.\",\r\n        url: \"https:\/\/mundomarino.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Peritar\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Peritar.png\",\r\n        desc: \"Digital platform that helps experts manage reports, tasks, and processes related to appraisals, automating their daily work.\",\r\n        url: \"https:\/\/peritar.net\/\"\r\n      },\r\n      {\r\n        nombre: \"Action Tracker\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/actiontracker_solutions_sl_logo.jpg\",\r\n        desc: \"Spanish tech company developing IoT and real-time monitoring solutions to improve safety and efficiency in industrial environments.\",\r\n        url: \"https:\/\/actiontracker.eu\/\"\r\n      },\r\n      {\r\n        nombre: \"CITYME\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/CITIME.png\",\r\n        desc: \"Technology platform offering digital solutions for citizen participation, municipal communication, and local service management.\",\r\n        url: \"https:\/\/cityme.eu\/\"\r\n      },\r\n      {\r\n        nombre: \"Sialtronica\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo_SIALTRONICA_vectorizado-002-scaled.png\",\r\n        desc: \"Company dedicated to the engineering, manufacturing, and installation of road signaling systems and intelligent urban equipment.\",\r\n        url: \"https:\/\/sialtronica.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Amusal\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/Logotipo-Amusal-granate-transparente.png\",\r\n        desc: \"Business association of Labor Societies in the Murcia Region that promotes and supports the development of participatory companies.\",\r\n        url: \"https:\/\/www.amusal.es\/\"\r\n      },\r\n      {\r\n        nombre: \"AVAE Autoescuelas\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/AVAE.png\",\r\n        desc: \"Valencian Association of Driving Schools, representative entity for private driver schools and road training centers in Valencia.\",\r\n        url: \"https:\/\/avae.es\/\"\r\n      },\r\n      {\r\n        nombre: \"COOCV\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Logo-COOCV-22-AZUL-sin-fondo.png\",\r\n        desc: \"Official College of Opticians-Optometrists of the Valencian Community, a public law corporation regulating the profession.\",\r\n        url: \"https:\/\/coocv.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Colegio Oficial de F\u00edsicos\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Logo_Cofis.png\",\r\n        desc: \"Institution representing the interests of Physics professionals, promoting scientific excellence in sectors like energy and innovation.\",\r\n        url: \"https:\/\/www.cofis.es\/\"\r\n      },\r\n      {\r\n        nombre: \"Col\u00b7legi Oficial de Psicologia Comunitat Valenciana\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/02\/Colegio-Valenciano-Psicologos.png\",\r\n        desc: \"Organization representing psychologists in the Valencian Community, promoting training and the development of the profession.\",\r\n        url: \"https:\/\/www.cop-cv.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Discomon\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/12\/logo-discomon-mejor.png\",\r\n        desc: \"Valencian company offering IoT solutions for urban management, sustainable mobility, and air quality in smart cities.\",\r\n        url: \"https:\/\/discomon.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Bosko\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/boskocabin_logo.jpg\",\r\n        desc: \"Fashion and accessories brand offering contemporary urban style clothing and complements for men and women.\",\r\n        url: \"https:\/\/bosko.es\/\"\r\n      },\r\n      {\r\n        nombre: \"GRM\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/GRM.png\",\r\n        desc: \"Spanish consultancy firm offering business advisory services in management, strategy, and transformation for organizations.\",\r\n        url: \"https:\/\/grmconsultoria.com\/\"\r\n      },\r\n    {\r\n        nombre: \"ASO PMR\",\r\n        tipo: \"administraciones\", \/\/ He mantenido el valor del tipo seg\u00fan tu esquema original, pero si prefieres traducirlo ser\u00eda \"public administrations\"\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/aso-logo.png\",\r\n        desc: \"Association dedicated to improving mobility and defending the rights of people with reduced mobility.\",\r\n        url: \"https:\/\/asopmr.org\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"Solmes\",\r\n        tipo: \"privadas\", \/\/ En ingl\u00e9s: \"private\"\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/solmes-logo.png\",\r\n        desc: \"Company specializing in engineering solutions and advanced technological services.\",\r\n        url: \"https:\/\/solmes.net\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"Fundaci\u00f3n Aspropace\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/fundacion-aspropace-logo.png\",\r\n        desc: \"Non-profit organization focused on comprehensive care and improving the quality of life for people with cerebral palsy.\",\r\n        url: \"https:\/\/www.fundacionaspropace.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Aspace\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/aspace_logo.png\",\r\n        desc: \"Confederation that brings together entities specialized in the prevention and treatment of cerebral palsy.\",\r\n        url: \"https:\/\/aspace.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Medusa Festival\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/logo-medusa.png\",\r\n        desc: \"One of Spain's most massive electronic music festivals, held annually in Cullera.\",\r\n        url: \"https:\/\/www.medusasunbeach.com\/\"\r\n      },\r\n      {\r\n        nombre: \"ZEVRA\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/LOGO-ZEVRA-2.png\",\r\n        desc: \"A leading urban music and pop culture festival on the Mediterranean coast.\",\r\n        url: \"https:\/\/www.zevrafestival.com\/\"\r\n      },\r\n      {\r\n        nombre: \"TLSI - T\u00e9cnicas Log\u00edsticas Sistemas e Ingenier\u00eda\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/tlsi.png\",\r\n        desc: \"Global logistics operator specializing in transportation, warehousing, and efficient supply chain management.\",\r\n        url: \"https:\/\/tlsi.es\/es\/\"\r\n      },\r\n      {\r\n        nombre: \"COMERC MOBLE\",\r\n        tipo: \"sociales\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/COMERC-MOBLE-01.png\",\r\n        desc: \"Non-profit association representing furniture stores in the Valencian Community, focused on defending the sector's interests and offering guarantees of professionalism and quality to consumers.\",\r\n        url: \"https:\/\/comercmoble.com\/\"\r\n      },\r\n      {\r\n        nombre: \"ENCICLE\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/ENCICLE-1024x291-1.png\",\r\n        desc: \"Valencian logistics and last-mile courier company that uses zero-emission transport methods, specializing in cycle logistics and sustainable urgent transport services at local and international levels.\",\r\n        url: \"https:\/\/encicle.es\/\"\r\n      },\r\n      {\r\n      nombre: \"Ayuntamiento de Villena\",\r\n      tipo: \"ayuntamientos\",\r\n      isAyuntamiento: true,\r\n      img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/h_AYTO_VILLENA_escudo_positivo-400x250-1.png\",\r\n      desc: \"Institution responsible for the government and administration of the municipality of Villena, located in the Alto Vinalop\u00f3 region, in the province of Alicante.\",\r\n      url: \"https:\/\/www.villena.es\/\"\r\n    },\r\n      {\r\n        nombre: \"UOC - Universitat Oberta de Catalunya\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Logotipo_UOC.svg.png\",\r\n        desc: \"Open and non-presential university offering undergraduate, master's, and doctoral degrees through its own educational model based on flexibility and the use of information technologies.\",\r\n        url: \"https:\/\/www.uoc.edu\/es\"\r\n      },\r\n      {\r\n        nombre: \"Fout comercial\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/Fout_comercial.png\",\r\n        desc: \"Company specializing in the distribution of tools, raw materials, and decoration for the pastry and bakery sectors, representing national and international brands with a focus on personalized service.\",\r\n        url: \"https:\/\/www.comercialfont.com\/\"\r\n      },\r\n      {\r\n        nombre: \"2Leap\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/2LeapLogo.png\",\r\n        desc: \"B2B sales strategic consultancy that helps technology companies and startups accelerate their growth by integrating artificial intelligence and innovative commercial methodologies.\",\r\n        url: \"https:\/\/2leap.es\/\"\r\n      },\r\n      {\r\n        nombre: \"UMA - Universidad de M\u00e1laga\",\r\n        tipo: \"administraciones\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/uma_logo.png\",\r\n        desc: \"Public higher education institution that promotes teaching, research, and knowledge transfer in Malaga, standing out for its commitment to innovation and technological development.\",\r\n        url: \"https:\/\/www.uma.es\/\"\r\n      },\r\n      {\r\n        nombre: \"INRIX\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/inrix_logo.png\",\r\n        desc: \"Leading mobility data analytics company providing intelligent solutions for traffic management, parking, and road safety, helping to create more connected and efficient cities.\",\r\n        url: \"https:\/\/inrix.com\/\"\r\n      },\r\n      {\r\n        nombre: \"U4IMPACT\",\r\n        tipo: \"sociales\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/u4impactLogo.png\",\r\n        desc: \"Social impact platform that connects university students with organizations to complete their final projects (TFG\/TFM) on real sustainability and social innovation challenges, boosting young talent.\",\r\n        url: \"https:\/\/www.u4impact.org\/\"\r\n      },\r\n      {\r\n        nombre: \"Zoometrics\",\r\n        tipo: \"privadas\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/zoometricsLOGO.png\",\r\n        desc: \"Digital suite specialized in urban biodiversity governance that uses data science and AI to help cities transparently manage the fauna and flora of the municipal ecosystem.\",\r\n        url: \"https:\/\/zoo-metrics.com\/\"\r\n      },\r\n      {\r\n        nombre: \"Confecomer\u00e7\",\r\n        tipo: \"sociales\",\r\n        img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/03\/CONFECOMERC_positivo.png\",\r\n        desc: \"Business confederation that represents and defends the interests of small retail, crafts, and services in the Valencian Community, promoting the competitiveness and sustainability of local proximity trade.\",\r\n        url: \"https:\/\/confecomerc.es\/\"\r\n  },\r\n  {\r\n    nombre: \"The Terminal Hub\",\r\n    tipo: \"privadas\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/the-terminal-hub.webp\",\r\n    desc: \"Technological innovation hub located in Valencia that connects startups, corporations, and investors to boost the entrepreneurial ecosystem and digital transformation.\",\r\n    url: \"https:\/\/theterminalhub.com\/es\/the-terminal-hub\/\"\r\n  },\r\n  {\r\n    nombre: \"Ayuntamiento D\u00e9nia\",\r\n    tipo: \"ayuntamientos\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/ayuntamiento-denia.png\",\r\n    desc: \"Local public administration institution managing municipal services, urban development, and citizen services for the municipality of D\u00e9nia.\",\r\n    url: \"https:\/\/www.denia.es\/va\/index.aspx\"\r\n  },\r\n  {\r\n    nombre: \"Ayuntamiento Torre Pacheco\",\r\n    tipo: \"ayuntamientos\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/ayuntamiento-torre-pacheco.png\",\r\n    desc: \"Local government entity responsible for administrative management and public services for the community of Torre Pacheco in the Region of Murcia.\",\r\n    url: \"https:\/\/www.torrepacheco.es\/\"\r\n  },\r\n  {\r\n    nombre: \"Bale\u00e0ria\",\r\n    tipo: \"privadas\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/logo-balearia.png\",\r\n    desc: \"Leading maritime transport company for passengers and cargo, pioneer in the use of natural gas and sustainable technologies on its Mediterranean routes.\",\r\n    url: \"https:\/\/www.balearia.com\/es\"\r\n  },\r\n  {\r\n    nombre: \"Ayuntamiento de Aldaia\",\r\n    tipo: \"ayuntamientos\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/ajuntament-aldaia-logo.png\",\r\n    desc: \"Municipal administration responsible for governance, culture, social services, and public procedures for the Valencian town of Aldaia.\",\r\n    url: \"https:\/\/aldaia.es\/\"\r\n  },\r\n  {\r\n    nombre: \"Imperia SCM\",\r\n    tipo: \"privadas\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/imperia-logo.png\",\r\n    desc: \"Technology company offering advanced software solutions for demand planning and industrial supply chain optimization.\",\r\n    url: \"https:\/\/imperiascm.com\/es-es\"\r\n  },\r\n  {\r\n    nombre: \"IA2 Alianza Iberoamericana\",\r\n    tipo: \"sociales\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/logo-ia2-alianza-iberoamericana.png\",\r\n    desc: \"International organization dedicated to fostering scientific cooperation and technological development in the agri-food sector across Ibero-America.\",\r\n    url: \"https:\/\/www.alianzaia.org\/\"\r\n  },\r\n  {\r\n    nombre: \"DataOrigin\",\r\n    tipo: \"privadas\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/dataorigin-logo.svg\",\r\n    desc: \"Consultancy specialized in data science and artificial intelligence that helps companies make strategic decisions based on information analysis.\",\r\n    url: \"https:\/\/dataorigin.es\/en\/\"\r\n  },\r\n  {\r\n    nombre: \"Mancomunitat Intermunicipal de l'Horta Sud\",\r\n    tipo: \"administraciones\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/mancomunitat-intermunicipal.png\",\r\n    desc: \"Public entity grouping several municipalities in the l'Horta Sud region to manage common services and promote joint regional development.\",\r\n    url: \"https:\/\/www.mancohortasud.es\/\"\r\n  },\r\n  {\r\n    nombre: \"ITE\",\r\n    tipo: \"sociales\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/logotipo_ITE.svg\",\r\n    desc: \"Energy Technological Institute specialized in R&D for the energy sector, promoting sustainability and the industrial energy transition.\",\r\n    url: \"https:\/\/www.ite.es\/\"\r\n  },\r\n  {\r\n    nombre: \"TAISA Logistics\",\r\n    tipo: \"privadas\",\r\n    img: \"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2026\/04\/taisa-logistics-logo.png\",\r\n    desc: \"Integral logistics operator offering transport, storage, and national\/international distribution services with a focus on operational efficiency.\",\r\n    url: \"https:\/\/www.taisalogistics.es\/site\/index.html\"\r\n  }\r\n    ];\r\n  <\/script>\r\n  <!-- load english entities list -->\r\n  <script src=\"entidades_ingles.js\"><\/script>\r\n  <script>\r\n    function ordenarEntidades(entidades) {\r\n      return entidades.sort((a, b) => {\r\n        if (a.isAyuntamiento && !b.isAyuntamiento) return -1;\r\n        if (!a.isAyuntamiento && b.isAyuntamiento) return 1;\r\n        if (a.isAyuntamiento && b.isAyuntamiento) {\r\n          const munA = extractMunicipio(a.nombre);\r\n          const munB = extractMunicipio(b.nombre);\r\n          return munA.localeCompare(munB);\r\n        }\r\n        return a.nombre.localeCompare(b.nombre);\r\n      });\r\n    }\r\n\r\n    function extractMunicipio(nombre) {\r\n      if (nombre.startsWith(\"Ajuntament d'\")) return nombre.substring(\"Ajuntament d'\".length);\r\n      if (nombre.startsWith(\"Ajuntament de \")) return nombre.substring(\"Ajuntament de \".length);\r\n      if (nombre.startsWith(\"Ayuntamiento de \")) return nombre.substring(\"Ayuntamiento de \".length);\r\n      return nombre; \/\/ fallback\r\n    }\r\n\r\n    function filtrarEntidades(entidades, query) {\r\n      if (!query) return entidades;\r\n      return entidades.filter(entidad =>\r\n        entidad.nombre.toLowerCase().includes(query.toLowerCase()) ||\r\n        entidad.desc.toLowerCase().includes(query.toLowerCase())\r\n      );\r\n    }\r\n\r\n    function renderizarEntidades(entidades) {\r\n      const grid = document.getElementById('entities-grid');\r\n      grid.innerHTML = '';\r\n\r\n      \/\/ Funci\u00f3n para determinar si es entidad social\r\n      function isSocial(ent) {\r\n        const socialKeywords = [\"asociaci\u00f3n\", \"fundaci\u00f3n\", \"federaci\u00f3n\", \"confederaci\u00f3n\", \"entidad sin \u00e1nimo de lucro\", \"ong\", \"asociaci\u00f3n empresarial\", \"foro\", \"ben\u00e9fica\", \"mutua\", \"charity\", \"non-profit\", \"ngo\", \"association\", \"foundation\", \"federation\", \"forum\"];\r\n        return socialKeywords.some(keyword => ent.nombre.toLowerCase().includes(keyword) || ent.desc.toLowerCase().includes(keyword));\r\n      }\r\n\r\n      \/\/ Funci\u00f3n para determinar si es administraci\u00f3n p\u00fablica\r\n      function isPublic(ent) {\r\n        return ent.tipo === 'administraciones' || ent.tipo === 'ayuntamientos' || ent.nombre.toLowerCase().includes(\"ayuntamiento\") || ent.nombre.toLowerCase().includes(\"autoridad\") || ent.nombre.toLowerCase().includes(\"consorcio\") || ent.nombre.toLowerCase().includes(\"mancomunitat\") || ent.nombre.toLowerCase().includes(\"c\u00e1tedra\") || ent.nombre.toLowerCase().includes(\"parc cient\u00edfic\") || ent.nombre.toLowerCase().includes(\"colegio oficial\") || ent.nombre.toLowerCase().includes(\"instituto\") || ent.nombre.toLowerCase().includes(\"diputaci\u00f3n\") || ent.nombre.toLowerCase().includes(\"autoritat\");\r\n      }\r\n\r\n      \/\/ Agrupar entidades por tipo\r\n      const groups = {\r\n        empresas_privadas: entidades.filter(ent => !isSocial(ent) && !isPublic(ent)),\r\n        entidades_sociales: entidades.filter(ent => isSocial(ent)),\r\n        administracion_publica: entidades.filter(ent => isPublic(ent))\r\n      };\r\n\r\n      \/\/ Definir t\u00edtulos de grupos\r\n      const groupTitles = {\r\n        empresas_privadas: 'Private Companies',\r\n        entidades_sociales: 'Social Entities',\r\n        administracion_publica: 'Public Administration'\r\n      };\r\n\r\n      \/\/ Renderizar cada grupo\r\n      Object.keys(groups).forEach(tipo => {\r\n        const groupEntidades = groups[tipo];\r\n        if (groupEntidades.length > 0) {\r\n          \/\/ Ordenar el grupo\r\n          if (tipo === 'administracion_publica') {\r\n            groupEntidades.sort((a, b) => {\r\n              const aIsAyuntamiento = a.tipo === 'ayuntamientos' || a.isAyuntamiento;\r\n              const bIsAyuntamiento = b.tipo === 'ayuntamientos' || b.isAyuntamiento;\r\n              if (aIsAyuntamiento && !bIsAyuntamiento) return -1;\r\n              if (!aIsAyuntamiento && bIsAyuntamiento) return 1;\r\n              return a.nombre.localeCompare(b.nombre);\r\n            });\r\n          } else {\r\n            groupEntidades.sort((a, b) => a.nombre.localeCompare(b.nombre));\r\n          }\r\n          \/\/ Agregar t\u00edtulo del grupo\r\n          const titleDiv = document.createElement('div');\r\n          titleDiv.className = 'group-title';\r\n          titleDiv.innerHTML = `<h2>${groupTitles[tipo]}<\/h2>`;\r\n          grid.appendChild(titleDiv);\r\n\r\n          \/\/ Agregar entidades del grupo\r\n          groupEntidades.forEach(entidad => {\r\n            const entityDiv = document.createElement('div');\r\n            entityDiv.className = 'entity';\r\n            entityDiv.innerHTML = `\r\n              <div class=\"logo-wrapper\">\r\n                <img decoding=\"async\" src=\"${entidad.img}\" alt=\"${entidad.nombre}\">\r\n              <\/div>\r\n              <div class=\"entity-info\">\r\n                <h3>${entidad.nombre}<\/h3>\r\n                <p>${entidad.desc}<\/p>\r\n                ${entidad.url ? `<a href=\"${entidad.url}\" target=\"_blank\" rel=\"noopener\" class=\"btn-visit\">Visit Website<\/a>` : ''}\r\n              <\/div>\r\n            `;\r\n            grid.appendChild(entityDiv);\r\n          });\r\n        }\r\n      });\r\n    }\r\n\r\n    const entidadesOrdenadas = ordenarEntidades(entidades);\r\n    renderizarEntidades(entidadesOrdenadas);\r\n    document.getElementById('search-input').addEventListener('input', function() {\r\n      const query = this.value;\r\n      const filtradas = filtrarEntidades(entidadesOrdenadas, query);\r\n      renderizarEntidades(filtradas);\r\n    });\r\n  <\/script>\r\n<\/section>\r\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>About the DS4M Mediterr\u00e1neo Project DS4M Mediterr\u00e1neo (Data Space for Mobility) is an initiative promoted by the Ministry for Digital Transformation and Public Function and funded by the European Union through Next Generation EU funds, under the framework of the Sectoral Data Spaces Promotion Plan. This project is led by the Instituto Universitario de Investigaci\u00f3n [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":8716,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-7983","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>DS4M Mediterr\u00e1neo - About Us<\/title>\n<meta name=\"description\" content=\"Learn about DS4M Mediterr\u00e1neo, a European initiative that develops a mobility data space for the Mediterranean Corridor. Discover our mission, partners, and vision for sustainable digital mobility.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DS4M Mediterr\u00e1neo - About Us\" \/>\n<meta property=\"og:description\" content=\"Learn about DS4M Mediterr\u00e1neo, a European initiative that develops a mobility data space for the Mediterranean Corridor. Discover our mission, partners, and vision for sustainable digital mobility.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/\" \/>\n<meta property=\"og:site_name\" content=\"DS4M Mediterr\u00e1neo\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-02T13:37:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Icono-web.png\" \/>\n\t<meta property=\"og:image:width\" content=\"344\" \/>\n\t<meta property=\"og:image:height\" content=\"344\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/\",\"url\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/\",\"name\":\"DS4M Mediterr\u00e1neo - About Us\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ds4mmed.uv.es\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/Icono-web.png\",\"datePublished\":\"2025-11-20T09:58:56+00:00\",\"dateModified\":\"2026-04-02T13:37:59+00:00\",\"description\":\"Learn about DS4M Mediterr\u00e1neo, a European initiative that develops a mobility data space for the Mediterranean Corridor. Discover our mission, partners, and vision for sustainable digital mobility.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ds4mmed.uv.es\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/Icono-web.png\",\"contentUrl\":\"https:\\\/\\\/ds4mmed.uv.es\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/Icono-web.png\",\"width\":344,\"height\":344},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/en\\\/about-us\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/ds4mmed.uv.es\\\/index.php\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About us\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/#website\",\"url\":\"https:\\\/\\\/ds4mmed.uv.es\\\/\",\"name\":\"DS4M Mediterr\u00e1neo\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ds4mmed.uv.es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/#organization\",\"name\":\"DS4M Mediterr\u00e1neo\",\"url\":\"https:\\\/\\\/ds4mmed.uv.es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/ds4mmed.uv.es\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Logo-cambio-resolucion-scaled.png\",\"contentUrl\":\"https:\\\/\\\/ds4mmed.uv.es\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Logo-cambio-resolucion-scaled.png\",\"width\":2560,\"height\":980,\"caption\":\"DS4M Mediterr\u00e1neo\"},\"image\":{\"@id\":\"https:\\\/\\\/ds4mmed.uv.es\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DS4M Mediterr\u00e1neo - About Us","description":"Learn about DS4M Mediterr\u00e1neo, a European initiative that develops a mobility data space for the Mediterranean Corridor. Discover our mission, partners, and vision for sustainable digital mobility.","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:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/","og_locale":"es_ES","og_type":"article","og_title":"DS4M Mediterr\u00e1neo - About Us","og_description":"Learn about DS4M Mediterr\u00e1neo, a European initiative that develops a mobility data space for the Mediterranean Corridor. Discover our mission, partners, and vision for sustainable digital mobility.","og_url":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/","og_site_name":"DS4M Mediterr\u00e1neo","article_modified_time":"2026-04-02T13:37:59+00:00","og_image":[{"width":344,"height":344,"url":"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Icono-web.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/","url":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/","name":"DS4M Mediterr\u00e1neo - About Us","isPartOf":{"@id":"https:\/\/ds4mmed.uv.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/#primaryimage"},"image":{"@id":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/#primaryimage"},"thumbnailUrl":"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Icono-web.png","datePublished":"2025-11-20T09:58:56+00:00","dateModified":"2026-04-02T13:37:59+00:00","description":"Learn about DS4M Mediterr\u00e1neo, a European initiative that develops a mobility data space for the Mediterranean Corridor. Discover our mission, partners, and vision for sustainable digital mobility.","breadcrumb":{"@id":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/#primaryimage","url":"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Icono-web.png","contentUrl":"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/11\/Icono-web.png","width":344,"height":344},{"@type":"BreadcrumbList","@id":"https:\/\/ds4mmed.uv.es\/index.php\/en\/about-us\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/ds4mmed.uv.es\/index.php\/es\/"},{"@type":"ListItem","position":2,"name":"About us"}]},{"@type":"WebSite","@id":"https:\/\/ds4mmed.uv.es\/#website","url":"https:\/\/ds4mmed.uv.es\/","name":"DS4M Mediterr\u00e1neo","description":"","publisher":{"@id":"https:\/\/ds4mmed.uv.es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ds4mmed.uv.es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/ds4mmed.uv.es\/#organization","name":"DS4M Mediterr\u00e1neo","url":"https:\/\/ds4mmed.uv.es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/ds4mmed.uv.es\/#\/schema\/logo\/image\/","url":"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/07\/Logo-cambio-resolucion-scaled.png","contentUrl":"https:\/\/ds4mmed.uv.es\/wp-content\/uploads\/2025\/07\/Logo-cambio-resolucion-scaled.png","width":2560,"height":980,"caption":"DS4M Mediterr\u00e1neo"},"image":{"@id":"https:\/\/ds4mmed.uv.es\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/pages\/7983","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/comments?post=7983"}],"version-history":[{"count":584,"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/pages\/7983\/revisions"}],"predecessor-version":[{"id":15125,"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/pages\/7983\/revisions\/15125"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/media\/8716"}],"wp:attachment":[{"href":"https:\/\/ds4mmed.uv.es\/index.php\/wp-json\/wp\/v2\/media?parent=7983"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}