document.addEventListener("DOMContentLoaded", function() { const postBodies = document.querySelectorAll('.post-body'); postBodies.forEach(post => { // Crear el contenedor del botón const container = document.createElement('div'); container.style.cssText = 'margin: 25px 0; text-align: center; border-top: 2px solid #f1f1f1; padding-top: 20px;'; const shareBtn = document.createElement('button'); shareBtn.innerHTML = '📤 Compartir este Sermón'; shareBtn.style.cssText = 'background: #2c3e50; color: white; border: none; padding: 12px 25px; border-radius: 50px; cursor: pointer; font-weight: bold; font-size: 16px; transition: transform 0.2s;'; });