document.addEventListener('DOMContentLoaded', function() { setTimeout(function() { (function() { const style = document.createElement('style'); style.textContent = ` #whatsapp-float { position: fixed; bottom: 20px; left: 20px; width: 60px; height: 60px; background-color: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 8px rgba(0,0,0,0.3); cursor: pointer; z-index: 1000; transition: transform 0.3s; } #whatsapp-float:hover { transform: scale(1.1); } #whatsapp-float img { width: 30px; height: 30px; } #chat-widget { display: none; position: fixed; bottom: 100px; left: 20px; width: 450px; background: white; border: 1px solid #ccc; border-radius: 10px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 1001; animation: fadeIn 0.5s; font-family: Arial, sans-serif; font-size: 14px; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } #chat-widget h2 { font-size: 16px; margin-bottom: 10px; } #chat-widget p { font-size: 13px; margin-bottom: 5px; } .social-buttons { display: flex; flex-direction: column; /* APILADOS */ gap: 10px; margin-top: 10px; } .social-buttons button { border: none; border-radius: 8px; padding: 10px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: opacity 0.3s; width: 100%; } .social-buttons button:hover { opacity: 0.8; } .messenger-btn { background-color: rgb(0, 132, 255); color: white; } .instagram-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; } .whatsapp-btn { background-color: rgb(79, 206, 93); color: white; } .social-buttons svg { width: 24px; height: 24px; fill: white; } /* Responsive para pantallas pequeñas */ @media (max-width: 480px) { #chat-widget { width: 90%; left: 5%; font-size: 12px; padding: 15px; } #chat-widget h2 { font-size: 15px; } #chat-widget p { font-size: 12px; } .social-buttons { flex-direction: column; gap: 8px; } .social-buttons button { font-size: 14px; padding: 8px; } } `; document.head.appendChild(style); // Crear botón flotante const whatsappButton = document.createElement('div'); whatsappButton.id = 'whatsapp-float'; const whatsappIcon = document.createElement('img'); whatsappIcon.src = 'https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'; whatsappIcon.alt = 'WhatsApp'; whatsappButton.appendChild(whatsappIcon); document.body.appendChild(whatsappButton); // Crear widget de chat const chatWidget = document.createElement('div'); chatWidget.id = 'chat-widget'; chatWidget.innerHTML = `

¿Podemos ayudarte?

1- Despacho en el día antes de las 12:30 pm

2- Puedes comprar por esta web, mercadolibre y/o cotización.

3- El inventario visible está disponible inmediatamente.

`; document.body.appendChild(chatWidget); whatsappButton.addEventListener('click', function() { const widgetVisible = chatWidget.style.display === 'block'; chatWidget.style.display = widgetVisible ? 'none' : 'block'; if (!widgetVisible && document.getElementById('countdown-widget-inside')) { if (!document.getElementById('countdown-widget-inside-days')) { createCountdownWidget('countdown-widget-inside'); startCountdown('countdown-widget-inside'); } } }); })(); }, 1000); });