/* =================================================================
   ESTILOS Y ANIMACIONES PREMIUM PARA BLOQUES MWP
   ================================================================= */
.mwp-content-block-item {
    position: relative;
    box-sizing: border-box;
}

/* Animación 1: Pulso Suave de Color */
@keyframes mwpPulseSoft {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
    100% { filter: brightness(1); }
}
.mwp-anim-pulse-soft {
    background-color: #0b0f19;
    animation: mwpPulseSoft 8s ease-in-out infinite;
}

/* Animación 2: Flujo de Degradado Dinámico */
@keyframes mwpGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.mwp-anim-gradient-flow {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0284c7, #0f172a);
    background-size: 400% 400%;
    animation: mwpGradientFlow 12s ease infinite;
}

/* Animación 3: Brillo Estelar / Partículas simuladas */
@keyframes mwpGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; box-shadow: inset 0 0 50px rgba(50, 193, 255, 0.2); }
}
.mwp-anim-particles-glow {
    background-color: #000000;
    animation: mwpGlow 5s ease-in-out infinite;
}