{"id":28057,"date":"2026-08-13T11:58:13","date_gmt":"2026-08-13T17:58:13","guid":{"rendered":"https:\/\/designweekmexico.com\/?p=28057"},"modified":"2026-09-10T13:55:41","modified_gmt":"2026-09-10T19:55:41","slug":"dealers-diseno","status":"publish","type":"post","link":"https:\/\/designweekmexico.com\/en\/programa\/dealers-diseno\/","title":{"rendered":"Design Dealers"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"28057\" class=\"elementor elementor-28057\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-e08bbcc ct-section-stretched finisher-header elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"e08bbcc\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-379b5473\" data-id=\"379b5473\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-72d6d24e elementor-widget elementor-widget-heading\" data-id=\"72d6d24e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">DEALERS DE DISE\u00d1O<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d97465d elementor-widget elementor-widget-heading\" data-id=\"d97465d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/designweekmexico.com\/programa\/design-house\/\">@ DESIGN HOUSE<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7f9728ed elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7f9728ed\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-6471a64b\" data-id=\"6471a64b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-52d7d90 elementor-widget elementor-widget-html\" data-id=\"52d7d90\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script type=\"text\/javascript\">\n\/** Finisher Header - Correcci\u00f3n de visibilidad de colores **\/\n!function(e,t){\"object\"==typeof exports&&\"undefined\"!=typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(t):(e=e||self).FinisherHeader=t()}(this,function(){\"use strict\";return function(e){var t=this;this.opts=e,this.container=null,this.canvas=null,this.ctx=null,this.particles=[],this.anim=null,this.mouse={x:-1000,y:-1000};this.init=function(){if(t.container=document.querySelector(\".finisher-header\"),t.container){t.canvas=document.createElement(\"canvas\"),t.container.appendChild(t.canvas),t.ctx=t.canvas.getContext(\"2d\"),t.resize();\nwindow.addEventListener(\"mousemove\",function(e){var rect=t.canvas.getBoundingClientRect();t.mouse.x=e.clientX-rect.left;t.mouse.y=e.clientY-rect.top;});\nfor(var e=0;e<t.opts.count;e++)t.particles.push(t.createParticle(e));t.loop()}},\nthis.createParticle=function(index){var colorUnico=t.opts.colors.particles[index%t.opts.colors.particles.length];return{x:Math.random()*t.canvas.width,y:Math.random()*t.canvas.height,vx:(Math.random()*(t.opts.speed.x.max-t.opts.speed.x.min)+t.opts.speed.x.min)*(Math.random()<.5?1:-1),vy:(Math.random()*(t.opts.speed.y.max-t.opts.speed.y.min)+t.opts.speed.y.min)*(Math.random()<.5?1:-1),size:Math.random()*(t.opts.size.max-t.opts.size.min)+t.opts.size.min,color:colorUnico}},\nthis.draw=function(){\n    \/\/ Dibuja el fondo\n    t.ctx.fillStyle=t.opts.colors.background;\n    t.ctx.fillRect(0,0,t.canvas.width,t.canvas.height);\n    \n    \/\/ Cambiamos 'lighten' a 'source-over' para asegurar visibilidad sobre fondo claro\n    t.ctx.globalCompositeOperation = \"source-over\";\n\n    for(var e=0;e<t.particles.length;e++){\n        var n=t.particles[e],dx=t.mouse.x-n.x,dy=t.mouse.y-n.y,dist=Math.sqrt(dx*dx+dy*dy),minDist=260;\n        if(dist<minDist){\n            var force=(minDist-dist)\/minDist,moveX=(dx\/dist)*force*4,moveY=(dy\/dist)*force*4;\n            n.x-=moveX;n.y-=moveY\n        }\n        \n        var g = t.ctx.createRadialGradient(n.x, n.y, 0, n.x, n.y, n.size);\n        g.addColorStop(0, n.color); \n        g.addColorStop(0.4, n.color + \"aa\"); \/\/ Opacidad visible\n        g.addColorStop(1, \"rgba(240,238,233,0)\"); \n\n        t.ctx.beginPath(),t.ctx.arc(n.x,n.y,n.size,0,2*Math.PI),t.ctx.fillStyle=g,t.ctx.fill(),\n        \n        n.x+=n.vx;\n        n.y+=n.vy;\n        \n        if (n.x > t.canvas.width + n.size) { n.x = -n.size; }\n        else if (n.x < -n.size) { n.x = t.canvas.width + n.size; }\n        \n        if (n.y > t.canvas.height + n.size) { n.y = -n.size; }\n        else if (n.y < -n.size) { n.y = t.canvas.height + n.size; }\n    }\n},\nthis.loop=function(){t.draw(),t.anim=requestAnimationFrame(t.loop)},\nthis.resize=function(){if(t.container){t.canvas.width=t.container.clientWidth;t.canvas.height=t.container.clientHeight + 10;}},this.init()}} );\n\nfunction initDWM_Nuevo() {\n    var header = document.querySelector('.finisher-header');\n    if (header) {\n        \/\/ En m\u00f3vil las part\u00edculas son mucho m\u00e1s chicas y se mueven m\u00e1s\n        \/\/ r\u00e1pido, para que se ajusten bien a un contenedor angosto en\n        \/\/ vez de verse como manchas gigantes casi est\u00e1ticas.\n        var isMobile = window.innerWidth <= 768;\n\n        new FinisherHeader({\n          \"count\": 12,\n          \"size\": isMobile ? {\n            \"min\": 120,\n            \"max\": 320,\n            \"pulse\": 0\n          } : {\n            \"min\": 401,\n            \"max\": 999,\n            \"pulse\": 0\n          },\n          \"speed\": isMobile ? {\n            \"x\": { \"min\": 1.4, \"max\": 5 },\n            \"y\": { \"min\": 1.4, \"max\": 5 }\n          } : {\n            \"x\": { \"min\": 0.6, \"max\": 3 },\n            \"y\": { \"min\": 0.6, \"max\": 3 }\n          },\n          \"colors\": {\n            \"background\": \"#f0eee9\",\n            \"particles\": [\n              \"#f9a742\", \/\/ Naranja de marca (Dealers de Dise\u00f1o)\n              \"#edbb85\", \/\/ Naranja claro\n              \"#f9a742\"\n            ]\n          },\n          \"blending\": \"none\",\n          \"opacity\": { \"center\": 1, \"edge\": 0 },\n          \"skew\": 0,\n          \"shapes\": [\"c\"]\n        });\n        \n        window.addEventListener('resize', function() {\n            var c = document.querySelector('.finisher-header canvas');\n            if(c) {\n                c.width = header.clientWidth;\n                c.height = header.clientHeight + 10;\n            }\n        });\n    } else {\n        setTimeout(initDWM_Nuevo, 200);\n    }\n}\nwindow.addEventListener('load', initDWM_Nuevo);\nif(document.readyState === 'complete') { setTimeout(initDWM_Nuevo, 300); }\n<\/script>\n\n<style>\n  .finisher-header {\n    background-color: #f0eee9 !important;\n    position: relative !important;\n    overflow: hidden !important;\n    z-index: 1 !important;\n  }\n  .finisher-header canvas {\n    position: absolute !important;\n    top: 0 !important; \n    left: 0 !important;\n    width: 100% !important;\n    height: calc(100% + 5px) !important; \n    z-index: -1 !important;\n    display: block !important;\n    pointer-events: none !important;\n    transform: none !important;\n  }\n  .finisher-header > .elementor-container,\n  .finisher-header > .elementor-column-gap-default,\n  .finisher-header .elementor-widget-wrap {\n    position: relative !important;\n    z-index: 2 !important;\n  }\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-79962e2 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"79962e2\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-29c3aa8\" data-id=\"29c3aa8\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-dfcec83 elementor-widget elementor-widget-heading\" data-id=\"dfcec83\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">9 OCT \u2013 1 NOV<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2fa941d\" data-id=\"2fa941d\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-75c1361 elementor-widget elementor-widget-heading\" data-id=\"75c1361\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Av. Palmas 1305<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-36261c7 elementor-widget elementor-widget-heading\" data-id=\"36261c7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Av. Paseo de las Palmas 1305,\n<br>Lomas de Chapultepec VIII Secc<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5aa6b532 ct-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5aa6b532\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-28cfb704\" data-id=\"28cfb704\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4965f6c3 elementor-widget elementor-widget-text-editor\" data-id=\"4965f6c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div role=\"feed\" aria-label=\"Chat messages\" aria-describedby=\"_r_gi_\"><div tabindex=\"0\" role=\"article\" aria-setsize=\"57\" aria-posinset=\"57\" aria-label=\"Message 57 of 57\"><div role=\"feed\" aria-label=\"Chat messages\" aria-describedby=\"_r_gi_\"><div><div><div tabindex=\"0\" role=\"article\" aria-setsize=\"59\" aria-posinset=\"59\" aria-label=\"Message 59 of 59\"><div><div><div><div><div><div><p dir=\"ltr\"><strong>Dealers de Dise\u00f1o<\/strong> es la plataforma de <strong>Design House,<\/strong> el espacio m\u00e1s visitado de <strong>Design Week M\u00e9xico,<\/strong> que re\u00fane <strong>mobiliario, acabados, iluminaci\u00f3n, accesorios y arte-objeto<\/strong> de marcas, dise\u00f1adores, galer\u00edas y artesanos nacionales e internacionales, integrados por interioristas y arquitectos en ambientes reales donde el dise\u00f1o de interiores dialoga con el dise\u00f1o de producto. Este a\u00f1o se suma la categor\u00eda <strong>Bespoke Collection,<\/strong> una selecci\u00f3n de dise\u00f1adores con piezas de mayor formato que funcionan como punto focal dentro de los espacios.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-3e34cc2e ct-section-stretched elementor-section-full_width elementor-section-height-min-height elementor-section-items-stretch elementor-section-height-default\" data-id=\"3e34cc2e\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-38efa907\" data-id=\"38efa907\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:28936,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/TRIBUTO-Balance-Buro-4-Laura-Noriega-web.webp&quot;},{&quot;id&quot;:28935,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/robertmarinelli-24-Montserrat-Garciacesar-web.webp&quot;},{&quot;id&quot;:28934,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/A213617B-913A-49AD-A6DC-7EDA3846E524-Isaac-Priego-web.webp&quot;},{&quot;id&quot;:28933,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/09_WebResolution_Penumbra_PhotoByAlejandroRamirezOrozco-Carlos-H.Fernandez-web.webp&quot;},{&quot;id&quot;:28932,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Peca1-Design-Peca-web.webp&quot;},{&quot;id&quot;:28931,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/GI3A6624_dbc130c5-0f70-4bf9-8192-a61c0c3a48b1-Jimena-Trejo-web.webp&quot;},{&quot;id&quot;:28930,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/00-Ocuo-Studio_Ermita_Photos-Emilio-Torres_0-Inigo-Artigas-web.webp&quot;},{&quot;id&quot;:28929,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/2312-Orac-Hop-799_WX210_WX211_PX209_W110_W213_CX190_W214_W215_SX138_C332-MARCO-ANTONIO-VICENTE-web.webp&quot;},{&quot;id&quot;:28928,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DSCF3568-Ja-M-web.webp&quot;},{&quot;id&quot;:28927,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/5-luumrecubrimientos-Luum-Recubrimientos-web.webp&quot;},{&quot;id&quot;:28926,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/01_WebResolution_ImanolOrtiz_DesignWeekCDMX_PhotoByAlejandroRamirezOrozco-Imanol-Ortiz-web.webp&quot;},{&quot;id&quot;:28925,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Copia-de-Captura-de-pantalla-2026-06-19-a-las-8.53.10-p.m.-web.webp&quot;},{&quot;id&quot;:28924,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/IMG_3845-Estela-Menasse-web.webp&quot;},{&quot;id&quot;:28923,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/MemorialPastadeConchos_08-emARTquitectura-arte-y-diseno-web.webp&quot;},{&quot;id&quot;:28922,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/druschdesign10-Drusch-Design-web.webp&quot;},{&quot;id&quot;:28921,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Dorica-8-Maria-Martinez-Salazar-web.webp&quot;},{&quot;id&quot;:28920,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DanielCouttolenc10-Daniel-C-web.webp&quot;},{&quot;id&quot;:28919,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ConcreteWorkshop3-Luis-Fabrizio-web-1.webp&quot;},{&quot;id&quot;:28918,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/BenDi_03_Lounge-Amin-Tadj-web.webp&quot;},{&quot;id&quot;:28917,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ALAN-ROJAS_CANDELABRUM_-3-Alan-Rojas-Marin-web.webp&quot;},{&quot;id&quot;:28916,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ACOOCOORO-7-Antonio-I.-Mendoza-Bravo-web-1.webp&quot;},{&quot;id&quot;:28915,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/TORO-01-Marco-Parra-web.webp&quot;},{&quot;id&quot;:28914,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/TORO03-Marco-Parra-web.webp&quot;},{&quot;id&quot;:28913,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp&quot;},{&quot;id&quot;:28912,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Tenam2-Pamela-Almeida-web.webp&quot;},{&quot;id&quot;:28911,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/FernandoFarfan_UnnoGallery_Pieces_08-Mariana-Martinez-web.webp&quot;},{&quot;id&quot;:28910,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Stonemade1-Stonemade-web.webp&quot;},{&quot;id&quot;:28909,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/siecled7-SIEC-LED-Marketing-web.webp&quot;},{&quot;id&quot;:28908,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/scantex-icecubes-verde-2026-RODRIGO-BRINGAS-web.webp&quot;},{&quot;id&quot;:28907,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Screenshot_20260824_174643_Chrome-Karen-Otero-web.webp&quot;},{&quot;id&quot;:28906,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/radical5-Radical-web.webp&quot;},{&quot;id&quot;:28905,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/UsoGeneral_7-Plastiglas-de-Mexico-web.webp&quot;},{&quot;id&quot;:28904,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DSC08345-2-Kim-Loyo-PIRWI-SHOWROOM-web.webp&quot;},{&quot;id&quot;:28903,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/pajaroamarillo9-Tatiana-web.webp&quot;},{&quot;id&quot;:28902,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/onora-004-ONORA-VENTAS-web.webp&quot;},{&quot;id&quot;:28901,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/NUUMBRA-10-Nuumbra-Estudio-web.webp&quot;},{&quot;id&quot;:28900,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/nativaliving6-Valeria-Nava-web.webp&quot;},{&quot;id&quot;:28899,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/rocaa-x-mughal-3-MUGHAL-POLANCO-web.webp&quot;},{&quot;id&quot;:28898,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Monicamoussali9-rebeca-haboba-web.webp&quot;},{&quot;id&quot;:28897,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/MONTENIC8-web.webp&quot;},{&quot;id&quot;:28896,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/1-luumrecubrimientos-Luum-Recubrimientos-web.webp&quot;},{&quot;id&quot;:28895,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/LOTO-DEL-SUR_Casa-Sibarita_1-Simon-Ballen-web.webp&quot;},{&quot;id&quot;:28894,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/LosPatrones_2-Info-Los-Patrones-Mobiliario-web.webp&quot;},{&quot;id&quot;:28893,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/100imc-LIGNE-ROSET-MEXICO-web.webp&quot;},{&quot;id&quot;:28892,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/HunterDouglas_Draperies_07-Giulia-Andreatta-web.webp&quot;},{&quot;id&quot;:28890,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/HUAKAL7-Natalia-Alvarez-Palacios-web.webp&quot;},{&quot;id&quot;:28889,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/4137C140-2CB0-49D7-95AF-A72F03C98E34-Abi-Calvete-web.webp&quot;},{&quot;id&quot;:28888,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/IMG_1793-Maria-Alfaro-web.webp&quot;},{&quot;id&quot;:28887,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ESTEBANEZESTUDIO1-Estebanez-Estudio-web.webp&quot;},{&quot;id&quot;:28886,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ENTE05-Ventas-Ente-web-1.webp&quot;},{&quot;id&quot;:28885,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ensambleartesano7-Paola-Chavero-web.webp&quot;},{&quot;id&quot;:28884,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DIPTYQUE1-Sebastian-Rangel-web.webp&quot;},{&quot;id&quot;:28883,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DWR_2515610_100135445_black_v2_001-Alan-Goldberg-web.webp&quot;},{&quot;id&quot;:28882,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/origo-battery-big-white-davidpompa-davidpompa_001-Info-Studio-davidpompa-web.webp&quot;},{&quot;id&quot;:28878,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DSC05608-1-Kim-Loyo-PIRWI-SHOWROOM-web.webp&quot;},{&quot;id&quot;:28877,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/casaquieta1-Irasema-Mejia-web.webp&quot;},{&quot;id&quot;:28876,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/CACAO-08-CACAO-Design-web-1.webp&quot;},{&quot;id&quot;:28875,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/BONIFACIA-2-DIANA-MORA-web.webp&quot;},{&quot;id&quot;:28874,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Bandido-10-Joel-Rojas-web-1.webp&quot;},{&quot;id&quot;:28873,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/The-One-Pisos-HB-Comedor-Norma-Perez-web.webp&quot;},{&quot;id&quot;:28872,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ARKINOV-SYSTEMS-2-ALEJANDRO-TORRES-web.webp&quot;},{&quot;id&quot;:28871,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/andjacob-nocte-7-And-Jacob-web-1.webp&quot;},{&quot;id&quot;:28870,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/IMAGE1004-Antonio-Cruz-web.webp&quot;},{&quot;id&quot;:28866,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/KRISKADECOR-courtyard-hotel-10-Administracion-Addrede-web.webp&quot;},{&quot;id&quot;:28865,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/MG_8875-Salomon-Duek-web-1.jpg&quot;},{&quot;id&quot;:28864,&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Optimizador-GIF-1.gif&quot;}],&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-73b2e356 elementor-widget elementor-widget-spacer\" data-id=\"73b2e356\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4c3c49ba\" data-id=\"4c3c49ba\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-488cd15d elementor-widget elementor-widget-heading\" data-id=\"488cd15d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">DEALERS DE DISE\u00d1O<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-46542286 elementor-widget elementor-widget-text-editor\" data-id=\"46542286\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p dir=\"ltr\"><strong>Dealers de Dise\u00f1o<\/strong> es una plataforma esencial de <strong>Design House,<\/strong> el espacio m\u00e1s visitado de <strong>Design Week M\u00e9xico,<\/strong> que re\u00fane <strong>mobiliario, acabados, iluminaci\u00f3n, accesorios y arte-objeto<\/strong> de <strong>marcas, dise\u00f1adores, galer\u00edas y artesanos nacionales e internacionales.<\/strong><\/p><p dir=\"ltr\">Los interioristas y arquitectos de Design House integran piezas de los Dealers en sus espacios, creando ambientes reales donde el dise\u00f1o de interiores dialoga con el dise\u00f1o de producto. Cada pieza cuenta con un <strong>c\u00f3digo QR<\/strong> que permite conocer al dise\u00f1ador y las caracter\u00edsticas del objeto, enriqueciendo el recorrido y la conexi\u00f3n entre el p\u00fablico y las marcas.<\/p><p dir=\"ltr\">Este a\u00f1o se suma la categor\u00eda <strong>Bespoke Collection,<\/strong> una selecci\u00f3n de dise\u00f1adores con piezas de mayor formato que funcionan como punto focal dentro de los espacios, dando protagonismo a la escala y al gesto de autor en el dise\u00f1o de producto.<\/p><div id=\"gtx-trans\" style=\"position: absolute; left: 460px; top: 110px;\"><div class=\"gtx-trans-icon\">\u00a0<\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-e547d8a elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"e547d8a\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1430e69\" data-id=\"1430e69\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5dc6d0f elementor-widget elementor-widget-text-editor\" data-id=\"5dc6d0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><b>FECHAS:<br \/><\/b><span style=\"font-weight: 400;\">9 de octubre &#8211; 1 de noviembre<br \/><\/span><span style=\"font-weight: 400;\">Todos los d\u00edas:<br \/>10:00h a 19:00h<\/span><\/p><p><span style=\"font-family: inherit; font-size: inherit; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit;\"><b>ACCESO:<br \/><\/b><\/span><span style=\"font-family: inherit; font-size: inherit; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit;\"><span style=\"font-weight: inherit;\">Lunes a Jueves:<\/span><br \/><\/span><span style=\"font-family: inherit; font-size: inherit; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit;\"><b>$250 MXN<br \/><\/b><\/span><span style=\"font-family: inherit; font-size: inherit; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit;\"><span style=\"font-weight: inherit;\">Viernes a Domingo:<\/span><br \/><\/span><b style=\"font-family: inherit; font-size: inherit; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit;\">$300 MXN<\/b><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-003930e elementor-widget elementor-widget-html\" data-id=\"003930e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- Contenido Noscript para SEO adicional -->\n<noscript><a href=\"https:\/\/designhouse26.eventbrite.com\" rel=\"noopener noreferrer\" target=\"_blank\">Comprar boletos en Eventbrite<\/a><\/noscript>\n<!-- Puedes personalizar este bot\u00f3n como quieras -->\n<button id=\"eventbrite-widget-modal-trigger-1999729946100\" type=\"button\">Boletos \u2192<\/button>\n\n<script src=\"https:\/\/www.eventbrite.com.mx\/static\/widgets\/eb_widgets.js\"><\/script>\n\n<script type=\"text\/javascript\">\n    var exampleCallback = function() {\n        console.log('Pedido completo');\n    };\n\n    window.EBWidgets.createWidget({\n        widgetType: 'checkout',\n        eventId: '1999729946100',\n        themeSettings: {\n            brandColor: '#775566',\n        },\n        modal: true,\n        modalTriggerElementId: 'eventbrite-widget-modal-trigger-1999729946100',\n        onOrderComplete: exampleCallback\n    });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2a762b5\" data-id=\"2a762b5\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a0b165b elementor-widget elementor-widget-text-editor\" data-id=\"a0b165b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><b>UBICACI\u00d3N:<br \/><\/b><strong>Design House 2026<\/strong><br \/>Av. Paseo de las Palmas 1305, Lomas de Chapultepec VIII Secc, Miguel Hidalgo, 11000 Ciudad de M\u00e9xico, CDMX.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-146839a elementor-widget elementor-widget-google_maps\" data-id=\"146839a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"google_maps.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-custom-embed\">\n\t\t\t<iframe loading=\"lazy\"\n\t\t\t\t\tsrc=\"https:\/\/www.google.com\/maps\/embed\/v1\/place?key=AIzaSyDLbUCkZFgWXa1boCm0V0IQmC-imSJAVVg&#038;q=Av%20Palmas%201305&#038;zoom=15\"\n\t\t\t\t\ttitle=\"Av Palmas 1305\"\n\t\t\t\t\taria-label=\"Av Palmas 1305\"\n\t\t\t><\/iframe>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ef7b84d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ef7b84d\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-68571985\" data-id=\"68571985\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-20de4a37 elementor-widget elementor-widget-heading\" data-id=\"20de4a37\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">PARTICIPANTES<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ea16f55 elementor-widget elementor-widget-menu-anchor\" data-id=\"ea16f55\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"dealers-diseno\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6152f5c5 elementor-widget elementor-widget-heading\" data-id=\"6152f5c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">DEALERS DE DISE\u00d1O<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-ff6bbdf elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"ff6bbdf\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-ba16f8c\" data-id=\"ba16f8c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d181e0d elementor-widget elementor-widget-image\" data-id=\"d181e0d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/MG_8875-Salomon-Duek-web-1.jpg&quot;,&quot;id&quot;:28865,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/addisonhousemx\" target=\"_blank\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-adison-house-9dad5f.svg\" class=\"attachment-full size-full wp-image-28771\" alt=\"\" data-attachment-id=\"28771\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-adison-house-9dad5f\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-adison-house-9dad5f.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-adison-house-9dad5f\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-adison-house-9dad5f.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ADDISON HOUSE<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-3c30393\" data-id=\"3c30393\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2181b6f elementor-widget elementor-widget-image\" data-id=\"2181b6f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/KRISKADECOR-courtyard-hotel-10-Administracion-Addrede-web.webp&quot;,&quot;id&quot;:28866,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/a.ddrede\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-addrede-7d16ba.svg\" class=\"attachment-full size-full wp-image-28770\" alt=\"\" data-attachment-id=\"28770\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-addrede-7d16ba\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-addrede-7d16ba.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-addrede-7d16ba\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-addrede-7d16ba.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Addrede<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-0db4e0b\" data-id=\"0db4e0b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e9532eb elementor-widget elementor-widget-image\" data-id=\"e9532eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/IMAGE1004-Antonio-Cruz-web.webp&quot;,&quot;id&quot;:28870,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/alcovemex\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-alcove-070754.svg\" class=\"attachment-full size-full wp-image-28772\" alt=\"\" data-attachment-id=\"28772\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-alcove-070754\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-alcove-070754.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-alcove-070754\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-alcove-070754.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ALCOVE<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d60514a\" data-id=\"d60514a\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2ea1434 elementor-widget elementor-widget-image\" data-id=\"2ea1434\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/andjacob-nocte-7-And-Jacob-web-1.webp&quot;,&quot;id&quot;:28871,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/andjacob.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-and-jacob-e87540.svg\" class=\"attachment-full size-full wp-image-28773\" alt=\"\" data-attachment-id=\"28773\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-and-jacob-e87540\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-and-jacob-e87540.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-and-jacob-e87540\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-and-jacob-e87540.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">AND JACOB<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f660b56 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f660b56\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-79f10ac\" data-id=\"79f10ac\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e26fc95 elementor-widget elementor-widget-image\" data-id=\"e26fc95\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ARKINOV-SYSTEMS-2-ALEJANDRO-TORRES-web.webp&quot;,&quot;id&quot;:28872,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/arkinov_systems\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-arkinov-7e32c8.svg\" class=\"attachment-full size-full wp-image-28774\" alt=\"\" data-attachment-id=\"28774\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-arkinov-7e32c8\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-arkinov-7e32c8.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-arkinov-7e32c8\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-arkinov-7e32c8.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ARKINOV SYSTEMS<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4116894\" data-id=\"4116894\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ee6a1c8 elementor-widget elementor-widget-image\" data-id=\"ee6a1c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Bandido-10-Joel-Rojas-web-1.webp&quot;,&quot;id&quot;:28874,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/bandidostudio\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-bandido-045c7d.svg\" class=\"attachment-full size-full wp-image-28776\" alt=\"\" data-attachment-id=\"28776\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-bandido-045c7d\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-bandido-045c7d.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-bandido-045c7d\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-bandido-045c7d.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Bandido<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d3156ab\" data-id=\"d3156ab\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5457cf5 elementor-widget elementor-widget-image\" data-id=\"5457cf5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/BONIFACIA-2-DIANA-MORA-web.webp&quot;,&quot;id&quot;:28875,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/bonifacia_bonifacia\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-bonifacia-32e93d.svg\" class=\"attachment-full size-full wp-image-28777\" alt=\"\" data-attachment-id=\"28777\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-bonifacia-32e93d\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-bonifacia-32e93d.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-bonifacia-32e93d\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-bonifacia-32e93d.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">BONIFACIA<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-79f531a\" data-id=\"79f531a\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-75e3681 elementor-widget elementor-widget-image\" data-id=\"75e3681\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/CACAO-08-CACAO-Design-web-1.webp&quot;,&quot;id&quot;:28876,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/designcacao.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-cacao-29da1b.svg\" class=\"attachment-full size-full wp-image-28778\" alt=\"\" data-attachment-id=\"28778\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-cacao-29da1b\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-cacao-29da1b.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-cacao-29da1b\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-cacao-29da1b.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">CACAO<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-845180d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"845180d\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6887e3b\" data-id=\"6887e3b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7a4983a elementor-widget elementor-widget-image\" data-id=\"7a4983a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/casaquieta1-Irasema-Mejia-web.webp&quot;,&quot;id&quot;:28877,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/casaquieta\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-casaquieta-e4e6d1.svg\" class=\"attachment-full size-full wp-image-28779\" alt=\"\" data-attachment-id=\"28779\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-casaquieta-e4e6d1\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-casaquieta-e4e6d1.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-casaquieta-e4e6d1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-casaquieta-e4e6d1.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Casa Quieta<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-e901b61\" data-id=\"e901b61\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-eed346c elementor-widget elementor-widget-image\" data-id=\"eed346c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DSC05608-1-Kim-Loyo-PIRWI-SHOWROOM-web.webp&quot;,&quot;id&quot;:28878,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/clasicos.mexicanos\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-clasicos-mex-dd44e7.svg\" class=\"attachment-full size-full wp-image-28780\" alt=\"\" data-attachment-id=\"28780\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-clasicos-mex-dd44e7\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-clasicos-mex-dd44e7.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-clasicos-mex-dd44e7\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-clasicos-mex-dd44e7.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Cl\u00e1sicos Mexicanos<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-9a6e329\" data-id=\"9a6e329\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-9c3bf21 elementor-widget elementor-widget-image\" data-id=\"9c3bf21\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/origo-battery-big-white-davidpompa-davidpompa_001-Info-Studio-davidpompa-web.webp&quot;,&quot;id&quot;:28882,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/studiodavidpompa\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-davidpompa-a4e06e.svg\" class=\"attachment-full size-full wp-image-28781\" alt=\"\" data-attachment-id=\"28781\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-davidpompa-a4e06e\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-davidpompa-a4e06e.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-davidpompa-a4e06e\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-davidpompa-a4e06e.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">davidpompa<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-ea3e300\" data-id=\"ea3e300\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b66a9fb elementor-widget elementor-widget-image\" data-id=\"b66a9fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DWR_2515610_100135445_black_v2_001-Alan-Goldberg-web.webp&quot;,&quot;id&quot;:28883,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/dwr.com.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-design-within-reach-5a30d2.svg\" class=\"attachment-full size-full wp-image-28782\" alt=\"\" data-attachment-id=\"28782\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-design-within-reach-5a30d2\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-design-within-reach-5a30d2.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-design-within-reach-5a30d2\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-design-within-reach-5a30d2.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Design Within Reach<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-16743dc elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"16743dc\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-ab60d1e\" data-id=\"ab60d1e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-696966a elementor-widget elementor-widget-image\" data-id=\"696966a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DIPTYQUE1-Sebastian-Rangel-web.webp&quot;,&quot;id&quot;:28884,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/diptyque\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-diptyque-0851d6.svg\" class=\"attachment-full size-full wp-image-28783\" alt=\"\" data-attachment-id=\"28783\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-diptyque-0851d6\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-diptyque-0851d6.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-diptyque-0851d6\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-diptyque-0851d6.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">DIPTYQUE<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-02315d9\" data-id=\"02315d9\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8bcdb62 elementor-widget elementor-widget-image\" data-id=\"8bcdb62\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ensambleartesano7-Paola-Chavero-web.webp&quot;,&quot;id&quot;:28885,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/ensambleartesano\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ensamble-artesano-bd020e.svg\" class=\"attachment-full size-full wp-image-28784\" alt=\"\" data-attachment-id=\"28784\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-ensamble-artesano-bd020e\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ensamble-artesano-bd020e.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-ensamble-artesano-bd020e\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ensamble-artesano-bd020e.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Ensamble Artesano<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-a8798e2\" data-id=\"a8798e2\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8474f2b elementor-widget elementor-widget-image\" data-id=\"8474f2b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ENTE05-Ventas-Ente-web-1.webp&quot;,&quot;id&quot;:28886,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/ente_mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ente-35a592.svg\" class=\"attachment-full size-full wp-image-28785\" alt=\"\" data-attachment-id=\"28785\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-ente-35a592\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ente-35a592.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-ente-35a592\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ente-35a592.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ENTE arte.objeto<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-fa04037\" data-id=\"fa04037\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-23b0bbe elementor-widget elementor-widget-image\" data-id=\"23b0bbe\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ESTEBANEZESTUDIO1-Estebanez-Estudio-web.webp&quot;,&quot;id&quot;:28887,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/estebanez_estudio\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-estebanez-ccc6e8.svg\" class=\"attachment-full size-full wp-image-28786\" alt=\"\" data-attachment-id=\"28786\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-estebanez-ccc6e8\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-estebanez-ccc6e8.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-estebanez-ccc6e8\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-estebanez-ccc6e8.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Estebanez Estudio<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-20439c0 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"20439c0\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4177a67\" data-id=\"4177a67\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1f09d92 elementor-widget elementor-widget-image\" data-id=\"1f09d92\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/IMG_1793-Maria-Alfaro-web.webp&quot;,&quot;id&quot;:28888,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/estudioactual\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-estudio-actual-4a3d58.svg\" class=\"attachment-full size-full wp-image-28787\" alt=\"\" data-attachment-id=\"28787\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-estudio-actual-4a3d58\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-estudio-actual-4a3d58.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-estudio-actual-4a3d58\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-estudio-actual-4a3d58.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ESTUDIO ACTUAL<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-2da2f77\" data-id=\"2da2f77\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4315074 elementor-widget elementor-widget-image\" data-id=\"4315074\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/4137C140-2CB0-49D7-95AF-A72F03C98E34-Abi-Calvete-web.webp&quot;,&quot;id&quot;:28889,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/extraneutro\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-extra-neutro-2ee6ee.svg\" class=\"attachment-full size-full wp-image-28788\" alt=\"\" data-attachment-id=\"28788\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-extra-neutro-2ee6ee\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-extra-neutro-2ee6ee.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-extra-neutro-2ee6ee\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-extra-neutro-2ee6ee.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Extraneutro<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-2d4239b\" data-id=\"2d4239b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-de7dabf elementor-widget elementor-widget-image\" data-id=\"de7dabf\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/HUAKAL7-Natalia-Alvarez-Palacios-web.webp&quot;,&quot;id&quot;:28890,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/huakal.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-huakal-8b6f64.svg\" class=\"attachment-full size-full wp-image-28789\" alt=\"\" data-attachment-id=\"28789\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-huakal-8b6f64\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-huakal-8b6f64.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-huakal-8b6f64\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-huakal-8b6f64.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Huakal<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-40d7240\" data-id=\"40d7240\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-12f2a5b elementor-widget elementor-widget-image\" data-id=\"12f2a5b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/HunterDouglas_Draperies_07-Giulia-Andreatta-web.webp&quot;,&quot;id&quot;:28892,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/hunterdouglasmexicooficial\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-hunter-douglas-aca74b.svg\" class=\"attachment-full size-full wp-image-28790\" alt=\"\" data-attachment-id=\"28790\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-hunter-douglas-aca74b\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-hunter-douglas-aca74b.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-hunter-douglas-aca74b\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-hunter-douglas-aca74b.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Hunter Douglas<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-c3ff3c4 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c3ff3c4\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-b3dedaf\" data-id=\"b3dedaf\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-15fa0cc elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"15fa0cc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/100imc-LIGNE-ROSET-MEXICO-web.webp&quot;,&quot;id&quot;:28893,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/designprimario_lr\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ligne-roset-ea3dcd.svg\" class=\"attachment-full size-full wp-image-28791\" alt=\"\" data-attachment-id=\"28791\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-ligne-roset-ea3dcd\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ligne-roset-ea3dcd.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-ligne-roset-ea3dcd\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ligne-roset-ea3dcd.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">LIGNE ROSET<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-091ec2b\" data-id=\"091ec2b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f14d67b elementor-widget elementor-widget-image\" data-id=\"f14d67b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/LosPatrones_2-Info-Los-Patrones-Mobiliario-web.webp&quot;,&quot;id&quot;:28894,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/lospatronesmx\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-los-patrones-8f1dc1.svg\" class=\"attachment-full size-full wp-image-28792\" alt=\"\" data-attachment-id=\"28792\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-los-patrones-8f1dc1\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-los-patrones-8f1dc1.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-los-patrones-8f1dc1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-los-patrones-8f1dc1.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Los Patrones<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6f1825a\" data-id=\"6f1825a\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-867383a elementor-widget elementor-widget-image\" data-id=\"867383a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/LOTO-DEL-SUR_Casa-Sibarita_1-Simon-Ballen-web.webp&quot;,&quot;id&quot;:28895,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/imanolortizt\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-loto-del-sur-88517b.svg\" class=\"attachment-full size-full wp-image-28793\" alt=\"\" data-attachment-id=\"28793\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-loto-del-sur-88517b\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-loto-del-sur-88517b.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-loto-del-sur-88517b\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-loto-del-sur-88517b.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">LOTO DEL SUR<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-8c53444\" data-id=\"8c53444\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-9aa30f9 elementor-widget elementor-widget-image\" data-id=\"9aa30f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/1-luumrecubrimientos-Luum-Recubrimientos-web.webp&quot;,&quot;id&quot;:28896,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/luumrecubrimientos\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-luum-recubrimientos-76dea7.svg\" class=\"attachment-full size-full wp-image-28794\" alt=\"\" data-attachment-id=\"28794\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-luum-recubrimientos-76dea7\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-luum-recubrimientos-76dea7.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-luum-recubrimientos-76dea7\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-luum-recubrimientos-76dea7.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Lu'um Recubrimientos<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d8c913d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d8c913d\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-5c9deb8\" data-id=\"5c9deb8\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-569e750 elementor-widget elementor-widget-image\" data-id=\"569e750\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/MONTENIC8-web.webp&quot;,&quot;id&quot;:28897,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/molteniandc\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-molteni-co-ab9522.svg\" class=\"attachment-full size-full wp-image-28795\" alt=\"\" data-attachment-id=\"28795\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-molteni-co-ab9522\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-molteni-co-ab9522.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-molteni-co-ab9522\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-molteni-co-ab9522.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Molteni&amp;C<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-447edda\" data-id=\"447edda\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ace9aa8 elementor-widget elementor-widget-image\" data-id=\"ace9aa8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Monicamoussali9-rebeca-haboba-web.webp&quot;,&quot;id&quot;:28898,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/monicamoussali_art\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-monica-moussali-585dd3.svg\" class=\"attachment-full size-full wp-image-28796\" alt=\"\" data-attachment-id=\"28796\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-monica-moussali-585dd3\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-monica-moussali-585dd3.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-monica-moussali-585dd3\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-monica-moussali-585dd3.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Monica Moussali Art<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-80f2e66\" data-id=\"80f2e66\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5967097 elementor-widget elementor-widget-image\" data-id=\"5967097\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/rocaa-x-mughal-3-MUGHAL-POLANCO-web.webp&quot;,&quot;id&quot;:28899,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/mughalrugs\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-mughal-7e6b3f.svg\" class=\"attachment-full size-full wp-image-28797\" alt=\"\" data-attachment-id=\"28797\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-mughal-7e6b3f\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-mughal-7e6b3f.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-mughal-7e6b3f\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-mughal-7e6b3f.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">MUGHAL<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d114a57\" data-id=\"d114a57\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f8ada16 elementor-widget elementor-widget-image\" data-id=\"f8ada16\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/nativaliving6-Valeria-Nava-web.webp&quot;,&quot;id&quot;:28900,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/nativaliving\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-nativa-living-4870f4.svg\" class=\"attachment-full size-full wp-image-28798\" alt=\"\" data-attachment-id=\"28798\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-nativa-living-4870f4\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-nativa-living-4870f4.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-nativa-living-4870f4\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-nativa-living-4870f4.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Nativa Living<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-a31472a elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a31472a\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4f96bff\" data-id=\"4f96bff\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4b71a90 elementor-widget elementor-widget-image\" data-id=\"4b71a90\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/NUUMBRA-10-Nuumbra-Estudio-web.webp&quot;,&quot;id&quot;:28901,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/nuumbra.estudio\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-nuumbra-cf97d1.svg\" class=\"attachment-full size-full wp-image-28799\" alt=\"\" data-attachment-id=\"28799\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-nuumbra-cf97d1\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-nuumbra-cf97d1.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-nuumbra-cf97d1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-nuumbra-cf97d1.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Nuumbra Estudio<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-a78ee49\" data-id=\"a78ee49\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1fda691 elementor-widget elementor-widget-image\" data-id=\"1fda691\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/onora-004-ONORA-VENTAS-web.webp&quot;,&quot;id&quot;:28902,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/onoracasa\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-onora-ad0770.svg\" class=\"attachment-full size-full wp-image-28800\" alt=\"\" data-attachment-id=\"28800\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-onora-ad0770\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-onora-ad0770.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-onora-ad0770\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-onora-ad0770.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ONORA<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d696765\" data-id=\"d696765\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b241d79 elementor-widget elementor-widget-image\" data-id=\"b241d79\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/pajaroamarillo9-Tatiana-web.webp&quot;,&quot;id&quot;:28903,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/pajaroamarillo_\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-pajaro-amarillo-bb7ab8.svg\" class=\"attachment-full size-full wp-image-28801\" alt=\"\" data-attachment-id=\"28801\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-pajaro-amarillo-bb7ab8\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-pajaro-amarillo-bb7ab8.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-pajaro-amarillo-bb7ab8\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-pajaro-amarillo-bb7ab8.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">P\u00e1jaro Amarillo<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-608113a\" data-id=\"608113a\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-07ad81a elementor-widget elementor-widget-image\" data-id=\"07ad81a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DSC08345-2-Kim-Loyo-PIRWI-SHOWROOM-web.webp&quot;,&quot;id&quot;:28904,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/pirwi\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-pirwi-1796f2.svg\" class=\"attachment-full size-full wp-image-28802\" alt=\"\" data-attachment-id=\"28802\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-pirwi-1796f2\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-pirwi-1796f2.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-pirwi-1796f2\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-pirwi-1796f2.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Pirwi<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d96b203 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d96b203\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-e25dabd\" data-id=\"e25dabd\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6f82ff7 elementor-widget elementor-widget-image\" data-id=\"6f82ff7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/UsoGeneral_7-Plastiglas-de-Mexico-web.webp&quot;,&quot;id&quot;:28905,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/plastiglasdemex\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-plastiglas-266f65.svg\" class=\"attachment-full size-full wp-image-28803\" alt=\"\" data-attachment-id=\"28803\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-plastiglas-266f65\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-plastiglas-266f65.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-plastiglas-266f65\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-plastiglas-266f65.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Plastiglas de M\u00e9xico<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-49355eb\" data-id=\"49355eb\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-93daebc elementor-widget elementor-widget-image\" data-id=\"93daebc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/radical5-Radical-web.webp&quot;,&quot;id&quot;:28906,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/____radical__\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-radical-64a9de.svg\" class=\"attachment-full size-full wp-image-28804\" alt=\"\" data-attachment-id=\"28804\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-radical-64a9de\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-radical-64a9de.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-radical-64a9de\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-radical-64a9de.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Radical<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-8d35b50\" data-id=\"8d35b50\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-05dbc5a elementor-widget elementor-widget-image\" data-id=\"05dbc5a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Screenshot_20260824_174643_Chrome-Karen-Otero-web.webp&quot;,&quot;id&quot;:28907,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/rolscarpets.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-rols-carpets-bbfbcf.svg\" class=\"attachment-full size-full wp-image-28805\" alt=\"\" data-attachment-id=\"28805\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-rols-carpets-bbfbcf\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-rols-carpets-bbfbcf.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-rols-carpets-bbfbcf\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-rols-carpets-bbfbcf.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ROLS CARPETS<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-7fc14ec\" data-id=\"7fc14ec\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0acfc7f elementor-widget elementor-widget-image\" data-id=\"0acfc7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/scantex-icecubes-verde-2026-RODRIGO-BRINGAS-web.webp&quot;,&quot;id&quot;:28908,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/scantexmexico\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-scantex-cebf6a.svg\" class=\"attachment-full size-full wp-image-28806\" alt=\"\" data-attachment-id=\"28806\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-scantex-cebf6a\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-scantex-cebf6a.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-scantex-cebf6a\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-scantex-cebf6a.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ScanTex<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-fcd5ad7 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"fcd5ad7\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-49ba836\" data-id=\"49ba836\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2549d86 elementor-widget elementor-widget-image\" data-id=\"2549d86\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/siecled7-SIEC-LED-Marketing-web.webp&quot;,&quot;id&quot;:28909,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/siecledmx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-siec-led-6d9739.svg\" class=\"attachment-full size-full wp-image-28807\" alt=\"\" data-attachment-id=\"28807\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-siec-led-6d9739\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-siec-led-6d9739.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-siec-led-6d9739\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-siec-led-6d9739.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">SIEC LED<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-30a73a5\" data-id=\"30a73a5\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-644fc67 elementor-widget elementor-widget-image\" data-id=\"644fc67\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Stonemade1-Stonemade-web.webp&quot;,&quot;id&quot;:28910,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/stonemade_design\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-stonemade-1cb6eb.svg\" class=\"attachment-full size-full wp-image-28808\" alt=\"\" data-attachment-id=\"28808\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-stonemade-1cb6eb\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-stonemade-1cb6eb.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-stonemade-1cb6eb\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-stonemade-1cb6eb.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Stonemade<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4056192\" data-id=\"4056192\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a87395b elementor-widget elementor-widget-image\" data-id=\"a87395b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/FernandoFarfan_UnnoGallery_Pieces_08-Mariana-Martinez-web.webp&quot;,&quot;id&quot;:28911,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/studio84mx\/%20\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-studio-84-e131d8.svg\" class=\"attachment-full size-full wp-image-28809\" alt=\"\" data-attachment-id=\"28809\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-studio-84-e131d8\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-studio-84-e131d8.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-studio-84-e131d8\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-studio-84-e131d8.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Studio 84<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-ce53b37\" data-id=\"ce53b37\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-18306bd elementor-widget elementor-widget-image\" data-id=\"18306bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Tenam2-Pamela-Almeida-web.webp&quot;,&quot;id&quot;:28912,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/tenam.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-tenam-studio-c7786f.svg\" class=\"attachment-full size-full wp-image-28810\" alt=\"\" data-attachment-id=\"28810\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-tenam-studio-c7786f\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-tenam-studio-c7786f.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-tenam-studio-c7786f\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-tenam-studio-c7786f.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Tenam Studio<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d2107b2 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d2107b2\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-7c7d884\" data-id=\"7c7d884\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c8c3f69 elementor-widget elementor-widget-image\" data-id=\"c8c3f69\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/The-One-Pisos-HB-Comedor-Norma-Perez-web.webp&quot;,&quot;id&quot;:28873,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/theonemexico\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-the-one-d416a9.svg\" class=\"attachment-full size-full wp-image-28811\" alt=\"\" data-attachment-id=\"28811\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-the-one-d416a9\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-the-one-d416a9.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-the-one-d416a9\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-the-one-d416a9.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">The One Pisos de Madera<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-7861e41\" data-id=\"7861e41\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d465563 elementor-widget elementor-widget-image\" data-id=\"d465563\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/TORO-01-Marco-Parra-web.webp&quot;,&quot;id&quot;:28915,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/toromanifesto\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-toro-manifesto-ad8763.svg\" class=\"attachment-full size-full wp-image-28812\" alt=\"\" data-attachment-id=\"28812\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-toro-manifesto-ad8763\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-toro-manifesto-ad8763.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-toro-manifesto-ad8763\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-toro-manifesto-ad8763.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">TORO MANIFIESTO<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-55df76c\" data-id=\"55df76c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-327b5cd elementor-widget elementor-widget-image\" data-id=\"327b5cd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp&quot;,&quot;id&quot;:28913,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/ukma.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ukma-b35ed4.svg\" class=\"attachment-full size-full wp-image-28815\" alt=\"\" data-attachment-id=\"28815\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/dd26-ukma-b35ed4\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ukma-b35ed4.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"DD26-ukma-b35ed4\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/DD26-ukma-b35ed4.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">UKMA<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-dfdced0\" data-id=\"dfdced0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-ec08f4c elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"ec08f4c\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-01a0ec7\" data-id=\"01a0ec7\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fb0471a elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"fb0471a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9546c06 elementor-widget elementor-widget-menu-anchor\" data-id=\"9546c06\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"bespoke-collection\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-59654bc elementor-widget elementor-widget-heading\" data-id=\"59654bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">BESPOKE COLLECTION<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2a9b575 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2a9b575\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-5951843\" data-id=\"5951843\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c216fa5 elementor-widget elementor-widget-image\" data-id=\"c216fa5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ACOOCOORO-7-Antonio-I.-Mendoza-Bravo-web-1.webp&quot;,&quot;id&quot;:28916,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/acoocooro\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-acoocooro-f32bb0.svg\" class=\"attachment-full size-full wp-image-28832\" alt=\"\" data-attachment-id=\"28832\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-acoocooro-f32bb0\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-acoocooro-f32bb0.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-acoocooro-f32bb0\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-acoocooro-f32bb0.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Acoocooro<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-c4642b4\" data-id=\"c4642b4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-505178e elementor-widget elementor-widget-image\" data-id=\"505178e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ALAN-ROJAS_CANDELABRUM_-3-Alan-Rojas-Marin-web.webp&quot;,&quot;id&quot;:28917,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/nosoy_alan\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-addrede-9033aa.svg\" class=\"attachment-full size-full wp-image-28833\" alt=\"\" data-attachment-id=\"28833\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-addrede-9033aa\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-addrede-9033aa.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-addrede-9033aa\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-addrede-9033aa.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">ALAN ROJAS MARIN<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-f18c773\" data-id=\"f18c773\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8fd333d elementor-widget elementor-widget-image\" data-id=\"8fd333d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/BenDi_03_Lounge-Amin-Tadj-web.webp&quot;,&quot;id&quot;:28918,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/amintadj\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-alan-rojas-2ecbd6.svg\" class=\"attachment-full size-full wp-image-28834\" alt=\"\" data-attachment-id=\"28834\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-alan-rojas-2ecbd6\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-alan-rojas-2ecbd6.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-alan-rojas-2ecbd6\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-alan-rojas-2ecbd6.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">BenDi by Amin Tadj Studio <\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-0311ad8\" data-id=\"0311ad8\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7e02316 elementor-widget elementor-widget-image\" data-id=\"7e02316\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/ConcreteWorkshop3-Luis-Fabrizio-web-1.webp&quot;,&quot;id&quot;:28919,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/concreteworkshopmx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-concrete-workshop-e5adc6.svg\" class=\"attachment-full size-full wp-image-28836\" alt=\"\" data-attachment-id=\"28836\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-concrete-workshop-e5adc6\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-concrete-workshop-e5adc6.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-concrete-workshop-e5adc6\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-concrete-workshop-e5adc6.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Concrete Workshop<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-95395a6 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"95395a6\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-2fccb2e\" data-id=\"2fccb2e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c5b73d1 elementor-widget elementor-widget-image\" data-id=\"c5b73d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DanielCouttolenc10-Daniel-C-web.webp&quot;,&quot;id&quot;:28920,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/danielcouttolenc\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-daniel-couttolenc-546468.svg\" class=\"attachment-full size-full wp-image-28837\" alt=\"\" data-attachment-id=\"28837\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-daniel-couttolenc-546468\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-daniel-couttolenc-546468.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-daniel-couttolenc-546468\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-daniel-couttolenc-546468.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Daniel Couttolenc<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-08dabe7\" data-id=\"08dabe7\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c99bd02 elementor-widget elementor-widget-image\" data-id=\"c99bd02\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Dorica-8-Maria-Martinez-Salazar-web.webp&quot;,&quot;id&quot;:28921,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/dorica.mx\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-bandido-5137d9.svg\" class=\"attachment-full size-full wp-image-28835\" alt=\"\" data-attachment-id=\"28835\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-bandido-5137d9\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-bandido-5137d9.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-bandido-5137d9\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-bandido-5137d9.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">D\u00f3rica<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-04f1a63\" data-id=\"04f1a63\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-238f8fa elementor-widget elementor-widget-image\" data-id=\"238f8fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/druschdesign10-Drusch-Design-web.webp&quot;,&quot;id&quot;:28922,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/druschdesign\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-drusch-design-a80ada.svg\" class=\"attachment-full size-full wp-image-28838\" alt=\"\" data-attachment-id=\"28838\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-drusch-design-a80ada\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-drusch-design-a80ada.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-drusch-design-a80ada\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-drusch-design-a80ada.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Drusch Design<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-05e2d3b\" data-id=\"05e2d3b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b9cc861 elementor-widget elementor-widget-image\" data-id=\"b9cc861\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/MemorialPastadeConchos_08-emARTquitectura-arte-y-diseno-web.webp&quot;,&quot;id&quot;:28923,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/emartquitectura\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-emartquitectura-7e4768.svg\" class=\"attachment-full size-full wp-image-28839\" alt=\"\" data-attachment-id=\"28839\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-emartquitectura-7e4768\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-emartquitectura-7e4768.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-emartquitectura-7e4768\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-emartquitectura-7e4768.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">emARTquitectura Lighting<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6a65c5b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6a65c5b\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-8585302\" data-id=\"8585302\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-554ded2 elementor-widget elementor-widget-image\" data-id=\"554ded2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/IMG_3845-Estela-Menasse-web.webp&quot;,&quot;id&quot;:28924,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/estudiomenasse\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-estela-menasse-580908.svg\" class=\"attachment-full size-full wp-image-28840\" alt=\"\" data-attachment-id=\"28840\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-estela-menasse-580908\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-estela-menasse-580908.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-estela-menasse-580908\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-estela-menasse-580908.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Estudio Menasse<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-df34f36\" data-id=\"df34f36\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f89e48b elementor-widget elementor-widget-image\" data-id=\"f89e48b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Copia-de-Captura-de-pantalla-2026-06-19-a-las-8.53.10-p.m.-web.webp&quot;,&quot;id&quot;:28925,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/hiato.mx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-hiato-9c7f00.svg\" class=\"attachment-full size-full wp-image-28841\" alt=\"\" data-attachment-id=\"28841\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-hiato-9c7f00\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-hiato-9c7f00.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-hiato-9c7f00\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-hiato-9c7f00.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">HIATO<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-72a2176\" data-id=\"72a2176\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-183b68f elementor-widget elementor-widget-image\" data-id=\"183b68f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/01_WebResolution_ImanolOrtiz_DesignWeekCDMX_PhotoByAlejandroRamirezOrozco-Imanol-Ortiz-web.webp&quot;,&quot;id&quot;:28926,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/imanolortizt\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-imanol-ortiz-d4ee0c.svg\" class=\"attachment-full size-full wp-image-28842\" alt=\"\" data-attachment-id=\"28842\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-imanol-ortiz-d4ee0c\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-imanol-ortiz-d4ee0c.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-imanol-ortiz-d4ee0c\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-imanol-ortiz-d4ee0c.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Imanol Ortiz<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-ded1126\" data-id=\"ded1126\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4d35c77 elementor-widget elementor-widget-image\" data-id=\"4d35c77\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Dealers-de-Diseno-2025-GALERIA-LE-LABORATOIRE-7-web.webp&quot;,&quot;id&quot;:28982,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/galerialelaboratoire\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-le-laboratoire-8df944.svg\" class=\"attachment-full size-full wp-image-28843\" alt=\"\" data-attachment-id=\"28843\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-le-laboratoire-8df944\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-le-laboratoire-8df944.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-le-laboratoire-8df944\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-le-laboratoire-8df944.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Le Laboratoire<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1077e47 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1077e47\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-41b7981\" data-id=\"41b7981\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6cac8bc elementor-widget elementor-widget-image\" data-id=\"6cac8bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/5-luumrecubrimientos-Luum-Recubrimientos-web.webp&quot;,&quot;id&quot;:28927,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/luumrecubrimientos\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-luum-recubrimientos-809c9c.svg\" class=\"attachment-full size-full wp-image-28845\" alt=\"\" data-attachment-id=\"28845\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-luum-recubrimientos-809c9c\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-luum-recubrimientos-809c9c.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-luum-recubrimientos-809c9c\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-luum-recubrimientos-809c9c.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Lu'um Recubrimientos<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-3e74360\" data-id=\"3e74360\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f157774 elementor-widget elementor-widget-image\" data-id=\"f157774\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/DSCF3568-Ja-M-web.webp&quot;,&quot;id&quot;:28928,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/margules.group\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-margules-b3875d.svg\" class=\"attachment-full size-full wp-image-28846\" alt=\"\" data-attachment-id=\"28846\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-margules-b3875d\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-margules-b3875d.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-margules-b3875d\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-margules-b3875d.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Margules<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-ae42c59\" data-id=\"ae42c59\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2047717 elementor-widget elementor-widget-image\" data-id=\"2047717\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/2312-Orac-Hop-799_WX210_WX211_PX209_W110_W213_CX190_W214_W215_SX138_C332-MARCO-ANTONIO-VICENTE-web.webp&quot;,&quot;id&quot;:28929,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/ocram.internacional\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-ocram-70bfa6.svg\" class=\"attachment-full size-full wp-image-28847\" alt=\"\" data-attachment-id=\"28847\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-ocram-70bfa6\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-ocram-70bfa6.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-ocram-70bfa6\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-ocram-70bfa6.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Ocram Internacional<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-26a544f\" data-id=\"26a544f\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c6f5033 elementor-widget elementor-widget-image\" data-id=\"c6f5033\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/00-Ocuo-Studio_Ermita_Photos-Emilio-Torres_0-Inigo-Artigas-web.webp&quot;,&quot;id&quot;:28930,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/ocuo_studio\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-ocuo-65a311.svg\" class=\"attachment-full size-full wp-image-28848\" alt=\"\" data-attachment-id=\"28848\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-ocuo-65a311\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-ocuo-65a311.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-ocuo-65a311\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-ocuo-65a311.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Ocuo Studio<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-8ba2aaa elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8ba2aaa\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-cac3ca9\" data-id=\"cac3ca9\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-955f74e elementor-widget elementor-widget-image\" data-id=\"955f74e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/GI3A6624_dbc130c5-0f70-4bf9-8192-a61c0c3a48b1-Jimena-Trejo-web.webp&quot;,&quot;id&quot;:28931,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/ometdesign\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-omet-5edcd0.svg\" class=\"attachment-full size-full wp-image-28849\" alt=\"\" data-attachment-id=\"28849\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-omet-5edcd0\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-omet-5edcd0.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-omet-5edcd0\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-omet-5edcd0.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">OMET<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-97c1bb1\" data-id=\"97c1bb1\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7ada2a4 elementor-widget elementor-widget-image\" data-id=\"7ada2a4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/Peca1-Design-Peca-web.webp&quot;,&quot;id&quot;:28932,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/peca_studio\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-peca-308bdd.svg\" class=\"attachment-full size-full wp-image-28850\" alt=\"\" data-attachment-id=\"28850\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-peca-308bdd\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-peca-308bdd.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-peca-308bdd\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-peca-308bdd.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Peca Studio<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-5a485d0\" data-id=\"5a485d0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b6aed89 elementor-widget elementor-widget-image\" data-id=\"b6aed89\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/09_WebResolution_Penumbra_PhotoByAlejandroRamirezOrozco-Carlos-H.Fernandez-web.webp&quot;,&quot;id&quot;:28933,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/penumbra_gallery_\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-penumbra-65d4be.svg\" class=\"attachment-full size-full wp-image-28851\" alt=\"\" data-attachment-id=\"28851\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-penumbra-65d4be\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-penumbra-65d4be.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-penumbra-65d4be\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-penumbra-65d4be.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Penumbra<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d7a0fdc\" data-id=\"d7a0fdc\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6691784 elementor-widget elementor-widget-image\" data-id=\"6691784\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/A213617B-913A-49AD-A6DC-7EDA3846E524-Isaac-Priego-web.webp&quot;,&quot;id&quot;:28934,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/priego.studio\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-priego-f61612.svg\" class=\"attachment-full size-full wp-image-28852\" alt=\"\" data-attachment-id=\"28852\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-priego-f61612\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-priego-f61612.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-priego-f61612\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-priego-f61612.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Priego Studio<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f8433bd elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f8433bd\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d1853ad\" data-id=\"d1853ad\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d360f2f elementor-widget elementor-widget-image\" data-id=\"d360f2f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/robertmarinelli-24-Montserrat-Garciacesar-web.webp&quot;,&quot;id&quot;:28935,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/robertmarinellistudio\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-rm-studio-robert-marinelli-505ba7.svg\" class=\"attachment-full size-full wp-image-28853\" alt=\"\" data-attachment-id=\"28853\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-rm-studio-robert-marinelli-505ba7\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-rm-studio-robert-marinelli-505ba7.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-rm-studio-robert-marinelli-505ba7\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-rm-studio-robert-marinelli-505ba7.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Studio Robert Marinelli<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-78587e4\" data-id=\"78587e4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-26ab98c elementor-widget elementor-widget-image\" data-id=\"26ab98c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ha_cmc_switcher&quot;:&quot;yes&quot;,&quot;ha_cmc_type&quot;:&quot;image&quot;,&quot;ha_cmc_image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/TRIBUTO-Balance-Buro-4-Laura-Noriega-web.webp&quot;,&quot;id&quot;:28936,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;ha_cmc_img_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:250,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:300,&quot;sizes&quot;:[]},&quot;ha_default_cmc&quot;:&quot;default&quot;,&quot;ha_cmc_image_fit&quot;:&quot;cover&quot;,&quot;ha_cmc_img_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:150,&quot;sizes&quot;:[]},&quot;ha_cmc_img_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;ha_cmc_img_rotate&quot;:&quot;0&quot;,&quot;ha_cmc_img_opacity&quot;:&quot;1&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"wp-caption\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.instagram.com\/tributomx\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-los-patrones-780627.svg\" class=\"attachment-full size-full wp-image-28844\" alt=\"\" data-attachment-id=\"28844\" data-permalink=\"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/attachment\/bc26-los-patrones-780627\/\" data-orig-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-los-patrones-780627.svg\" data-orig-size=\"300,200\" data-comments-opened=\"0\" data-image-title=\"BC26-los-patrones-780627\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/BC26-los-patrones-780627.svg\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<figcaption class=\"widget-image-caption wp-caption-text\">Tributo GDL<\/figcaption>\n\t\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d940644\" data-id=\"d940644\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-e28108c\" data-id=\"e28108c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6d6cb46 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6d6cb46\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8e7af18\" data-id=\"8e7af18\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-be307d8 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"be307d8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1e96862 elementor-widget elementor-widget-menu-anchor\" data-id=\"1e96862\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"mapa-dwm26\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-069bd03 elementor-widget elementor-widget-heading\" data-id=\"069bd03\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">MAPA<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c35ac54 elementor-widget elementor-widget-heading\" data-id=\"c35ac54\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">DEALERS DE DISE\u00d1O + BESPOKE COLLECTION<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9752d0c elementor-align-center elementor-widget elementor-widget-button\" data-id=\"9752d0c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.google.com\/maps\/d\/u\/2\/edit?mid=1OGSeQYiNjhdmPwbqkWd2sBGiy7KZt8w&#038;usp=sharing\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Ver mapa \u2192<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ee3261b elementor-widget elementor-widget-html\" data-id=\"ee3261b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<iframe src=\"https:\/\/www.google.com\/maps\/d\/u\/0\/embed?mid=1OGSeQYiNjhdmPwbqkWd2sBGiy7KZt8w&ehbc=2E312F&noprof=1\" width=\"640\" height=\"600\"><\/iframe>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Dealers de Dise\u00f1o re\u00fane en Design House una selecci\u00f3n de mobiliario, acabados, iluminaci\u00f3n y arte-objeto de marcas y dise\u00f1adores nacionales e internacionales, integrados en ambientes reales por interioristas y arquitectos. Este a\u00f1o se suma Bespoke Collection, piezas de mayor formato que son el punto focal de los espacios.<\/p>","protected":false},"author":175,"featured_media":28913,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_themeisle_gutenberg_block_has_review":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[168],"tags":[],"class_list":["post-28057","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programa"],"blocksy_meta":{"has_hero_section":"disabled","disable_featured_image":"yes","disable_posts_navigation":"yes","styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":8}},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Dealers de Dise\u00f1o - Design Week Mexico<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/designweekmexico.com\/en\/programa\/dealers-diseno\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dealers de Dise\u00f1o - Design Week Mexico\" \/>\n<meta property=\"og:description\" content=\"Dealers de Dise\u00f1o re\u00fane en Design House una selecci\u00f3n de mobiliario, acabados, iluminaci\u00f3n y arte-objeto de marcas y dise\u00f1adores nacionales e internacionales, integrados en ambientes reales por interioristas y arquitectos. Este a\u00f1o se suma Bespoke Collection, piezas de mayor formato que son el punto focal de los espacios.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/designweekmexico.com\/en\/programa\/dealers-diseno\/\" \/>\n<meta property=\"og:site_name\" content=\"Design Week Mexico\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/designweekmex\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-13T17:58:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-10T19:55:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Design Week Mexico\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@designweekmex\" \/>\n<meta name=\"twitter:site\" content=\"@designweekmex\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Design Week Mexico\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"15 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/\"},\"author\":{\"name\":\"Design Week Mexico\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#\\\/schema\\\/person\\\/0b5016c53aa584cccbd7f8988f8bdf42\"},\"headline\":\"Dealers de Dise\u00f1o\",\"datePublished\":\"2026-08-13T17:58:13+00:00\",\"dateModified\":\"2026-09-10T19:55:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/\"},\"wordCount\":463,\"publisher\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp\",\"articleSection\":[\"DWM26\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/\",\"url\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/\",\"name\":\"Dealers de Dise\u00f1o - Design Week Mexico\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp\",\"datePublished\":\"2026-08-13T17:58:13+00:00\",\"dateModified\":\"2026-09-10T19:55:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/#primaryimage\",\"url\":\"https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp\",\"contentUrl\":\"https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp\",\"width\":1920,\"height\":1280},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/programa\\\/dealers-diseno\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/designweekmexico.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dealers de Dise\u00f1o\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#website\",\"url\":\"https:\\\/\\\/designweekmexico.com\\\/\",\"name\":\"Design Week Mexico\",\"description\":\"Dise\u00f1ando el futuro...\",\"publisher\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/designweekmexico.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#organization\",\"name\":\"Design Week Mexico\",\"url\":\"https:\\\/\\\/designweekmexico.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Asset-58-70eae4-3141d7.svg\",\"contentUrl\":\"https:\\\/\\\/designweekmexico.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Asset-58-70eae4-3141d7.svg\",\"width\":1741,\"height\":103,\"caption\":\"Design Week Mexico\"},\"image\":{\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/designweekmex\",\"https:\\\/\\\/x.com\\\/designweekmex\",\"https:\\\/\\\/www.instagram.com\\\/designweekmex\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/designweekmexico\",\"https:\\\/\\\/vimeo.com\\\/designweekmexico\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/designweekmx\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/designweekmexico.com\\\/#\\\/schema\\\/person\\\/0b5016c53aa584cccbd7f8988f8bdf42\",\"name\":\"Design Week Mexico\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0830bfc50cafacf340fb14966c0f6cc5c88935cded635f38ae2ed050785fd609?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0830bfc50cafacf340fb14966c0f6cc5c88935cded635f38ae2ed050785fd609?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0830bfc50cafacf340fb14966c0f6cc5c88935cded635f38ae2ed050785fd609?s=96&d=mm&r=g\",\"caption\":\"Design Week Mexico\"},\"url\":\"https:\\\/\\\/designweekmexico.com\\\/en\\\/author\\\/designweekmexico\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Dealers de Dise\u00f1o - Design Week Mexico","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:\/\/designweekmexico.com\/en\/programa\/dealers-diseno\/","og_locale":"en_US","og_type":"article","og_title":"Dealers de Dise\u00f1o - Design Week Mexico","og_description":"Dealers de Dise\u00f1o re\u00fane en Design House una selecci\u00f3n de mobiliario, acabados, iluminaci\u00f3n y arte-objeto de marcas y dise\u00f1adores nacionales e internacionales, integrados en ambientes reales por interioristas y arquitectos. Este a\u00f1o se suma Bespoke Collection, piezas de mayor formato que son el punto focal de los espacios.","og_url":"https:\/\/designweekmexico.com\/en\/programa\/dealers-diseno\/","og_site_name":"Design Week Mexico","article_publisher":"https:\/\/www.facebook.com\/designweekmex","article_published_time":"2026-08-13T17:58:13+00:00","article_modified_time":"2026-09-10T19:55:41+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp","type":"image\/webp"}],"author":"Design Week Mexico","twitter_card":"summary_large_image","twitter_creator":"@designweekmex","twitter_site":"@designweekmex","twitter_misc":{"Written by":"Design Week Mexico","Est. reading time":"15 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/#article","isPartOf":{"@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/"},"author":{"name":"Design Week Mexico","@id":"https:\/\/designweekmexico.com\/#\/schema\/person\/0b5016c53aa584cccbd7f8988f8bdf42"},"headline":"Dealers de Dise\u00f1o","datePublished":"2026-08-13T17:58:13+00:00","dateModified":"2026-09-10T19:55:41+00:00","mainEntityOfPage":{"@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/"},"wordCount":463,"publisher":{"@id":"https:\/\/designweekmexico.com\/#organization"},"image":{"@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/#primaryimage"},"thumbnailUrl":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp","articleSection":["DWM26"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/","url":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/","name":"Dealers de Dise\u00f1o - Design Week Mexico","isPartOf":{"@id":"https:\/\/designweekmexico.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/#primaryimage"},"image":{"@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/#primaryimage"},"thumbnailUrl":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp","datePublished":"2026-08-13T17:58:13+00:00","dateModified":"2026-09-10T19:55:41+00:00","breadcrumb":{"@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/designweekmexico.com\/programa\/dealers-diseno\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/#primaryimage","url":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp","contentUrl":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp","width":1920,"height":1280},{"@type":"BreadcrumbList","@id":"https:\/\/designweekmexico.com\/programa\/dealers-diseno\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/designweekmexico.com\/"},{"@type":"ListItem","position":2,"name":"Dealers de Dise\u00f1o"}]},{"@type":"WebSite","@id":"https:\/\/designweekmexico.com\/#website","url":"https:\/\/designweekmexico.com\/","name":"Design Week Mexico","description":"Dise\u00f1ando el futuro...","publisher":{"@id":"https:\/\/designweekmexico.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/designweekmexico.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/designweekmexico.com\/#organization","name":"Design Week Mexico","url":"https:\/\/designweekmexico.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/designweekmexico.com\/#\/schema\/logo\/image\/","url":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/04\/Asset-58-70eae4-3141d7.svg","contentUrl":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/04\/Asset-58-70eae4-3141d7.svg","width":1741,"height":103,"caption":"Design Week Mexico"},"image":{"@id":"https:\/\/designweekmexico.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/designweekmex","https:\/\/x.com\/designweekmex","https:\/\/www.instagram.com\/designweekmex\/","https:\/\/www.youtube.com\/user\/designweekmexico","https:\/\/vimeo.com\/designweekmexico","https:\/\/www.linkedin.com\/company\/designweekmx\/"]},{"@type":"Person","@id":"https:\/\/designweekmexico.com\/#\/schema\/person\/0b5016c53aa584cccbd7f8988f8bdf42","name":"Design Week Mexico","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0830bfc50cafacf340fb14966c0f6cc5c88935cded635f38ae2ed050785fd609?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0830bfc50cafacf340fb14966c0f6cc5c88935cded635f38ae2ed050785fd609?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0830bfc50cafacf340fb14966c0f6cc5c88935cded635f38ae2ed050785fd609?s=96&d=mm&r=g","caption":"Design Week Mexico"},"url":"https:\/\/designweekmexico.com\/en\/author\/designweekmexico\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"https:\/\/designweekmexico.com\/wp-content\/uploads\/2026\/08\/INTERIOR-LATERAL-1-Monica-Quinzanos-web.webp","_links":{"self":[{"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/posts\/28057","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/users\/175"}],"replies":[{"embeddable":true,"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/comments?post=28057"}],"version-history":[{"count":105,"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/posts\/28057\/revisions"}],"predecessor-version":[{"id":29061,"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/posts\/28057\/revisions\/29061"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/media\/28913"}],"wp:attachment":[{"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/media?parent=28057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/categories?post=28057"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/designweekmexico.com\/en\/wp-json\/wp\/v2\/tags?post=28057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}