/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 15 2026 | 10:47:13 */
/* ============================================
OPTIMIZACIÓN VISUAL: OCULTAR NITRO PACK BADGE
============================================ */

/* --- 
Elimina el distintivo de NitroPack en la parte inferior.
Se usa una especificidad alta para asegurar que sobreescriba 
los estilos inyectados por el script de optimización.
--- */

div[class*="nitropack-badge"],
.nitropack-badge,
#nitropack-badge-container {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Nota: Se utiliza !important ya que NitroPack suele inyectar 
estilos inline o mediante scripts que se ejecutan después 
de la carga del CSS inicial. 
*/

