#titleCambiado {
    /* Animación de pulso constante */
    animation: pulse Glow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(234,88,12,0.5); }
    50% { text-shadow: 0 0 25px rgba(234,88,12,1); }
}