{"product_id":"sofa-multifuncional","title":"SOFÁ MULTIFUNCIONAL","description":"\u003c!-- ====== Avisos de compra rotativos · Sofá Multifuncional · México ====== --\u003e\n\u003cdiv id=\"live-purchase-multifuncional-banner\" style=\"\n       margin:12px 0 0 0;\n       font-family:system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;\n     \"\u003e\n\n  \u003cdiv id=\"live-purchase-multifuncional-box\" style=\"\n         display:flex;\n         gap:10px;\n         align-items:center;\n         border:1px solid #E2E5E9;\n         border-radius:10px;\n         padding:10px 12px;\n         background:#EEF1F4;\n         color:#111;\n         font-size:13.5px;\n       \"\u003e\n\n    \u003cspan aria-hidden=\"true\" style=\"\n            display:inline-flex;\n            width:24px;\n            height:24px;\n            flex-shrink:0;\n            align-items:center;\n            justify-content:center;\n            border-radius:999px;\n            background:#111;\n            color:#FFFFFF;\n            font-size:13px;\n            line-height:1;\n          \"\u003e\n      ✓\n    \u003c\/span\u003e\n\n    \u003cdiv style=\"line-height:1.35;color:#111;\"\u003e\n      \u003cstrong style=\"color:#111;\"\u003eHace un momento\u003c\/strong\u003e:\n\n      \u003cspan id=\"lp-multifuncional-name\" style=\"font-weight:600;color:#111;\"\u003e\n        —\n      \u003c\/span\u003e\n\n      compró\n\n      \u003cstrong id=\"lp-multifuncional-item\" style=\"color:#111;\"\u003e\n        Sofá Multifuncional\n      \u003c\/strong\u003e\n\n      desde\n\n      \u003cspan id=\"lp-multifuncional-city\" style=\"color:#555;\"\u003e\n        —\n      \u003c\/span\u003e.\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n(function(){\n\n  \/* Evita que el código se ejecute más de una vez *\/\n  if (window.__livePurchaseSofaMultifuncionalMX) return;\n  window.__livePurchaseSofaMultifuncionalMX = true;\n\n  \/* ====== Nombres mexicanos ====== *\/\n  const names = [\n    \"José Hernández\",\n    \"María García\",\n    \"Juan Martínez\",\n    \"Guadalupe López\",\n    \"Carlos González\",\n    \"Fernanda Rodríguez\",\n    \"Miguel Sánchez\",\n    \"Alejandra Ramírez\",\n    \"Luis Pérez\",\n    \"Daniela Flores\",\n    \"Jorge Torres\",\n    \"Mariana Gómez\",\n    \"Ricardo Díaz\",\n    \"Andrea Morales\",\n    \"Eduardo Cruz\",\n    \"Sofía Reyes\",\n    \"Fernando Ortiz\",\n    \"Paola Gutiérrez\",\n    \"Roberto Chávez\",\n    \"Valeria Mendoza\",\n    \"Antonio Vargas\",\n    \"Karla Castillo\",\n    \"Manuel Aguilar\",\n    \"Gabriela Romero\",\n    \"Francisco Jiménez\",\n    \"Ximena Navarro\",\n    \"Alejandro Ruiz\",\n    \"Mónica Herrera\",\n    \"Jesús Medina\",\n    \"Adriana Rojas\",\n    \"Raúl Salazar\",\n    \"Patricia Luna\",\n    \"Óscar Campos\",\n    \"Claudia Vázquez\",\n    \"Héctor Cabrera\"\n  ];\n\n  \/* ====== Ciudades y estados de México ====== *\/\n  const cities = [\n    \"Ciudad de México\",\n    \"Guadalajara, Jalisco\",\n    \"Monterrey, Nuevo León\",\n    \"Puebla, Puebla\",\n    \"Querétaro, Querétaro\",\n    \"Mérida, Yucatán\",\n    \"León, Guanajuato\",\n    \"Tijuana, Baja California\",\n    \"Toluca, Estado de México\",\n    \"Cancún, Quintana Roo\",\n    \"San Luis Potosí, SLP\",\n    \"Aguascalientes, Aguascalientes\",\n    \"Morelia, Michoacán\",\n    \"Hermosillo, Sonora\",\n    \"Chihuahua, Chihuahua\",\n    \"Veracruz, Veracruz\",\n    \"Xalapa, Veracruz\",\n    \"Cuernavaca, Morelos\",\n    \"Oaxaca de Juárez, Oaxaca\",\n    \"Tuxtla Gutiérrez, Chiapas\",\n    \"Villahermosa, Tabasco\",\n    \"Culiacán, Sinaloa\",\n    \"Mazatlán, Sinaloa\",\n    \"Saltillo, Coahuila\",\n    \"Torreón, Coahuila\",\n    \"Durango, Durango\",\n    \"Acapulco, Guerrero\",\n    \"Pachuca, Hidalgo\",\n    \"Naucalpan, Estado de México\",\n    \"Ecatepec, Estado de México\"\n  ];\n\n  \/*\n   * Detecta el nombre de la variante seleccionada.\n   * Funciona con menús desplegables, botones y opciones de Shopify.\n   *\/\n  function getSelectedVariantName(){\n\n    const productForm =\n      document.querySelector('form[action*=\"\/cart\/add\"]');\n\n    if (!productForm) return '';\n\n    const variantSelect =\n      productForm.querySelector('select[name=\"id\"]');\n\n    if (\n      variantSelect \u0026\u0026\n      variantSelect.options \u0026\u0026\n      variantSelect.selectedIndex \u003e= 0\n    ){\n      const selectedText = (\n        variantSelect.options[\n          variantSelect.selectedIndex\n        ].textContent || ''\n      ).trim();\n\n      if (selectedText) return selectedText;\n    }\n\n    const checkedOptions = Array.from(\n      productForm.querySelectorAll(\n        'input[type=\"radio\"][name^=\"options\"]:checked'\n      )\n    )\n    .map(function(input){\n      return input.value;\n    })\n    .filter(Boolean);\n\n    if (checkedOptions.length){\n      return checkedOptions.join(' \/ ').trim();\n    }\n\n    const selectedOptions = Array.from(\n      productForm.querySelectorAll(\n        'select[name^=\"options\"]'\n      )\n    )\n    .map(function(select){\n      return select.value;\n    })\n    .filter(Boolean);\n\n    if (selectedOptions.length){\n      return selectedOptions.join(' \/ ').trim();\n    }\n\n    return '';\n  }\n\n  \/*\n   * Modifica aquí los nombres si tus variantes\n   * tienen configuraciones diferentes.\n   *\/\n  function getDisplayItem(){\n\n    const variant = getSelectedVariantName();\n\n    const text = (variant || '')\n      .toLowerCase()\n      .normalize('NFD')\n      .replace(\/[\\u0300-\\u036f]\/g, '');\n\n    if (\n      text.includes('individual') ||\n      text.includes('1 plaza') ||\n      text.includes('1 asiento') ||\n      text.includes('sencillo')\n    ){\n      return 'Sofá Multifuncional Individual';\n    }\n\n    if (\n      text.includes('2 plazas') ||\n      text.includes('2 asientos') ||\n      text.includes('doble')\n    ){\n      return 'Sofá Multifuncional de 2 Plazas';\n    }\n\n    if (\n      text.includes('3 plazas') ||\n      text.includes('3 asientos') ||\n      text.includes('triple')\n    ){\n      return 'Sofá Multifuncional de 3 Plazas';\n    }\n\n    if (\n      text.includes('sofa cama') ||\n      text.includes('sofá cama') ||\n      text.includes('cama')\n    ){\n      return 'Sofá Multifuncional tipo Cama';\n    }\n\n    if (\n      text.includes('ottoman') ||\n      text.includes('otomano') ||\n      text.includes('reposapies')\n    ){\n      return 'Sofá Multifuncional con Otomano';\n    }\n\n    return 'Sofá Multifuncional';\n  }\n\n  const nameElement =\n    document.getElementById('lp-multifuncional-name');\n\n  const cityElement =\n    document.getElementById('lp-multifuncional-city');\n\n  const itemElement =\n    document.getElementById('lp-multifuncional-item');\n\n  const boxElement =\n    document.getElementById('live-purchase-multifuncional-box');\n\n  let lastName = '';\n  let lastCity = '';\n\n  \/* Evita repetir el mismo nombre o ciudad consecutivamente *\/\n  function getRandomDifferent(list, previousValue){\n\n    if (!list.length) return '';\n\n    let selectedValue =\n      list[Math.floor(Math.random() * list.length)];\n\n    if (list.length \u003e 1){\n      while (selectedValue === previousValue){\n        selectedValue =\n          list[Math.floor(Math.random() * list.length)];\n      }\n    }\n\n    return selectedValue;\n  }\n\n  \/* Genera un nuevo aviso *\/\n  function nextNotice(){\n\n    if (\n      !nameElement ||\n      !cityElement ||\n      !itemElement ||\n      !boxElement\n    ) return;\n\n    const randomName =\n      getRandomDifferent(names, lastName);\n\n    const randomCity =\n      getRandomDifferent(cities, lastCity);\n\n    const selectedItem =\n      getDisplayItem();\n\n    lastName = randomName;\n    lastCity = randomCity;\n\n    boxElement.style.opacity = '0';\n\n    setTimeout(function(){\n      nameElement.textContent = randomName;\n      cityElement.textContent = randomCity;\n      itemElement.textContent = selectedItem;\n      boxElement.style.opacity = '1';\n    }, 180);\n  }\n\n  \/* Muestra el primer aviso *\/\n  nextNotice();\n\n  \/* Cambia el aviso cada 30 segundos *\/\n  setInterval(nextNotice, 30000);\n\n  \/* Actualiza el producto al cambiar la variante *\/\n  document.addEventListener('change', function(event){\n\n    if (!event.target) return;\n\n    if (\n      event.target.matches('select[name=\"id\"]') ||\n      event.target.matches('input[name=\"id\"]') ||\n      event.target.matches(\n        'input[type=\"radio\"][name^=\"options\"]'\n      ) ||\n      event.target.matches(\n        'select[name^=\"options\"]'\n      )\n    ){\n      setTimeout(nextNotice, 80);\n    }\n  });\n\n  \/* Compatibilidad con temas que usan eventos de variante *\/\n  document.addEventListener('variant:change', function(){\n    setTimeout(nextNotice, 80);\n  });\n\n})();\n\u003c\/script\u003e\n\n\u003cstyle\u003e\n#live-purchase-multifuncional-box{\n  transition:opacity .25s ease;\n}\n\n@media (max-width:480px){\n  #live-purchase-multifuncional-box{\n    font-size:12.5px !important;\n    padding:9px 10px !important;\n  }\n}\n\u003c\/style\u003e\n\n\u003c!-- ====== \/Avisos de compra rotativos · Sofá Multifuncional · México ====== --\u003e\n\n\u003ch2 data-mce-fragment=\"1\"\u003e\u003cstrong data-mce-fragment=\"1\"\u003eConcepto de diseño\u003c\/strong\u003e\u003c\/h2\u003e\n\u003ch3 id=\"tw-target-text\" dir=\"ltr\" data-placeholder=\"??\" data-mce-fragment=\"1\"\u003e\u003cspan lang=\"en\" data-mce-fragment=\"1\"\u003eNos esforzamos por integrar el minimalismo y una sensación de equilibrio en el diseño del sofá, con líneas simples y claras, suficientes almohadas modernas y suaves para los reposabrazos y algo retro, entre el diseño, explore lo moderno y lo retro, la fusión es perfecta.\u003c\/span\u003e\u003c\/h3\u003e\n\u003cdiv data-cel-widget=\"featurebullets_feature_div\" data-csa-c-id=\"tz67hd-gw6y4h-el36m-27zxpp\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"featurebullets_feature_div\" data-csa-c-content-id=\"featurebullets\" data-csa-c-type=\"widget\" data-feature-name=\"featurebullets\" class=\"celwidget\" id=\"featurebullets_feature_div\"\u003e\n\u003cdiv class=\"a-section a-spacing-medium a-spacing-top-small\" id=\"feature-bullets\"\u003e\n\u003ch1 class=\"a-size-base-plus a-text-bold\"\u003eAcerca de este artículo\u003c\/h1\u003e\n\u003cul class=\"a-unordered-list a-vertical a-spacing-mini\"\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e[Diseño convertible 3 en 1]: el sofá multifuncional se puede convertir fácil y rápidamente en un sillón o cama para dormir desabrochando la hebilla oculta, realizándose realmente la versatilidad de un sofá. y cuando no esté en uso, se puede plegar en un tamaño compacto para ahorrar espacio. Fácil de operar, es perfecto para su dormitorio, apartamento y oficina en casa.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e[Tela transpirable y relleno premium]: el sofá está hecho de material de terciopelo, que es flexible y resistente al desgaste, tiene buena transpirabilidad, lo que le permite recostarse en el sofá después de salir del trabajo para aliviar la fatiga. del día; el relleno interior del sofá es de látex natural de 2 cm y el diseño del orificio transpirable natural en forma de panal puede disipar el calor y la humedad residuales del cuerpo y brindarle una comodidad óptima y un soporte excelente.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e[Sofá cama confortable para todo el cuerpo]: Este sofá cama tiene soporte multizona para la comodidad de todo el cuerpo y está diseñado para adaptarse a las curvas del cuerpo humano. Tiene soporte para el cuello, soporte para la espalda, soporte para la cadera y soporte para las piernas, lo que ayuda a aliviar la presión de la cabeza, el cuello, los hombros y la espalda, la cintura y las piernas. El diseño de reposabrazos adicional también soporta bien los brazos.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e[Adecuado para varias escenas]: diseño simple y elegante, que combina fácilmente con su dormitorio, apartamento u oficina con su tamaño compacto. Dimensiones del sillón: 130\/150cx125x60cm. Dimensión sofá cama: 130\/150x250x30cm.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e[Diseñado para la sala de estar del apartamento]: ¿La casa tiene solo unas pocas docenas de metros cuadrados? Está bien, el sofá cama es muy potente, se convierte en un sofá\/cama\/reclinable de gran espacio, una cosa es multiusos, especialmente diseñado para salas de estar de apartamentos pequeños y medianos, mejora la utilización del espacio, resuelve fácilmente el problema de reunirse con invitados. , hacer el hogar más espacioso .\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"provenanceCertifications_feature_div\" data-csa-c-id=\"46kkcs-1susjj-6phqzh-qp4n9\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"provenanceCertifications_feature_div\" data-csa-c-content-id=\"provenanceCertifications\" data-csa-c-type=\"widget\" data-feature-name=\"provenanceCertifications\" class=\"celwidget\" id=\"provenanceCertifications_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"handmadeArtisanCard_feature_div\" data-csa-c-id=\"f9w3fe-rosm26-dmsd2u-p33fv6\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"handmadeArtisanCard_feature_div\" data-csa-c-content-id=\"handmadeArtisanCard\" data-csa-c-type=\"widget\" data-feature-name=\"handmadeArtisanCard\" class=\"celwidget\" id=\"handmadeArtisanCard_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"customerReviewsAttribute_feature_div\" data-csa-c-id=\"vu4sy-kd0cv4-evz08x-o5gtd6\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"customerReviewsAttribute_feature_div\" data-csa-c-content-id=\"customerReviewsAttribute\" data-csa-c-type=\"widget\" data-feature-name=\"customerReviewsAttribute\" class=\"celwidget\" id=\"customerReviewsAttribute_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"globalStoreInfoBullets_feature_div\" data-csa-c-id=\"90aow7-ubip12-f4lse1-9dqc4z\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"globalStoreInfoBullets_feature_div\" data-csa-c-content-id=\"globalStoreInfoBullets\" data-csa-c-type=\"widget\" data-feature-name=\"globalStoreInfoBullets\" class=\"celwidget\" id=\"globalStoreInfoBullets_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv id=\"HLCXComparisonJumplink_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"vendorPoweredCoupon_feature_div\" data-csa-c-id=\"xss9ic-1irccl-h1re66-gjxp16\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"vendorPoweredCoupon_feature_div\" data-csa-c-content-id=\"vendorPoweredCoupon\" data-csa-c-type=\"widget\" data-feature-name=\"vendorPoweredCoupon\" class=\"celwidget\" id=\"vendorPoweredCoupon_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"addOnItem_feature_div\" data-csa-c-id=\"ji6wle-arzl4m-unwgrp-sdico5\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"addOnItem_feature_div\" data-csa-c-content-id=\"addOnItem\" data-csa-c-type=\"widget\" data-feature-name=\"addOnItem\" class=\"celwidget\" id=\"addOnItem_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"giftcard-holiday-availability-messaging_feature_div\" data-csa-c-id=\"bqd6is-933dpi-hu2ftj-pn8lfs\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"giftcard-holiday-availability-messaging_feature_div\" data-csa-c-content-id=\"giftCardHolidayAvailabilityMessaging\" data-csa-c-type=\"widget\" data-feature-name=\"giftCardHolidayAvailabilityMessaging\" class=\"celwidget\" id=\"giftcard-holiday-availability-messaging_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"andonCord_feature_div\" data-csa-c-id=\"jivqm5-xjc1pi-pai3as-oftf5z\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"andonCord_feature_div\" data-csa-c-content-id=\"andonCord\" data-csa-c-type=\"widget\" data-feature-name=\"andonCord\" class=\"celwidget\" id=\"andonCord_feature_div\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv data-cel-widget=\"olp_feature_div\" data-csa-c-id=\"oxgotx-7dwtva-km0zkj-ifleje\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"olp_feature_div\" data-csa-c-content-id=\"olp\" data-csa-c-type=\"widget\" data-feature-name=\"olp\" class=\"celwidget\" id=\"olp_feature_div\"\u003e\n\u003cdiv class=\"a-section\" id=\"all-offers-display\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cspan data-csa-c-id=\"v25wfp-o2g3xn-fz0kqr-olx08e\" data-close-all-offers-display=\"{}\" data-csa-c-func-deps=\"aui-da-close-all-offers-display\" data-csa-c-type=\"widget\" data-action=\"close-all-offers-display\" class=\"a-declarative\"\u003e\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cdiv data-cel-widget=\"tellAmazon_feature_div\" data-csa-c-id=\"ulip5f-35u6sl-8awdm9-6gz2m6\" data-csa-c-is-in-initial-active-row=\"false\" data-csa-c-asin=\"B0CPPR21KC\" data-csa-c-slot-id=\"tellAmazon_feature_div\" data-csa-c-content-id=\"tellAmazon\" data-csa-c-type=\"widget\" data-feature-name=\"tellAmazon\" class=\"celwidget\" id=\"tellAmazon_feature_div\"\u003e\n\u003cdiv data-cel-widget=\"tell-amazon-desktop_DetailPage_2\" data-csa-c-id=\"lcep9v-cgd9u9-cevuq-gzw6jl\" data-csa-c-painter=\"tell-amazon-desktop-cards\" data-csa-c-type=\"widget\" data-csa-c-slot-id=\"DsUnknown-3\" data-csa-c-content-id=\"DsUnknown\" data-csa-op-log-render=\"\" class=\"celwidget c-f\"\u003e\n\u003cdiv data-mix-claimed=\"true\" data-acp-tracking=\"{}\" data-card-metrics-id=\"tell-amazon-desktop_DetailPage_2\" id=\"CardInstancecquYz0SJ5l_iZCT9poBfkA\"\u003e\n\u003cdiv class=\"_tell-amazon-desktop_style_tell_amazon_div__1YDZk\" data-logged-in=\"false\" data-marketplace=\"A1AM78C64UM0Y8\" data-asin=\"B0CPPR21KC\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cspan lang=\"en\" data-mce-fragment=\"1\"\u003e\u003cimg class=\"sep-lazyload lazyautosizes lazyloaded\" sizes=\"692px\" srcset=\"https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 48w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 180w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 540w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 720w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 900w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1024w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1280w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1366w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1440w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1536w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1600w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1920w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2056w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2560w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2732w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2880w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 3072w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 3200w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 3840w\" width=\"790\" height=\"1000\" data-sizes=\"auto\" data-srcset=\"https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 48w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 180w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 540w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 720w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 900w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1024w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1280w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1366w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1440w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1536w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1600w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 1920w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2056w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2560w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2732w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 2880w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 3072w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 3200w, https:\/\/img.staticdj.com\/aad1da0a2a05eeafd06b8d432e5bc1da_1280.png 3840w\" data-mce-fragment=\"1\"\u003e\u003cimg class=\"sep-lazyload lazyautosizes lazyloaded\" sizes=\"692px\" srcset=\"https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 48w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 180w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 540w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 720w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 900w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1024w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1280w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1366w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1440w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1536w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1600w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1920w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2056w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2560w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2732w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2880w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 3072w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 3200w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 3840w\" width=\"790\" height=\"895\" data-sizes=\"auto\" data-srcset=\"https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 48w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 180w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 540w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 720w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 900w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1024w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1280w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1366w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1440w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1536w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1600w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 1920w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2056w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2560w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2732w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 2880w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 3072w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 3200w, https:\/\/img.staticdj.com\/7cb4e682175adf7d00fb2d2163a66d7e_1280.png 3840w\" data-mce-fragment=\"1\"\u003e\u003cimg class=\"sep-lazyload lazyautosizes lazyloaded\" sizes=\"692px\" srcset=\"https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 48w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 180w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 540w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 720w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 900w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1024w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1280w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1366w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1440w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1536w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1600w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1920w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2056w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2560w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2732w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2880w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 3072w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 3200w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 3840w\" width=\"790\" height=\"1000\" data-sizes=\"auto\" data-srcset=\"https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 48w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 180w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 540w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 720w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 900w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1024w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1280w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1366w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1440w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1536w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1600w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 1920w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2056w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2560w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2732w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 2880w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 3072w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 3200w, https:\/\/img.staticdj.com\/2aa92eaa15ae35dcb47e5b34d5506941_1280.png 3840w\" data-mce-fragment=\"1\"\u003e\u003cimg class=\"sep-lazyload lazyautosizes lazyloaded\" sizes=\"692px\" srcset=\"https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 48w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 180w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 540w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 720w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 900w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1024w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1280w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1366w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1440w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1536w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1600w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1920w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2056w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2560w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2732w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2880w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 3072w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 3200w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 3840w\" width=\"798\" height=\"982\" data-sizes=\"auto\" data-srcset=\"https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 48w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 180w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 540w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 720w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 900w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1024w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1280w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1366w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1440w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1536w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1600w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 1920w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2056w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2560w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2732w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 2880w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 3072w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 3200w, https:\/\/img.staticdj.com\/a746804d6e199d9c3a8c4fe1b2229317_1280.png 3840w\" data-mce-fragment=\"1\"\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cspan lang=\"en\" data-mce-fragment=\"1\"\u003e\u003cimg class=\"sep-lazyload lazyautosizes lazyloaded\" sizes=\"692px\" srcset=\"https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 48w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 180w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 540w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 720w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 900w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1024w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1280w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1366w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1440w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1536w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1600w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1920w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2056w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2560w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2732w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2880w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 3072w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 3200w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 3840w\" width=\"790\" height=\"826\" data-sizes=\"auto\" data-srcset=\"https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 48w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 180w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 540w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 720w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 900w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1024w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1280w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1366w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1440w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1536w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1600w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 1920w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2056w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2560w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2732w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 2880w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 3072w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 3200w, https:\/\/img.staticdj.com\/5f34fbfcc59acc082da616db0db8a392_1280.png 3840w\" data-mce-fragment=\"1\"\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e \u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cspan lang=\"en\" data-mce-fragment=\"1\"\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0656\/9964\/3549\/files\/Screenshot_20230718-110037_2.png?v=1712631847\"\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cspan lang=\"en\" data-mce-fragment=\"1\"\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0656\/9964\/3549\/files\/1a09253408b0acac071046838e981965.png?v=1712631846\"\u003e\u003c\/span\u003e\u003c\/p\u003e\n\n\u003c!-- ====== Reseñas México · Confort Collection · Carrusel Compacto ====== --\u003e\n\u003cdiv id=\"reviews-generales\" style=\"\n       --tiempo:4500ms;\n       font-family:'Jost',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;\n       margin:12px auto;\n       max-width:350px;\n       background:#FAF7F0;\n       padding:12px;\n       border-radius:10px;\n       border:1px solid #E8E1D4;\n       color:#26221C;\n       box-shadow:0 2px 8px rgba(35,81,125,0.06);\n     \"\u003e\n\n  \u003c!-- Encabezado --\u003e\n  \u003cdiv style=\"text-align:center;margin-bottom:8px\"\u003e\n    \u003cdiv id=\"rg-promedio\" style=\"\n           display:inline-flex;\n           align-items:center;\n           gap:6px;\n           background:#FFFFFF;\n           border:1px solid #E8E1D4;\n           padding:4px 10px;\n           border-radius:999px;\n         \"\u003e\n      \u003cspan id=\"rg-stars\" aria-hidden=\"true\" style=\"color:#C0603A;font-size:12px;letter-spacing:.5px;\"\u003e\n        ★★★★★\n      \u003c\/span\u003e\n\n      \u003cstrong id=\"rg-score\" style=\"font-size:11px;color:#26221C;\"\u003e\n        4.8 de 5\n      \u003c\/strong\u003e\n\n      \u003cspan id=\"rg-count\" style=\"font-size:10px;color:#6B7052;\"\u003e\n        (327 opiniones)\n      \u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Título --\u003e\n  \u003ch2 style=\"\n        text-align:center;\n        margin:0 0 6px 0;\n        font-size:14px;\n        color:#26221C;\n        font-weight:600;\n      \"\u003e\n    Opiniones verificadas en México 🇲🇽\n  \u003c\/h2\u003e\n\n  \u003cdiv class=\"rg-slider\" style=\"\n         position:relative;\n         overflow:hidden;\n         border:1px solid #E8E1D4;\n         border-radius:8px;\n         background:#FFFFFF;\n       \"\u003e\n\n    \u003cdiv class=\"rg-track\" role=\"region\" aria-label=\"Opiniones de clientes en México\" style=\"\n           display:flex;\n           transition:transform .5s ease;\n         \"\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Flecha anterior --\u003e\n    \u003cbutton class=\"rg-prev\" type=\"button\" aria-label=\"Opinión anterior\" style=\"\n              position:absolute;\n              left:4px;\n              top:50%;\n              transform:translateY(-50%);\n              border:1px solid #E8E1D4;\n              background:#FAF7F0;\n              color:#23517D;\n              border-radius:999px;\n              width:24px;\n              height:24px;\n              box-shadow:0 2px 6px rgba(0,0,0,.08);\n              cursor:pointer;\n              font-size:14px;\n              line-height:1;\n              display:flex;\n              align-items:center;\n              justify-content:center;\n              z-index:2;\n            \"\u003e\n      ‹\n    \u003c\/button\u003e\n\n    \u003c!-- Flecha siguiente --\u003e\n    \u003cbutton class=\"rg-next\" type=\"button\" aria-label=\"Siguiente opinión\" style=\"\n              position:absolute;\n              right:4px;\n              top:50%;\n              transform:translateY(-50%);\n              border:1px solid #E8E1D4;\n              background:#FAF7F0;\n              color:#23517D;\n              border-radius:999px;\n              width:24px;\n              height:24px;\n              box-shadow:0 2px 6px rgba(0,0,0,.08);\n              cursor:pointer;\n              font-size:14px;\n              line-height:1;\n              display:flex;\n              align-items:center;\n              justify-content:center;\n              z-index:2;\n            \"\u003e\n      ›\n    \u003c\/button\u003e\n\n    \u003c!-- Puntos --\u003e\n    \u003cdiv class=\"rg-dots\" style=\"\n           display:flex;\n           gap:4px;\n           justify-content:center;\n           align-items:center;\n           padding:6px 8px;\n         \"\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n(function(){\n  const root = document.getElementById('reviews-generales');\n  if (!root) return;\n\n  const track = root.querySelector('.rg-track');\n  const dots = root.querySelector('.rg-dots');\n\n  \/\/ ====== Opiniones México · Nombres y ciudades mexicanas ======\n  const reviews = [\n    {\n      name: \"Carlos H.\",\n      city: \"Ciudad de México\",\n      rating: 5,\n      text: \"Muy buena calidad, llegó bien empacado y pude revisar el seguimiento.\"\n    },\n    {\n      name: \"Mariana L.\",\n      city: \"Guadalajara, Jalisco\",\n      rating: 5,\n      text: \"Está tal como aparece en las fotos. El color me gustó mucho.\"\n    },\n    {\n      name: \"José R.\",\n      city: \"Monterrey, Nuevo León\",\n      rating: 4,\n      text: \"Buen producto. La entrega tardó un día más, pero me mantuvieron informado.\"\n    },\n    {\n      name: \"Fernanda M.\",\n      city: \"Puebla, Puebla\",\n      rating: 5,\n      text: \"Me encantó, fue fácil de acomodar y está muy cómodo.\"\n    },\n    {\n      name: \"Miguel T.\",\n      city: \"Querétaro, Querétaro\",\n      rating: 5,\n      text: \"Pagué con tarjeta sin ningún problema. La compra fue rápida y segura.\"\n    },\n    {\n      name: \"Alejandra S.\",\n      city: \"Mérida, Yucatán\",\n      rating: 4,\n      text: \"Tardó un poco en recuperar su forma, pero después quedó excelente.\"\n    },\n    {\n      name: \"Luis G.\",\n      city: \"León, Guanajuato\",\n      rating: 5,\n      text: \"Muy buena relación entre precio y calidad. Sí lo volvería a comprar.\"\n    },\n    {\n      name: \"Daniela F.\",\n      city: \"Tijuana, Baja California\",\n      rating: 5,\n      text: \"Mi pedido llegó en excelentes condiciones y la atención fue muy buena.\"\n    }\n  ];\n\n  const stars = (n) =\u003e\n    '\u003cspan style=\"color:#C0603A;\"\u003e' +\n    '★'.repeat(n) +\n    '\u003c\/span\u003e' +\n    '\u003cspan style=\"color:#D8D2C4;\"\u003e' +\n    '★'.repeat(5 - n) +\n    '\u003c\/span\u003e';\n\n  reviews.forEach((r, i) =\u003e {\n    const slide = document.createElement('article');\n\n    slide.style.cssText = `\n      min-width:100%;\n      padding:10px 34px;\n      background:#FFFFFF;\n      display:flex;\n      flex-direction:column;\n      justify-content:center;\n      font-size:11px;\n      line-height:1.35;\n      color:#26221C;\n      border-radius:6px;\n      box-sizing:border-box;\n    `;\n\n    slide.innerHTML = `\n      \u003cdiv style=\"\n        display:flex;\n        justify-content:space-between;\n        align-items:center;\n        gap:8px;\n        margin-bottom:4px;\n      \"\u003e\n        \u003cdiv aria-label=\"${r.rating} de 5 estrellas\"\u003e\n          ${stars(r.rating)}\n        \u003c\/div\u003e\n\n        \u003cdiv style=\"\n          font-weight:600;\n          color:#26221C;\n          font-size:10px;\n          text-align:right;\n        \"\u003e\n          ${r.name}\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003cp style=\"\n        margin:0;\n        color:#4C463C;\n        font-size:10.5px;\n      \"\u003e\n        «${r.text}»\n      \u003c\/p\u003e\n\n      \u003cdiv style=\"\n        margin-top:5px;\n        font-size:8.5px;\n        color:#6B7052;\n        display:flex;\n        flex-wrap:wrap;\n        gap:4px 8px;\n      \"\u003e\n        \u003cspan\u003e✓ Compra verificada\u003c\/span\u003e\n        \u003cspan\u003e📍 ${r.city}\u003c\/span\u003e\n      \u003c\/div\u003e\n    `;\n\n    track.appendChild(slide);\n\n    const dot = document.createElement('button');\n    dot.type = 'button';\n    dot.setAttribute('aria-label', 'Ir a la opinión ' + (i + 1));\n\n    dot.style.cssText = `\n      width:5px;\n      height:5px;\n      border-radius:999px;\n      border:none;\n      background:#D8D2C4;\n      cursor:pointer;\n      padding:0;\n    `;\n\n    dots.appendChild(dot);\n  });\n\n  let index = 0;\n  let timer = null;\n\n  const total = reviews.length;\n  const prevBtn = root.querySelector('.rg-prev');\n  const nextBtn = root.querySelector('.rg-next');\n  const dotEls = Array.from(dots.children);\n\n  function goTo(i){\n    index = (i + total) % total;\n    track.style.transform = `translateX(-${index * 100}%)`;\n\n    dotEls.forEach((dot, dotIndex) =\u003e {\n      dot.style.background =\n        dotIndex === index ? '#23517D' : '#D8D2C4';\n    });\n  }\n\n  function stop(){\n    if (timer) {\n      clearInterval(timer);\n      timer = null;\n    }\n  }\n\n  function start(){\n    stop();\n\n    timer = setInterval(() =\u003e {\n      goTo(index + 1);\n    }, 4500);\n  }\n\n  prevBtn.addEventListener('click', () =\u003e {\n    goTo(index - 1);\n    start();\n  });\n\n  nextBtn.addEventListener('click', () =\u003e {\n    goTo(index + 1);\n    start();\n  });\n\n  dotEls.forEach((dot, dotIndex) =\u003e {\n    dot.addEventListener('click', () =\u003e {\n      goTo(dotIndex);\n      start();\n    });\n  });\n\n  root.addEventListener('mouseenter', stop);\n  root.addEventListener('mouseleave', start);\n\n  root.addEventListener('touchstart', stop, { passive:true });\n  root.addEventListener('touchend', start, { passive:true });\n\n  goTo(0);\n  start();\n})();\n\u003c\/script\u003e\n\n\u003cstyle\u003e\n@media (max-width:480px){\n  #reviews-generales .rg-prev,\n  #reviews-generales .rg-next{\n    top:auto !important;\n    bottom:40px;\n    transform:none !important;\n  }\n}\n\u003c\/style\u003e\n\n\u003c!-- ====== \/Fin reseñas México · Confort Collection ====== --\u003e\n","brand":"My Store","offers":[{"title":"Individual \/ Cafe","offer_id":43899071463542,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Individual \/ Bige","offer_id":43899071496310,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Individual \/ Negro","offer_id":43899071529078,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Individual \/ Verde","offer_id":43899071561846,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Individual \/ Gris","offer_id":43899071594614,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Individual \/ Naranja","offer_id":43899071627382,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Individual \/ Blaco","offer_id":43899071660150,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Individual \/ Rojo","offer_id":43899071692918,"sku":null,"price":1099.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Cafe","offer_id":43899071725686,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Bige","offer_id":43899071758454,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Negro","offer_id":43899071791222,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Verde","offer_id":43899071823990,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Gris","offer_id":43899071856758,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Naranja","offer_id":43899071889526,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Blaco","offer_id":43899071922294,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Doble \/ Rojo","offer_id":43899071955062,"sku":null,"price":1699.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Cafe","offer_id":43899071987830,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Bige","offer_id":43899072020598,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Negro","offer_id":43899072053366,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Verde","offer_id":43899072086134,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Gris","offer_id":43899072118902,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Naranja","offer_id":43899072151670,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Blaco","offer_id":43899072184438,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true},{"title":"Triple \/ Rojo","offer_id":43899072217206,"sku":null,"price":2199.99,"currency_code":"MXN","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0711\/8297\/5094\/files\/CapturadePantalla2023-07-09ala_s_17.29.41.png?v=1784927281","url":"https:\/\/nimbos.store\/products\/sofa-multifuncional","provider":"NIMBO","version":"1.0","type":"link"}