.blog-post-author { display: none; } /* === Botón de WhatsApp para Tome pal Pinto === */ .whatsapp-button { display: flex; justify-content: center; align-items: center; margin: 20px auto; /* Centra el botón */ max-width: 400px; /* Tamaño máximo */ } .whatsapp-button a { display: flex; align-items: center; text-decoration: none; background: linear-gradient(to right, #00E676, #FFA726); /* Gradiente verde a naranja */ color: #ffffff; /* Texto blanco */ font-size: 16px; font-weight: bold; padding: 12px 20px; border-radius: 30px; /* Bordes redondeados */ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra elegante */ transition: all 0.3s ease-in-out; } .whatsapp-icon { background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'); /* Ícono de WhatsApp */ background-size: cover; background-position: center; width: 24px; height: 24px; margin-right: 10px; } .whatsapp-button a:hover { transform: translateY(-3px); /* Efecto de levitación */ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra más intensa */ } /* Widget ULTIMAS NOTICIAS*/ #recent-posts-2 { background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 20px; box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1); font-family: 'Arial', sans-serif; } #recent-posts-2 .widget-title { font-size: 22px; font-weight: 700; color: #333; margin-bottom: 12px; border-bottom: 3px solid #ffa500; /* Naranja vibrante */ padding-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; } /* Inicializa el contador */ #recent-posts-2 ul { list-style: none; padding: 0; margin: 0; counter-reset: list-counter; /* Resetea el contador */ } #recent-posts-2 ul li { font-size: 16px; font-weight: 500; color: #555; margin-bottom: 10px; /* Reducido para menos espacio */ position: relative; padding-left: 40px; line-height: 1.4; /* Más compacto */ transition: transform 0.2s ease; border-bottom: 1px solid #e0e0e0; /* Línea divisoria entre noticias */ padding-bottom: 8px; /* Reducido */ } #recent-posts-2 ul li:last-child { border-bottom: none; /* Elimina la línea del último elemento */ } #recent-posts-2 ul li:hover { transform: translateX(5px); } /* Estilo del número */ #recent-posts-2 ul li:before { content: counter(list-counter); /* Solo el número */ counter-increment: list-counter; /* Incrementa el contador */ position: absolute; left: 0; top: 0; font-size: 20px; font-weight: bold; color: #ffffff; /* Color del número */ background: #ffa500; /* Fondo naranja vibrante */ border-radius: 50%; width: 28px; height: 28px; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } /* Efecto en los enlaces */ #recent-posts-2 ul li a { text-decoration: none; color: #333; transition: color 0.3s; } #recent-posts-2 ul li a:hover { color: #ffa500; /* Naranja vibrante en hover */ font-weight: 600; } /* Widget TENDENCIAS*/ #top-posts-2 { background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 20px; box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1); font-family: 'Arial', sans-serif; } #top-posts-2 .widget-title { font-size: 22px; font-weight: 700; color: #333; margin-bottom: 16px; border-bottom: 3px solid #ffa500; /* Naranja más claro */ padding-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; } /* Inicializa el contador */ #top-posts-2 ul { list-style: none; padding: 0; margin: 0; counter-reset: list-counter; /* Resetea el contador */ } #top-posts-2 ul li { font-size: 16px; font-weight: 500; color: #555; margin-bottom: 16px; position: relative; padding-left: 40px; line-height: 1.6; transition: transform 0.2s ease; } #top-posts-2 ul li:hover { transform: translateX(5px); } /* Estilo del número */ #top-posts-2 ul li:before { content: counter(list-counter); /* Solo el número */ counter-increment: list-counter; /* Incrementa el contador */ position: absolute; left: 0; top: 0; font-size: 20px; font-weight: bold; color: #ffffff; /* Color del número */ background: #ffa500; /* Fondo naranja claro */ border-radius: 50%; width: 28px; height: 28px; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } /* Efecto en los enlaces */ #top-posts-2 ul li a { text-decoration: none; color: #333; transition: color 0.3s; } #top-posts-2 ul li a:hover { color: #d9534f; /* Color de hover */ font-weight: 600; }