VIGOR MAX - Últimas Unidades
Paga al recibir
Envío gratis
Calidad garantizada
100% Satisfacción
⚡ ¡Aprovecha esta oferta limitada antes de que se agote!
🔥 40% de descuento exclusivo
🚚 Envío gratis a todo Colombia
💵 Paga cuando recibas
<div style="background:white; border-radius:20px; box-shadow:0 4px 12px rgba(0,0,0,0.1); padding:30px; max-width:800px; margin:40px auto; text-align:center; font-family:'Poppins',sans-serif;">
<!-- SELLOS DE CONFIANZA -->
<div style="display:flex; justify-content:center; flex-wrap:wrap; gap:15px; margin-bottom:25px;">
<div style="background:#4CAF50; color:white; border-radius:50%; width:120px; height:120px; display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 0 10px rgba(0,0,0,0.2); font-size:13px; font-weight:600;">
<span>📦</span>
<span>Pide y paga</span>
<span>contra entrega</span>
</div>
<div style="background:#7B1FA2; color:white; border-radius:50%; width:120px; height:120px; display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 0 10px rgba(0,0,0,0.2); font-size:13px; font-weight:600;">
<span>🚚</span>
<span>Envíos 100%</span>
<span>GRATIS</span>
</div>
<div style="background:#4CAF50; color:white; border-radius:50%; width:120px; height:120px; display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 0 10px rgba(0,0,0,0.2); font-size:13px; font-weight:600;">
<span>✅</span>
<span>Calidad</span>
<span>garantizada</span>
</div>
<div style="background:#7B1FA2; color:white; border-radius:50%; width:120px; height:120px; display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 0 10px rgba(0,0,0,0.2); font-size:13px; font-weight:600;">
<span>🌟</span>
<span>100%</span>
<span>Satisfacción</span>
</div>
</div>
<!-- LÍNEA DE TIEMPO -->
<div style="display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:40px;">
<div style="text-align:center;">
<div style="background:#4CAF50; color:white; border-radius:50%; width:50px; height:50px; display:flex; align-items:center; justify-content:center; margin:auto;">🛒</div>
<div id="fechaCompra" style="font-weight:700; margin-top:5px;"></div>
<div style="font-size:13px;">Fecha de compra</div>
</div>
<div style="height:2px; background:#ccc; width:60px;"></div>
<div style="text-align:center;">
<div style="background:#7B1FA2; color:white; border-radius:50%; width:50px; height:50px; display:flex; align-items:center; justify-content:center; margin:auto;">🚚</div>
<div id="fechaEnvio" style="font-weight:700; margin-top:5px;"></div>
<div style="font-size:13px;">Fecha de envío</div>
</div>
<div style="height:2px; background:#ccc; width:60px;"></div>
<div style="text-align:center;">
<div style="background:#4CAF50; color:white; border-radius:50%; width:50px; height:50px; display:flex; align-items:center; justify-content:center; margin:auto;">🎁</div>
<div id="fechaEntrega" style="font-weight:700; margin-top:5px;"></div>
<div style="font-size:13px;">Fecha de entrega</div>
</div>
</div>
</div>
<script>
function formatearFecha(fecha) {
const meses = ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"];
return `${fecha.getDate()}. ${meses[fecha.getMonth()]}`;
}
const hoy = new Date();
const envioInicio = new Date(hoy);
envioInicio.setDate(hoy.getDate() + 1);
const envioFin = new Date(hoy);
envioFin.setDate(hoy.getDate() + 2);
const entregaInicio = new Date(hoy);
entregaInicio.setDate(hoy.getDate() + 3);
const entregaFin = new Date(hoy);
entregaFin.setDate(hoy.getDate() + 5);
document.getElementById("fechaCompra").innerText = formatearFecha(hoy);
document.getElementById("fechaEnvio").innerText = `${formatearFecha(envioInicio)} - ${formatearFecha(envioFin)}`;
document.getElementById("fechaEntrega").innerText = `${formatearFecha(entregaInicio)} - ${formatearFecha(entregaFin)}`;
</script>
.