Disfruta envío gratuito en pedidos superiores a $50.000, a cualquier lugar de Chile.
|

Memoria Ram Notebook Crucial 4gb Ddr4 2666mhz Sodimm Oem

Description

La memoria RAM Crucial 4GB DDR4 2666MHz SODIMM OEM es una excelente alternativa para mejorar el rendimiento de notebooks compatibles con tecnología DDR4. Diseñada para ofrecer estabilidad, compatibilidad y eficiencia energética, esta memoria permite que el equipo responda de forma más rápida al abrir programas, navegar por internet, utilizar aplicaciones de oficina o realizar multitarea diaria. Crucial es una de las marcas más reconocidas del mercado en soluciones de memoria y almacenamiento, ampliamente utilizada tanto por fabricantes como por usuarios que buscan componentes confiables y duraderos. Gracias a su frecuencia de 2666MHz, esta memoria entrega una transferencia de datos más rápida que generaciones anteriores, ayudando a optimizar el desempeño general del sistema. Su formato SODIMM la hace compatible con una gran variedad de notebooks y mini PCs que utilizan memoria DDR4. Además, al trabajar con bajo voltaje de 1.2V, contribuye a un menor consumo energético y mejor eficiencia térmica, ideal para equipos portátiles. Producto OEM probado y garantizado por Tecnocam, ideal para ampliar memoria en notebooks Lenovo, HP, Dell, ASUS, Acer y otras marcas compatibles con DDR4 SODIMM. Ficha técnica Marca: Crucial Modelo: CT4G4SFS6266 Capacidad: 4GB Tipo de memoria: DDR4 Formato: SODIMM Frecuencia: 2666MHz Voltaje: 1.2V Latencia: CL19 Compatibilidad: Notebook y Mini PC compatibles con DDR4 SODIMM Configuración: 1Rx16 Condición: OEM / Granel Estado: Nuevo Garantía: 12 meses Cliente puede solicitar boleta o factura.
#tc-chat-btn{ position:fixed; top:90px; right:20px; background:#4b4b4b; color:#fff; padding:12px 18px; border-radius:10px; cursor:pointer; z-index:99999; font-family:Arial; font-size:14px; font-weight:700; box-shadow:0 6px 18px rgba(201,31,54,.35); border:1px solid rgba(255,255,255,.25); } #tc-chat-box{ position:fixed; top:145px; right:20px; width:360px; height:520px; background:#fff; border-radius:14px; box-shadow:0 14px 40px rgba(0,0,0,.25); display:none; flex-direction:column; overflow:hidden; z-index:99999; font-family:Arial; border:1px solid #e5e5e5; } #tc-chat-header{ background:#555; color:#fff; padding:15px; font-weight:700; } #tc-chat-messages{ flex:1; padding:14px; overflow-y:auto; font-size:14px; background:#fafafa; } #tc-chat-input{ display:flex; border-top:1px solid #ddd; background:#555; } #tc-chat-input input{ flex:1; padding:13px; border:none; outline:none; font-size:14px; } #tc-chat-input button{ background:#555; color:#fff; border:none; padding:12px 16px; cursor:pointer; font-weight:700; }
💬 Chatea Asistente IA
Asistente de ventas Tecnocam
const btn = document.getElementById("tc-chat-btn"); const box = document.getElementById("tc-chat-box"); const msgs = document.getElementById("tc-chat-messages"); btn.onclick = () => { box.style.display = box.style.display === "flex" ? "none" : "flex"; }; function saveMessages(){ localStorage.setItem( "tc_chat_history", msgs.innerHTML ); } function loadMessages(){ const saved = localStorage.getItem("tc_chat_history"); if(saved){ msgs.innerHTML = saved; msgs.scrollTop = msgs.scrollHeight; } } async function tcSend(){ const input = document.getElementById("tc-msg"); const text = input.value.trim(); if(!text) return; msgs.innerHTML += `
${text}
`; saveMessages(); input.value = ""; msgs.innerHTML += `
Escribiendo...
`; msgs.scrollTop = msgs.scrollHeight; const r = await fetch( "https://n8n.help24.cl/webhook/chat-tecnocam", { method:"POST", headers:{ "Content-Type":"application/json" }, body:JSON.stringify({ message:text }) } ); document.getElementById("tc-typing")?.remove(); const data = await r.text(); msgs.innerHTML += `
${data}
`; saveMessages(); msgs.scrollTop = msgs.scrollHeight; } document .getElementById("tc-msg") .addEventListener("keydown", function(e){ if(e.key === "Enter") tcSend(); }); loadMessages();