{"id":35,"date":"2026-04-21T15:44:05","date_gmt":"2026-04-21T20:44:05","guid":{"rendered":"https:\/\/solutechperu.com\/?page_id=35"},"modified":"2026-04-21T15:46:50","modified_gmt":"2026-04-21T20:46:50","slug":"tienda","status":"publish","type":"page","link":"https:\/\/solutechperu.com\/index.php\/tienda\/","title":{"rendered":"tienda"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"35\" class=\"elementor elementor-35\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4271bfa e-flex e-con-boxed e-con e-parent\" data-id=\"4271bfa\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c79165 elementor-widget elementor-widget-html\" data-id=\"3c79165\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"catalogo-container\">\r\n    <div class=\"catalogo-grid\" id=\"product-list\">\r\n        <\/div>\r\n<\/div>\r\n\r\n<style>\r\n    :root {\r\n        --primary-blue: #004a99;\r\n        --price-red: #d32f2f;\r\n        --bg-gray: #f9f9f9;\r\n        --text-dark: #333;\r\n    }\r\n\r\n    .catalogo-container {\r\n        padding: 20px;\r\n        font-family: 'Segoe UI', Roboto, sans-serif;\r\n    }\r\n\r\n    .catalogo-grid {\r\n        display: grid;\r\n        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));\r\n        gap: 25px;\r\n    }\r\n\r\n    .product-card {\r\n        background: #fff;\r\n        border: 1px solid #eee;\r\n        border-radius: 12px;\r\n        padding: 15px;\r\n        transition: transform 0.3s ease, box-shadow 0.3s ease;\r\n        display: flex;\r\n        flex-direction: column;\r\n        justify-content: space-between;\r\n    }\r\n\r\n    .product-card:hover {\r\n        transform: translateY(-5px);\r\n        box-shadow: 0 10px 20px rgba(0,0,0,0.1);\r\n    }\r\n\r\n    .product-image {\r\n        width: 100%;\r\n        height: 180px;\r\n        background: #f0f0f0;\r\n        border-radius: 8px;\r\n        display: flex;\r\n        align-items: center;\r\n        justify-content: center;\r\n        margin-bottom: 15px;\r\n        color: #999;\r\n        font-size: 0.9em;\r\n    }\r\n\r\n    .product-title {\r\n        font-size: 1.1em;\r\n        font-weight: bold;\r\n        color: var(--text-dark);\r\n        margin: 0 0 10px 0;\r\n        line-height: 1.3;\r\n    }\r\n\r\n    .product-specs {\r\n        font-size: 0.85em;\r\n        color: #666;\r\n        margin-bottom: 15px;\r\n        flex-grow: 1;\r\n    }\r\n\r\n    .product-footer {\r\n        border-top: 1px solid #eee;\r\n        padding-top: 10px;\r\n        display: flex;\r\n        justify-content: space-between;\r\n        align-items: center;\r\n    }\r\n\r\n    .product-price {\r\n        color: var(--price-red);\r\n        font-size: 1.25em;\r\n        font-weight: 800;\r\n    }\r\n\r\n    .btn-whatsapp {\r\n        background-color: #25d366;\r\n        color: white;\r\n        padding: 8px 12px;\r\n        border-radius: 6px;\r\n        text-decoration: none;\r\n        font-size: 0.9em;\r\n        font-weight: bold;\r\n    }\r\n\r\n    .btn-whatsapp:hover {\r\n        background-color: #128c7e;\r\n    }\r\n<\/style>\r\n\r\n<script>\r\n    \/\/ Datos de los productos (puedes actualizar esta lista f\u00e1cilmente)\r\n    const productos = [\r\n        { nombre: \"LAPTOP HP 255 G10\", specs: \"RYZEN 3-7320U\/ 8GB\/ SSD256GB\/ 15.6\/ A9BS1LT\", precio: \"1,139.12\" },\r\n        { nombre: \"LAPTOP LENOVO V15 G6 ITN\", specs: \"N100\/ 8GB\/ SSD256GB\/ 15.6\/ 83M40016LD\", precio: \"1,150.31\" },\r\n        { nombre: \"LAPTOP HP 250 G10\", specs: \"I3-N305\/ 8GB\/ SSD256GB\/ 15.6\/ B83U6AT\", precio: \"1,281.25\" },\r\n        { nombre: \"LAPTOP LENOVO IDEAPAD SLIM3\", specs: \"I5-13420H\/ 8GB\/ SSD512GB\/ 83K100KELM\", precio: \"1,690.46\" },\r\n        { nombre: \"LAPTOP HP 15-FC0256LA\", specs: \"RYZEN 5-7520U\/ 16GB\/ SSD512GB\/ B9TP9LA\", precio: \"1,864.55\" },\r\n        { nombre: \"LAPTOP LENOVO LOQ 15IRX11\", specs: \"I5-13450HX\/ 16GB\/ SSD512GB\/ RTX 3050\", precio: \"3,543.15\" }\r\n    ];\r\n\r\n    const container = document.getElementById('product-list');\r\n\r\n    productos.forEach(p => {\r\n        const card = `\r\n            <div class=\"product-card\">\r\n                <div class=\"product-image\">Imagen Referencial<\/div>\r\n                <h3 class=\"product-title\">${p.nombre}<\/h3>\r\n                <p class=\"product-specs\">${p.specs}<\/p>\r\n                <div class=\"product-footer\">\r\n                    <span class=\"product-price\">S\/. ${p.precio}<\/span>\r\n                    <a href=\"https:\/\/wa.me\/TU_NUMERO\" class=\"btn-whatsapp\" target=\"_blank\">Consultar<\/a>\r\n                <\/div>\r\n            <\/div>\r\n        `;\r\n        container.innerHTML += card;\r\n    });\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-35","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/pages\/35","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/comments?post=35"}],"version-history":[{"count":4,"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/pages\/35\/revisions"}],"predecessor-version":[{"id":39,"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/pages\/35\/revisions\/39"}],"wp:attachment":[{"href":"https:\/\/solutechperu.com\/index.php\/wp-json\/wp\/v2\/media?parent=35"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}