{"id":2,"date":"2026-05-16T13:26:47","date_gmt":"2026-05-16T13:26:47","guid":{"rendered":"https:\/\/marlis.tech\/?page_id=2"},"modified":"2026-05-25T07:51:41","modified_gmt":"2026-05-25T07:51:41","slug":"sample-page","status":"publish","type":"page","link":"https:\/\/marlis.tech\/es\/sample-page\/","title":{"rendered":"Sample Page"},"content":{"rendered":"\n<style data-wp-block-html=\"css\">\n \n    \n    <style>\n        .mamey-glow {\n            text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);\n        }\n        .green-glow {\n            text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);\n        }\n        .blue-glow {\n            text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);\n        }\n        .custom-gradient-bg {\n            background: radial-gradient(circle at top, rgba(59, 130, 246, 0.08) 0%, rgba(249, 115, 22, 0.03) 50%, rgba(6, 8, 15, 1) 100%);\n        }\n    <\/style>\n\n<\/style>\n\n<script data-wp-block-html=\"js\">\n<script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    fontFamily: {\n                        sans: ['Inter', 'sans-serif'],\n                        title: ['Montserrat', 'sans-serif'],\n                    },\n                    colors: {\n                        brand: {\n                            dark: '#0B0F19',\n                            darker: '#06080F',\n                            green: '#22C55E',   \/* M *\/\n                            yellow: '#FACC15',  \/* ar *\/\n                            blue: '#3B82F6',    \/* lis *\/\n                            mamey: '#F97316',   \/* Tech Solutions *\/\n                            mameyHover: '#EA580C',\n                        }\n                    }\n                }\n            }\n        }\n    <\/script>\n\n\n  <!-- LOGICA DEL CALCULADOR DIN\u00c1MICO EN JAVASCRIPT -->\n    <script>\n        \/\/ Tabla de precios del cotizador\n        const prices = {\n            web: {\n                landing: { real: 600, discounted: 150, name: \"Landing Page de Alto Impacto\" },\n                corporate: { real: 1000, discounted: 250, name: \"Sitio Web Corporativo Completo\" },\n                ecommerce: { real: 1800, discounted: 450, name: \"E-Commerce \/ Tienda Online\" }\n            },\n            bonuses: {\n                sales: { real: 150, discounted: 0, name: \"Gui\u00f3n y Estructura de Ventas Persuasivo\" },\n                instagram: { real: 100, discounted: 0, name: \"Estrategia de Redes Sociales (Instagram)\" },\n                ai: { real: 150, discounted: 45, name: \"Agente IA Automatizado para WhatsApp\" }\n            }\n        };\n\n        function recalculatePrice() {\n            \/\/ 1. Obtener formato web seleccionado\n            const webRadios = document.getElementsByName('web_type');\n            let selectedWeb = 'landing';\n            for (const radio of webRadios) {\n                if (radio.checked) {\n                    selectedWeb = radio.value;\n                    break;\n                }\n            }\n\n            \/\/ Cambiar din\u00e1micamente bordes y estilos de selecci\u00f3n activa\n            for (const radio of webRadios) {\n                const parentLabel = radio.closest('label');\n                if (radio.checked) {\n                    parentLabel.classList.add('border-brand-mamey\/50', 'bg-brand-dark\/50');\n                    parentLabel.classList.remove('border-gray-800', 'bg-brand-dark\/30');\n                } else {\n                    parentLabel.classList.remove('border-brand-mamey\/50', 'bg-brand-dark\/50');\n                    parentLabel.classList.add('border-gray-800', 'bg-brand-dark\/30');\n                }\n            }\n\n            \/\/ 2. Obtener bonos\n            const bonusSales = document.getElementById('bonus_sales').checked;\n            const bonusInstagram = document.getElementById('bonus_instagram').checked;\n            const bonusAi = document.getElementById('bonus_ai').checked;\n\n            \/\/ 3. Sumar importes\n            let totalReal = prices.web[selectedWeb].real;\n            let totalDiscounted = prices.web[selectedWeb].discounted;\n\n            if (bonusSales) {\n                totalReal += prices.bonuses.sales.real;\n                totalDiscounted += prices.bonuses.sales.discounted;\n            }\n            if (bonusInstagram) {\n                totalReal += prices.bonuses.instagram.real;\n                totalDiscounted += prices.bonuses.instagram.discounted;\n            }\n            if (bonusAi) {\n                totalReal += prices.bonuses.ai.real;\n                totalDiscounted += prices.bonuses.ai.discounted;\n            }\n\n            \/\/ 4. Mostrar en pantalla\n            document.getElementById('real-price').innerText = `US$${totalReal}`;\n            document.getElementById('discounted-price').innerText = `US$${totalDiscounted}`;\n\n            \/\/ 5. Generar lista de resumen del pedido\n            const summaryContainer = document.getElementById('summary-items');\n            summaryContainer.innerHTML = '';\n\n            \/\/ Mostrar el plan web base\n            addSummaryItem(summaryContainer, prices.web[selectedWeb].name, true);\n            \/\/ Mostrar los bonos seleccionados\n            if (bonusSales) addSummaryItem(summaryContainer, `Regalo: ${prices.bonuses.sales.name} (Gratis)`, true);\n            if (bonusInstagram) addSummaryItem(summaryContainer, `Regalo: ${prices.bonuses.instagram.name} (Gratis)`, true);\n            if (bonusAi) addSummaryItem(summaryContainer, `Adicional: ${prices.bonuses.ai.name} (+US$45)`, true);\n        }\n\n        function addSummaryItem(container, text) {\n            const div = document.createElement('div');\n            div.className = 'flex items-center gap-2 text-gray-300';\n            div.innerHTML = `\n                <i class=\"fa-solid fa-circle-check text-brand-green text-sm\"><\/i>\n                <span>${text}<\/span>\n            `;\n            container.appendChild(div);\n        }\n\n        function sendToWhatsApp() {\n            const webRadios = document.getElementsByName('web_type');\n            let selectedWeb = 'landing';\n            for (const radio of webRadios) {\n                if (radio.checked) {\n                    selectedWeb = radio.value;\n                    break;\n                }\n            }\n\n            const bonusSales = document.getElementById('bonus_sales').checked;\n            const bonusInstagram = document.getElementById('bonus_instagram').checked;\n            const bonusAi = document.getElementById('bonus_ai').checked;\n\n            let totalDiscounted = prices.web[selectedWeb].discounted;\n            let listText = `\u2022 ${prices.web[selectedWeb].name}\\n`;\n\n            if (bonusSales) {\n                listText += `\u2022 Regalo: ${prices.bonuses.sales.name} (GRATIS)\\n`;\n                totalDiscounted += prices.bonuses.sales.discounted;\n            }\n            if (bonusInstagram) {\n                listText += `\u2022 Regalo: ${prices.bonuses.instagram.name} (GRATIS)\\n`;\n                totalDiscounted += prices.bonuses.instagram.discounted;\n            }\n            if (bonusAi) {\n                listText += `\u2022 Extra Adicional: ${prices.bonuses.ai.name} (+US$45)\\n`;\n                totalDiscounted += prices.bonuses.ai.discounted;\n            }\n\n            const message = `\u00a1Hola Marlis Tech Solutions! \ud83d\udc4b\\n\\nQuiero aprovechar la promoci\u00f3n del 75% de descuento para mi proyecto web. He calculado mi propuesta ideal:\\n\\n${listText}\\n\ud83d\udcb0 *Precio Final de Promoci\u00f3n: US$${totalDiscounted} (Inversi\u00f3n \u00danica)*\\n\\nPor favor, reserven mi cupo especial de descuento para ponernos en marcha.`;\n            \n            const encodedMessage = encodeURIComponent(message);\n            const phoneNumber = \"+18099239117\"; \n            \n            window.open(`https:\/\/wa.me\/${phoneNumber}?text=${encodedMessage}`, '_blank');\n        }\n\n        \/\/ Ejecutar primer c\u00e1lculo al cargar la p\u00e1gina\n        window.onload = function() {\n            recalculatePrice();\n        };\n    <\/script>\n<\/script>\n\n<meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Marlis Tech Solutions | Sitios Web Profesionales<\/title>\n    <!-- Tailwind CSS para el dise\u00f1o \u00e1gil y responsivo -->\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <!-- Google Fonts: Inter y Montserrat -->\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&amp;family=Montserrat:wght@700;800;900&amp;display=swap\" rel=\"stylesheet\">\n    <!-- FontAwesome para los \u00edconos limpios -->\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    \n   \n    <!-- Header \/ Barra de Navegaci\u00f3n -->\n    <header class=\"sticky top-0 z-50 backdrop-blur-md bg-brand-darker\/80 border-b border-gray-800 transition-all duration-300\">\n        <div class=\"max-w-6xl mx-auto px-4 py-3 flex items-center justify-between\">\n            \n            <!-- LOGO INTEGRADO CON COLORES ORIGINALES -->\n            <a href=\"#\" class=\"flex items-center gap-3 group\">\n                <div class=\"relative w-12 h-12\">\n                    <!-- Brillo de fondo del Logo -->\n                    <div class=\"absolute inset-0 bg-brand-blue\/10 rounded-xl blur-md transition-all duration-300 group-hover:bg-brand-green\/20\"><\/div>\n                    \n                    <!-- SVG del Logo con colores especificados -->\n                    <svg viewBox=\"0 0 100 100\" class=\"relative w-full h-full transform transition-transform duration-500 group-hover:scale-105\">\n                        <!-- Red de fondo en Mamey -->\n                        <circle cx=\"50\" cy=\"50\" r=\"45\" fill=\"none\" stroke=\"#F97316\" stroke-width=\"2\" stroke-opacity=\"0.3\" stroke-dasharray=\"6 4\"><\/circle>\n                        <!-- \u00d3rbita Tecnol\u00f3gica Azul -->\n                        <ellipse cx=\"50\" cy=\"50\" rx=\"40\" ry=\"14\" fill=\"none\" stroke=\"#3B82F6\" stroke-width=\"2.5\" transform=\"rotate(-30 50 50)\"><\/ellipse>\n                        <!-- \u00d3rbita Tecnol\u00f3gica Amarilla -->\n                        <ellipse cx=\"50\" cy=\"50\" rx=\"38\" ry=\"12\" fill=\"none\" stroke=\"#FACC15\" stroke-width=\"2\" transform=\"rotate(30 50 50)\"><\/ellipse>\n                        \n                        <!-- La M central en color Verde original -->\n                        <path d=\"M30,68 L42,32 L50,48 L58,32 L70,68\" fill=\"none\" stroke=\"#22C55E\" stroke-width=\"8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path>\n                        <!-- Doble trazo brillante de la M -->\n                        <path d=\"M30,68 L42,32 L50,48 L58,32 L70,68\" fill=\"none\" stroke=\"#FFFFFF\" stroke-width=\"2.5\" stroke-opacity=\"0.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path>\n                        \n                        <!-- Nodo de energ\u00eda superior derecho en Mamey -->\n                        <circle cx=\"58\" cy=\"32\" r=\"5\" fill=\"#F97316\"><\/circle>\n                        <!-- Nodo de energ\u00eda superior izquierdo en Amarillo -->\n                        <circle cx=\"42\" cy=\"32\" r=\"5\" fill=\"#FACC15\"><\/circle>\n                    <\/svg>\n                <\/div>\n                \n                <!-- Tipograf\u00eda Corporativa con los Colores Exactos -->\n                <div class=\"flex flex-col\">\n                    <div class=\"font-title text-xl font-black tracking-tight leading-none\">\n                        <span class=\"text-brand-green\">M<\/span><span class=\"text-brand-yellow\">ar<\/span><span class=\"text-brand-blue\">lis<\/span>\n                    <\/div>\n                    <div class=\"text-xs font-extrabold uppercase tracking-widest text-brand-mamey mt-0.5\">\n                        Tech Solutions\n                    <\/div>\n                <\/div>\n            <\/a>\n            \n            <!-- Contacto Directo R\u00e1pido -->\n            <a href=\"tel:+18099239117\" class=\"hidden sm:flex items-center gap-2 bg-gray-900\/90 hover:bg-gray-800 text-sm py-2 px-4 rounded-full border border-gray-800 hover:border-brand-mamey\/40 transition\">\n                <i class=\"fa-solid fa-phone text-brand-mamey animate-pulse\"><\/i>\n                <span class=\"text-gray-300 font-mono text-xs font-bold\">+1 (849) 399-2322<\/span>\n            <\/a>\n        <\/div>\n    <\/header>\n\n    <!-- H\u00e9roe \/ Presentaci\u00f3n Principal (Optimizado para m\u00f3vil e inspirado en anuncios) -->\n    <section class=\"relative overflow-hidden pt-10 pb-20 px-4\">\n        <!-- Luces de fondo ambientales con la paleta de colores de la marca -->\n        <div class=\"absolute top-1\/4 left-1\/4 w-96 h-96 bg-brand-blue\/5 rounded-full blur-[130px] pointer-events-none\"><\/div>\n        <div class=\"absolute bottom-10 right-1\/4 w-96 h-96 bg-brand-mamey\/5 rounded-full blur-[130px] pointer-events-none\"><\/div>\n\n        <div class=\"max-w-6xl mx-auto grid grid-cols-1 lg:grid-cols-12 gap-12 items-center\">\n            \n            <!-- Mensaje Principal Izquierdo -->\n            <div class=\"lg:col-span-7 text-center lg:text-left z-10\">\n                <div class=\"inline-flex items-center gap-2 bg-brand-mamey\/10 border border-brand-mamey\/30 text-brand-mamey px-4 py-1.5 rounded-full text-xs font-bold uppercase tracking-widest mb-6\">\n                    <span class=\"w-2 h-2 rounded-full bg-brand-green animate-ping\"><\/span>\n                    TU NEGOCIO MERECE M\u00c1S\n                <\/div>\n                \n                <h1 class=\"font-title text-4xl sm:text-5xl lg:text-6xl font-black text-white leading-tight mb-6\">\n                    UN SITIO WEB<br>\n                    <span class=\"text-brand-yellow font-black\">QUE S\u00cd VENDE<\/span><br>\n                    <span class=\"text-brand-mamey mamey-glow font-extrabold text-2xl sm:text-3xl lg:text-4xl\">MIENTRAS T\u00da DESCANSAS<\/span>\n                <\/h1>\n                \n                <p class=\"text-gray-300 text-sm sm:text-base lg:text-lg max-w-xl mx-auto lg:mx-0 mb-8 leading-relaxed\">\n                    Desarrollamos soluciones digitales premium con velocidad de carga r\u00e9cord, dise\u00f1os adaptados 100% a celulares y estrategias de conversi\u00f3n validadas para que multipliques tus prospectos.\n                <\/p>\n\n                <!-- Tarjetas de Caracter\u00edsticas Premium -->\n                <div class=\"grid grid-cols-1 sm:grid-cols-2 gap-3 max-w-lg mx-auto lg:mx-0 text-left mb-8\">\n                    \n                    <div class=\"flex items-start gap-3 bg-brand-dark\/80 p-3.5 rounded-xl border border-gray-800 hover:border-brand-green\/30 transition-all\">\n                        <div class=\"w-10 h-10 rounded-lg bg-brand-green\/10 flex items-center justify-center text-brand-green shrink-0\">\n                            <i class=\"fa-solid fa-wand-magic-sparkles text-lg\"><\/i>\n                        <\/div>\n                        <div>\n                            <h3 class=\"font-bold text-sm text-white\">Dise\u00f1o Exclusivo<\/h3>\n                            <p class=\"text-xs text-gray-400\">Totalmente personalizado a tu medida.<\/p>\n                        <\/div>\n                    <\/div>\n\n                    <div class=\"flex items-start gap-3 bg-brand-dark\/80 p-3.5 rounded-xl border border-gray-800 hover:border-brand-blue\/30 transition-all\">\n                        <div class=\"w-10 h-10 rounded-lg bg-brand-blue\/10 flex items-center justify-center text-brand-blue shrink-0\">\n                            <i class=\"fa-solid fa-bullseye text-lg\"><\/i>\n                        <\/div>\n                        <div>\n                            <h3 class=\"font-bold text-sm text-white\">Alta Conversi\u00f3n<\/h3>\n                            <p class=\"text-xs text-gray-400\">Estructurado para guiar a tus ventas.<\/p>\n                        <\/div>\n                    <\/div>\n\n                    <div class=\"flex items-start gap-3 bg-brand-dark\/80 p-3.5 rounded-xl border border-gray-800 hover:border-brand-yellow\/30 transition-all\">\n                        <div class=\"w-10 h-10 rounded-lg bg-brand-yellow\/10 flex items-center justify-center text-brand-yellow shrink-0\">\n                            <i class=\"fa-solid fa-gauge-high text-lg\"><\/i>\n                        <\/div>\n                        <div>\n                            <h3 class=\"font-bold text-sm text-white\">Carga Ultra R\u00e1pida<\/h3>\n                            <p class=\"text-xs text-gray-400\">Excelente optimizaci\u00f3n de velocidad.<\/p>\n                        <\/div>\n                    <\/div>\n\n                    <div class=\"flex items-start gap-3 bg-brand-dark\/80 p-3.5 rounded-xl border border-gray-800 hover:border-brand-mamey\/30 transition-all\">\n                        <div class=\"w-10 h-10 rounded-lg bg-brand-mamey\/10 flex items-center justify-center text-brand-mamey shrink-0\">\n                            <i class=\"fa-solid fa-mobile-screen-button text-lg\"><\/i>\n                        <\/div>\n                        <div>\n                            <h3 class=\"font-bold text-sm text-white\">100% Adaptativo<\/h3>\n                            <p class=\"text-xs text-gray-400\">Perfecto en m\u00f3viles y computadoras.<\/p>\n                        <\/div>\n                    <\/div>\n\n                <\/div>\n\n                <!-- Botones de Acci\u00f3n -->\n                <div class=\"flex flex-col sm:flex-row items-center justify-center lg:justify-start gap-4\">\n                    <a href=\"#cotizador\" class=\"w-full sm:w-auto px-8 py-4 bg-gradient-to-r from-brand-mamey to-brand-mameyHover text-white font-title font-black rounded-xl hover:scale-105 transition-all text-center uppercase tracking-wider shadow-lg shadow-brand-mamey\/25\">\n                        <i class=\"fa-solid fa-calculator mr-2\"><\/i> Cotizar Mi Proyecto\n                    <\/a>\n                    <a href=\"https:\/\/wa.me\/+18099239117?text=Hola%20Marlis%20Tech%20Solutions,%20me%20interesa%20un%20sitio%20web%20profesional.\" target=\"_blank\" class=\"w-full sm:w-auto px-8 py-4 bg-emerald-600 hover:bg-emerald-500 text-white font-title font-bold rounded-xl transition-all text-center flex items-center justify-center gap-2 shadow-lg shadow-emerald-600\/20\">\n                        <i class=\"fa-brands fa-whatsapp text-xl\"><\/i> WhatsApp Directo\n                    <\/a>\n                <\/div>\n            <\/div>\n\n            <!-- Secci\u00f3n Derecha: Vista de Dispositivo Interactivo (Mockup de simulaci\u00f3n de alta gama) -->\n            <div class=\"lg:col-span-5 relative z-10 flex justify-center\">\n                <div class=\"relative w-full max-w-[340px] sm:max-w-[380px]\">\n                    <!-- Brillo de ne\u00f3n trasero tricolor -->\n                    <div class=\"absolute inset-0 bg-brand-blue\/10 rounded-3xl blur-2xl transform rotate-3\"><\/div>\n                    <div class=\"absolute inset-0 bg-brand-mamey\/10 rounded-3xl blur-2xl transform -rotate-3\"><\/div>\n                    \n                    <!-- Simulaci\u00f3n de Laptop de alta gama -->\n                    <div class=\"bg-gray-950 p-4 rounded-3xl border border-gray-800 shadow-2xl relative overflow-hidden\">\n                        \n                        <div class=\"bg-brand-dark rounded-2xl border border-gray-800 overflow-hidden relative\">\n                            <!-- Barra de navegador superior -->\n                            <div class=\"bg-gray-900 px-3 py-2 flex items-center justify-between border-b border-gray-800\">\n                                <div class=\"flex gap-1.5\">\n                                    <span class=\"w-2 h-2 rounded-full bg-brand-green\"><\/span>\n                                    <span class=\"w-2 h-2 rounded-full bg-brand-yellow\"><\/span>\n                                    <span class=\"w-2 h-2 rounded-full bg-brand-mamey\"><\/span>\n                                <\/div>\n                                <div class=\"bg-gray-950 rounded px-3 py-0.5 text-[8px] text-gray-400 font-mono\">\n                                    marlis-tech.com\n                                <\/div>\n                                <div class=\"w-4\"><\/div>\n                            <\/div>\n\n                            <!-- Contenido Visual del Mockup -->\n                            <div class=\"p-4 bg-gradient-to-b from-brand-dark to-brand-darker relative min-h-[220px] flex flex-col justify-between\">\n                                <div class=\"flex items-center justify-between\">\n                                    <!-- Identificador en Pantalla -->\n                                    <div class=\"flex items-center gap-1.5\">\n                                        <div class=\"w-3.5 h-3.5 bg-brand-green rounded-full flex items-center justify-center text-[7px] text-black font-black\">M<\/div>\n                                        <span class=\"text-[8px] tracking-wider font-extrabold text-white\">MARLIS TECH<\/span>\n                                    <\/div>\n                                    <span class=\"text-[7px] text-brand-mamey bg-brand-mamey\/10 px-1.5 py-0.5 rounded font-bold uppercase tracking-wider\">PROYECTO PREMIUM<\/span>\n                                <\/div>\n\n                                <div class=\"my-3\">\n                                    <span class=\"text-[8px] text-brand-yellow uppercase tracking-wider font-bold\">Impulsa tu negocio en internet<\/span>\n                                    <h2 class=\"text-sm font-black text-white leading-tight mt-1\">\n                                        Sitios web profesionales creados para <span class=\"text-brand-green\">convertir visitas en dinero.<\/span>\n                                    <\/h2>\n                                    <p class=\"text-[9px] text-gray-400 mt-1\">Soporte garantizado, alta velocidad de carga y dise\u00f1o adaptado.<\/p>\n                                <\/div>\n\n                                <!-- \u00cdcono de lanzamiento del cohete adaptado -->\n                                <div class=\"flex justify-center my-1 relative h-16\">\n                                    <div class=\"absolute animate-bounce duration-1000 bottom-0 text-center\">\n                                        <i class=\"fa-solid fa-rocket text-4xl text-brand-mamey drop-shadow-[0_0_15px_rgba(249,115,22,0.6)]\"><\/i>\n                                        <div class=\"text-[7px] text-brand-green uppercase tracking-widest mt-1.5 font-bold\">Lanzamiento Exitoso<\/div>\n                                    <\/div>\n                                <\/div>\n\n                                <div class=\"flex gap-1.5 mt-2 justify-center\">\n                                    <span class=\"text-[7px] bg-brand-blue\/20 text-brand-blue px-2 py-0.5 rounded font-bold\">Responsivo 100%<\/span>\n                                    <span class=\"text-[7px] bg-brand-green\/20 text-brand-green px-2 py-0.5 rounded font-bold\">SEO Optimizado<\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n\n                        <!-- Mini Flotante de Conversi\u00f3n en Vivo -->\n                        <div class=\"absolute bottom-6 -left-2 bg-gray-900\/95 border border-brand-green\/40 rounded-xl p-2 shadow-xl backdrop-blur-md flex items-center gap-2 max-w-[130px] animate-pulse\">\n                            <div class=\"w-6 h-6 bg-brand-green\/10 rounded-full flex items-center justify-center text-brand-green shrink-0\">\n                                <i class=\"fa-solid fa-chart-line text-[10px]\"><\/i>\n                            <\/div>\n                            <div>\n                                <span class=\"text-[7px] text-gray-400 uppercase block font-bold\">Conversi\u00f3n<\/span>\n                                <span class=\"text-xs font-black text-white\">+28.4%<\/span>\n                            <\/div>\n                        <\/div>\n\n                        <!-- Mini Flotante de Venta recibida -->\n                        <div class=\"absolute top-16 -right-2 bg-gray-900\/95 border border-brand-mamey\/40 rounded-xl p-2 shadow-xl backdrop-blur-md flex items-center gap-2 max-w-[130px]\">\n                            <div class=\"w-6 h-6 bg-brand-mamey\/10 rounded-full flex items-center justify-center text-brand-mamey shrink-0\">\n                                <i class=\"fa-solid fa-cart-shopping text-[10px]\"><\/i>\n                            <\/div>\n                            <div>\n                                <span class=\"text-[7px] text-gray-400 uppercase block font-bold\">Nueva Venta<\/span>\n                                <span class=\"text-xs font-black text-brand-mamey\">US$250<\/span>\n                            <\/div>\n                        <\/div>\n\n                    <\/div>\n                <\/div>\n            <\/div>\n\n        <\/div>\n    <\/section>\n\n    <!-- ESTAD\u00cdSTICAS Y CONFIANZA -->\n    <section class=\"border-y border-gray-800 bg-brand-dark\/40 py-6 px-4\">\n        <div class=\"max-w-5xl mx-auto grid grid-cols-2 md:grid-cols-4 gap-6 text-center\">\n            <div>\n                <span class=\"block text-3xl font-black text-brand-green font-title\">100%<\/span>\n                <span class=\"text-xs text-gray-400 uppercase tracking-widest font-semibold mt-1 block\">A Tu Medida<\/span>\n            <\/div>\n            <div>\n                <span class=\"block text-3xl font-black text-brand-yellow font-title\">&lt; 1.5s<\/span>\n                <span class=\"text-xs text-gray-400 uppercase tracking-widest font-semibold mt-1 block\">Velocidad De Carga<\/span>\n            <\/div>\n            <div>\n                <span class=\"block text-3xl font-black text-brand-blue font-title\">+150%<\/span>\n                <span class=\"text-xs text-gray-400 uppercase tracking-widest font-semibold mt-1 block\">Tasa De Retorno<\/span>\n            <\/div>\n            <div>\n                <span class=\"block text-3xl font-black text-brand-mamey font-title\">24\/7<\/span>\n                <span class=\"text-xs text-gray-400 uppercase tracking-widest font-semibold mt-1 block\">Soporte T\u00e9cnico<\/span>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- COTIZADOR DIN\u00c1MICO INTERACTIVO CON EL 75% DE DESCUENTO -->\n    <section id=\"cotizador\" class=\"py-16 px-4 bg-brand-dark relative\">\n        <div class=\"absolute top-0 inset-x-0 h-px bg-gradient-to-r from-transparent via-brand-mamey to-transparent\"><\/div>\n        \n        <div class=\"max-w-4xl mx-auto\">\n            <div class=\"text-center mb-12\">\n                <span class=\"text-brand-mamey text-xs font-bold uppercase tracking-widest bg-brand-mamey\/10 border border-brand-mamey\/30 px-3 py-1 rounded-full\">\n                    S\u00faper Promoci\u00f3n Exclusiva de Temporada\n                <\/span>\n                <h2 class=\"font-title text-3xl sm:text-4xl font-extrabold text-white mt-3\">\n                    Calcula el Presupuesto de tu Web con <span class=\"text-brand-mamey\">75% de Descuento<\/span>\n                <\/h2>\n                <p class=\"text-gray-400 text-sm sm:text-base mt-2 max-w-xl mx-auto\">\n                    Selecciona el formato web que requieres, agrega los bonos especiales que desees a\u00f1adir y cotiza de inmediato.\n                <\/p>\n            <\/div>\n\n            <!-- Interfaz del simulador de cotizaciones -->\n            <div class=\"grid grid-cols-1 md:grid-cols-12 gap-8 items-start\">\n                \n                <!-- Opciones (Lado Izquierdo) -->\n                <div class=\"md:col-span-7 bg-brand-darker p-5 sm:p-6 rounded-2xl border border-gray-800 space-y-6\">\n                    \n                    <!-- Formato del Sitio Web -->\n                    <div>\n                        <label class=\"block text-sm font-bold text-gray-300 uppercase tracking-wider mb-3\">\n                            1. Elige tu Formato Web:\n                        <\/label>\n                        <div class=\"space-y-3\">\n                            <!-- Landing Page -->\n                            <label class=\"relative flex items-center justify-between p-4 rounded-xl border border-brand-mamey\/20 bg-brand-dark\/30 hover:bg-brand-dark\/50 cursor-pointer transition select-none\">\n                                <div class=\"flex items-center gap-3\">\n                                    <input type=\"radio\" name=\"web_type\" value=\"landing\" checked=\"\" class=\"w-5 h-5 text-brand-mamey bg-brand-darker border-gray-700 focus:ring-brand-mamey focus:ring-2 accent-brand-mamey\" onchange=\"recalculatePrice()\">\n                                    <div>\n                                        <span class=\"block text-sm font-bold text-white\">Landing Page Profesional<\/span>\n                                        <span class=\"text-xs text-gray-400\">P\u00e1gina \u00fanica optimizada para conversiones.<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"text-right\">\n                                    <span class=\"block text-xs line-through text-gray-500\">US$600<\/span>\n                                    <span class=\"text-sm font-black text-brand-green\">US$150<\/span>\n                                <\/div>\n                            <\/label>\n\n                            <!-- Corporativo -->\n                            <label class=\"relative flex items-center justify-between p-4 rounded-xl border border-gray-800 bg-brand-dark\/30 hover:bg-brand-dark\/50 cursor-pointer transition select-none\">\n                                <div class=\"flex items-center gap-3\">\n                                    <input type=\"radio\" name=\"web_type\" value=\"corporate\" class=\"w-5 h-5 text-brand-mamey bg-brand-darker border-gray-700 focus:ring-brand-mamey focus:ring-2 accent-brand-mamey\" onchange=\"recalculatePrice()\">\n                                    <div>\n                                        <span class=\"block text-sm font-bold text-white\">Sitio Web Corporativo<\/span>\n                                        <span class=\"text-xs text-gray-400\">Inicio, Servicios, Nosotros y Contacto (Completo).<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"text-right\">\n                                    <span class=\"block text-xs line-through text-gray-500\">US$1,000<\/span>\n                                    <span class=\"text-sm font-black text-brand-green\">US$250<\/span>\n                                <\/div>\n                            <\/label>\n\n                            <!-- E-commerce -->\n                            <label class=\"relative flex items-center justify-between p-4 rounded-xl border border-gray-800 bg-brand-dark\/30 hover:bg-brand-dark\/50 cursor-pointer transition select-none\">\n                                <div class=\"flex items-center gap-3\">\n                                    <input type=\"radio\" name=\"web_type\" value=\"ecommerce\" class=\"w-5 h-5 text-brand-mamey bg-brand-darker border-gray-700 focus:ring-brand-mamey focus:ring-2 accent-brand-mamey\" onchange=\"recalculatePrice()\">\n                                    <div>\n                                        <span class=\"block text-sm font-bold text-white\">Tienda Online \/ E-commerce<\/span>\n                                        <span class=\"text-xs text-gray-400\">Pasarela de pagos, carrito y cat\u00e1logo de productos.<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"text-right\">\n                                    <span class=\"block text-xs line-through text-gray-500\">US$1,800<\/span>\n                                    <span class=\"text-sm font-black text-brand-green\">US$450<\/span>\n                                <\/div>\n                            <\/label>\n                        <\/div>\n                    <\/div>\n\n                    <!-- Bonos de Regalo Adicionales -->\n                    <div>\n                        <div class=\"flex items-center justify-between mb-3\">\n                            <label class=\"block text-sm font-bold text-gray-300 uppercase tracking-wider\">\n                                2. Bonos Especiales de Regalo:\n                            <\/label>\n                            <span class=\"text-[10px] bg-brand-mamey\/20 text-brand-mamey px-2 py-0.5 rounded font-extrabold uppercase\">INCLUIDOS HOY<\/span>\n                        <\/div>\n                        <div class=\"space-y-2\">\n                            <!-- Bono 1 -->\n                            <div class=\"flex items-center justify-between p-3 rounded-lg border border-gray-800 bg-brand-dark\/20 hover:bg-brand-dark\/40 transition\">\n                                <label class=\"flex items-center gap-3 cursor-pointer select-none w-full\">\n                                    <input type=\"checkbox\" id=\"bonus_sales\" checked=\"\" class=\"w-5 h-5 rounded text-brand-mamey bg-brand-darker border-gray-700 focus:ring-brand-mamey focus:ring-2 accent-brand-mamey\" onchange=\"recalculatePrice()\">\n                                    <div>\n                                        <span class=\"text-xs font-bold text-white block\">\u2460 Gui\u00f3n y Estructura de Ventas<\/span>\n                                        <span class=\"text-[10px] text-gray-400\">Textos dise\u00f1ados exclusivamente para convencer y cerrar clientes.<\/span>\n                                    <\/div>\n                                <\/label>\n                                <div class=\"text-right shrink-0 ml-2\">\n                                    <span class=\"text-[10px] text-brand-green font-bold bg-brand-green\/10 px-2 py-0.5 rounded\">GRATIS<\/span>\n                                <\/div>\n                            <\/div>\n\n                            <!-- Bono 2 -->\n                            <div class=\"flex items-center justify-between p-3 rounded-lg border border-gray-800 bg-brand-dark\/20 hover:bg-brand-dark\/40 transition\">\n                                <label class=\"flex items-center gap-3 cursor-pointer select-none w-full\">\n                                    <input type=\"checkbox\" id=\"bonus_instagram\" checked=\"\" class=\"w-5 h-5 rounded text-brand-mamey bg-brand-darker border-gray-700 focus:ring-brand-mamey focus:ring-2 accent-brand-mamey\" onchange=\"recalculatePrice()\">\n                                    <div>\n                                        <span class=\"text-xs font-bold text-white block\">\u2461 Estrategia en Redes Sociales (Instagram)<\/span>\n                                        <span class=\"text-[10px] text-gray-400\">Estrategias de posicionamiento para atraer tr\u00e1fico directo.<\/span>\n                                    <\/div>\n                                <\/label>\n                                <div class=\"text-right shrink-0 ml-2\">\n                                    <span class=\"text-[10px] text-brand-green font-bold bg-brand-green\/10 px-2 py-0.5 rounded\">GRATIS<\/span>\n                                <\/div>\n                            <\/div>\n\n                            <!-- Bono 3 -->\n                            <div class=\"flex items-center justify-between p-3 rounded-lg border border-gray-800 bg-brand-dark\/20 hover:bg-brand-dark\/40 transition\">\n                                <label class=\"flex items-center gap-3 cursor-pointer select-none w-full\">\n                                    <input type=\"checkbox\" id=\"bonus_ai\" class=\"w-5 h-5 rounded text-brand-mamey bg-brand-darker border-gray-700 focus:ring-brand-mamey focus:ring-2 accent-brand-mamey\" onchange=\"recalculatePrice()\">\n                                    <div>\n                                        <span class=\"text-xs font-bold text-white block\">\u2462 Agregado: Agente IA Automatizado (+US$45)<\/span>\n                                        <span class=\"text-[10px] text-gray-400\">Automatiza respuestas para tus clientes directo por WhatsApp con Inteligencia Artificial.<\/span>\n                                    <\/div>\n                                <\/label>\n                                <div class=\"text-right shrink-0 ml-2\">\n                                    <span class=\"text-xs font-black text-brand-mamey\">+US$45<\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n\n                <\/div>\n\n                <!-- Resumen de Compra y Bot\u00f3n de Conversi\u00f3n (Lado Derecho) -->\n                <div class=\"md:col-span-5 bg-gradient-to-b from-brand-darker to-gray-950 p-6 rounded-2xl border-2 border-brand-mamey shadow-2xl relative\">\n                    <!-- Sello superior -->\n                    <div class=\"absolute -top-3.5 left-1\/2 -translate-x-1\/2 bg-brand-mamey text-white text-[10px] font-black uppercase tracking-widest px-4 py-1.5 rounded-full shadow-lg\">\n                        Marlis Tech Oferta Especial\n                    <\/div>\n\n                    <div class=\"pt-2 text-center border-b border-gray-800 pb-5\">\n                        <span class=\"text-[11px] text-gray-400 uppercase tracking-widest font-semibold block\">Valor de Mercado del Proyecto<\/span>\n                        <span id=\"real-price\" class=\"text-xl line-through text-gray-500 font-bold tracking-tight\">US$1,000<\/span>\n                        \n                        <div class=\"mt-2 bg-brand-green\/10 text-brand-green text-xs font-bold inline-block px-3 py-1 rounded\">\n                            \u00a1Ahorras el 75% de forma inmediata!\n                        <\/div>\n\n                        <div class=\"mt-4\">\n                            <span class=\"text-[10px] text-brand-mamey uppercase tracking-widest block font-bold\">INVERSI\u00d3N \u00daNICA<\/span>\n                            <span id=\"discounted-price\" class=\"text-5xl font-black text-white mamey-glow font-title tracking-tighter\">US$250<\/span>\n                        <\/div>\n                    <\/div>\n\n                    <!-- Resumen del Pedido -->\n                    <div class=\"py-4 space-y-2.5 text-xs text-gray-300\">\n                        <span class=\"block text-[10px] uppercase font-bold text-gray-400 tracking-wider\">Tu Cotizaci\u00f3n Incluye:<\/span>\n                        <div id=\"summary-items\" class=\"space-y-2\">\n                            <!-- Se rellena autom\u00e1ticamente mediante javascript -->\n                        <\/div>\n                    <\/div>\n\n                    <div class=\"pt-4 border-t border-gray-800 space-y-4\">\n                        <div class=\"flex items-center justify-center gap-2 text-xs text-brand-green bg-brand-green\/10 p-2.5 rounded-lg border border-brand-green\/20\">\n                            <i class=\"fa-solid fa-shield-halved\"><\/i>\n                            <span class=\"font-bold\">Garant\u00eda total de Satisfacci\u00f3n de 30 d\u00edas<\/span>\n                        <\/div>\n\n                        <!-- Bot\u00f3n para mandar a WhatsApp -->\n                        <button onclick=\"sendToWhatsApp()\" class=\"w-full bg-emerald-600 hover:bg-emerald-500 text-white font-title font-black py-4 px-4 rounded-xl flex items-center justify-center gap-3 transition-transform hover:scale-[1.02] text-sm uppercase tracking-wider shadow-lg shadow-emerald-600\/20\">\n                            <i class=\"fa-brands fa-whatsapp text-xl\"><\/i> Solicitar Esta Oferta\n                        <\/button>\n                        \n                        <div class=\"text-center\">\n                            <span class=\"text-[10px] text-gray-500 block\">\u00bfTienes dudas previas? Escr\u00edbenos directamente:<\/span>\n                            <a href=\"tel:+18493992322\" class=\"text-xs text-brand-mamey hover:underline font-mono mt-1 inline-block font-bold\">+1 (849) 399-2322<\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- METODOLOG\u00cdA MARLIS TECH (En 3 Sencillos Pasos) -->\n    <section class=\"py-16 px-4 bg-brand-darker relative\">\n        <div class=\"max-w-5xl mx-auto\">\n            <div class=\"text-center mb-12\">\n                <span class=\"text-brand-mamey text-xs font-bold uppercase tracking-widest\">Metodolog\u00eda Comprobada<\/span>\n                <h2 class=\"font-title text-3xl font-extrabold text-white mt-1\">\u00bfC\u00f3mo construimos tu m\u00e1quina de ventas?<\/h2>\n                <p class=\"text-gray-400 text-sm mt-2 max-w-lg mx-auto\">Nuestro proceso est\u00e1 estructurado para ahorrarte tiempo y garantizar el \u00f3ptimo funcionamiento de tu web.<\/p>\n            <\/div>\n\n            <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8\">\n                <!-- Paso 1 -->\n                <div class=\"bg-brand-dark\/40 p-6 rounded-2xl border border-gray-800 relative group hover:border-brand-green\/30 transition\">\n                    <div class=\"absolute -top-5 left-6 w-10 h-10 rounded-xl bg-brand-green text-black flex items-center justify-center font-title font-black text-xl shadow-lg\">\n                        1\n                    <\/div>\n                    <div class=\"mt-2\">\n                        <h3 class=\"font-bold text-lg text-white mb-2\">Entrevista Estrat\u00e9gica<\/h3>\n                        <p class=\"text-xs text-gray-400 leading-relaxed\">\n                            Analizamos el mercado y competidores para enfocar los textos y la navegaci\u00f3n exclusivamente hacia tu cliente potencial e id\u00f3neo.\n                        <\/p>\n                    <\/div>\n                <\/div>\n\n                <!-- Paso 2 -->\n                <div class=\"bg-brand-dark\/40 p-6 rounded-2xl border border-gray-800 relative group hover:border-brand-yellow\/30 transition\">\n                    <div class=\"absolute -top-5 left-6 w-10 h-10 rounded-xl bg-brand-yellow text-black flex items-center justify-center font-title font-black text-xl shadow-lg\">\n                        2\n                    <\/div>\n                    <div class=\"mt-2\">\n                        <h3 class=\"font-bold text-lg text-white mb-2\">Desarrollo de Alta Velocidad<\/h3>\n                        <p class=\"text-xs text-gray-400 leading-relaxed\">\n                            Dise\u00f1amos con tecnolog\u00eda moderna enfocada en la velocidad de carga \u00f3ptima y est\u00e9tica para que nunca pierdas clientes en celulares lentos.\n                        <\/p>\n                    <\/div>\n                <\/div>\n\n                <!-- Paso 3 -->\n                <div class=\"bg-brand-dark\/40 p-6 rounded-2xl border border-gray-800 relative group hover:border-brand-blue\/30 transition\">\n                    <div class=\"absolute -top-5 left-6 w-10 h-10 rounded-xl bg-brand-blue text-white flex items-center justify-center font-title font-black text-xl shadow-lg\">\n                        3\n                    <\/div>\n                    <div class=\"mt-2\">\n                        <h3 class=\"font-bold text-lg text-white mb-2\">Integraci\u00f3n de Conversi\u00f3n<\/h3>\n                        <p class=\"text-xs text-gray-400 leading-relaxed\">\n                            A\u00f1adimos accesos directos a WhatsApp, tu cotizador personalizado, pixel de seguimiento y correos institucionales para empezar a vender ya mismo.\n                        <\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- TESTIMONIOS REALES -->\n    <section class=\"py-16 px-4 bg-brand-dark relative\">\n        <div class=\"max-w-4xl mx-auto\">\n            <div class=\"text-center mb-12\">\n                <span class=\"text-brand-yellow text-xs font-bold uppercase tracking-widest\">Opiniones de Nuestros Clientes<\/span>\n                <h2 class=\"font-title text-3xl font-extrabold text-white mt-1\">Historias de \u00c9xito y Resultados<\/h2>\n            <\/div>\n\n            <div class=\"grid grid-cols-1 md:grid-cols-2 gap-6\">\n                <!-- Testimonio 1 -->\n                <div class=\"bg-brand-darker p-5 rounded-2xl border border-gray-800 flex flex-col justify-between\">\n                    <p class=\"text-xs text-gray-300 italic leading-relaxed\">\n                        \"Solicit\u00e9 una Landing Page para mi servicio de consultor\u00eda inmobiliaria con Marlis Tech Solutions. En menos de una semana ya estaba captando clientes directos que me escrib\u00edan a WhatsApp. \u00a1La inversi\u00f3n se pag\u00f3 sola!\"\n                    <\/p>\n                    <div class=\"flex items-center gap-3 mt-4 pt-4 border-t border-gray-800\">\n                        <div class=\"w-9 h-9 rounded-full bg-brand-green\/10 flex items-center justify-center text-brand-green font-bold text-xs\">\n                            AH\n                        <\/div>\n                        <div>\n                            <span class=\"block text-xs font-bold text-white\">Alejandro Herrera<\/span>\n                            <span class=\"text-[10px] text-gray-400\">Consultor Senior &#8211; SD<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <!-- Testimonio 2 -->\n                <div class=\"bg-brand-darker p-5 rounded-2xl border border-gray-800 flex flex-col justify-between\">\n                    <p class=\"text-xs text-gray-300 italic leading-relaxed\">\n                        \"Excelente trabajo. Muy profesionales en todo el proceso. La velocidad de carga de la tienda online super\u00f3 todas mis expectativas y la integraci\u00f3n con el cotizador de env\u00edos les encant\u00f3 a mis clientes.\"\n                    <\/p>\n                    <div class=\"flex items-center gap-3 mt-4 pt-4 border-t border-gray-800\">\n                        <div class=\"w-9 h-9 rounded-full bg-brand-yellow\/10 flex items-center justify-center text-brand-yellow font-bold text-xs\">\n                            MC\n                        <\/div>\n                        <div>\n                            <span class=\"block text-xs font-bold text-white\">Mar\u00eda Camila Rojas<\/span>\n                            <span class=\"text-[10px] text-gray-400\">Fundadora de EcoModa<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- PIE DE P\u00c1GINA (Footer) -->\n    <footer class=\"bg-brand-darker border-t border-gray-800 py-12 px-4\">\n        <div class=\"max-w-6xl mx-auto flex flex-col md:flex-row items-center justify-between gap-6\">\n            \n            <!-- Logotipo del Footer -->\n            <div class=\"flex items-center gap-3\">\n                <div class=\"w-9 h-9 bg-brand-green rounded-xl flex items-center justify-center text-black font-black text-sm\">\n                    M\n                <\/div>\n                <div>\n                    <span class=\"font-title text-base font-black tracking-wider text-white\">\n                        <span class=\"text-brand-green\">M<\/span><span class=\"text-brand-yellow\">ar<\/span><span class=\"text-brand-blue\">lis<\/span> <span class=\"text-brand-mamey\">Tech Solutions<\/span>\n                    <\/span>\n                    <p class=\"text-[10px] text-gray-500 uppercase tracking-widest\">\u00a9 2026 Todos los derechos reservados.<\/p>\n                <\/div>\n            <\/div>\n\n            <!-- Accesos R\u00e1pidos -->\n            <div class=\"flex gap-4 text-xs text-gray-400\">\n                <a href=\"#cotizador\" class=\"hover:text-brand-mamey transition\">Cotizador<\/a>\n                <span class=\"text-gray-700\">\u2022<\/span>\n                <a href=\"https:\/\/wa.me\/18099239117\" target=\"_blank\" class=\"hover:text-brand-green transition\">Soporte 24\/7<\/a>\n                <span class=\"text-gray-700\">\u2022<\/span>\n                <a href=\"tel:+18099239117\" class=\"hover:text-brand-mamey transition\">Contacto<\/a>\n            <\/div>\n\n            <!-- Botones Sociales -->\n            <div class=\"flex items-center gap-3\">\n                <a href=\"https:\/\/wa.me\/+18099239117\" target=\"_blank\" class=\"w-8 h-8 rounded-full bg-emerald-500\/10 hover:bg-emerald-500 text-emerald-400 hover:text-white flex items-center justify-center transition\">\n                    <i class=\"fa-brands fa-whatsapp\"><\/i>\n                <\/a>\n                <a href=\"tel:+18493992322\" class=\"w-8 h-8 rounded-full bg-brand-mamey\/10 hover:bg-brand-mamey text-brand-mamey hover:text-white flex items-center justify-center transition\">\n                    <i class=\"fa-solid fa-phone text-xs\"><\/i>\n                <\/a>\n            <\/div>\n        <\/div>\n    <\/footer>\n\n\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"ext-animate--on wp-block-paragraph\"><\/p>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Marlis Tech Solutions | Sitios Web Profesionales Marlis Tech Solutions +1 (849) 399-2322 TU NEGOCIO MERECE M\u00c1S UN SITIO WEB QUE S\u00cd VENDE MIENTRAS T\u00da DESCANSAS Desarrollamos soluciones digitales premium con velocidad de carga r\u00e9cord, dise\u00f1os adaptados 100% a celulares y estrategias de conversi\u00f3n validadas para que multipliques tus prospectos. Dise\u00f1o Exclusivo Totalmente personalizado a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"open","template":"","meta":{"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/comments?post=2"}],"version-history":[{"count":3,"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":110,"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/pages\/2\/revisions\/110"}],"wp:attachment":[{"href":"https:\/\/marlis.tech\/es\/wp-json\/wp\/v2\/media?parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}