/* ============================================
   LUXORA - Animaciones
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(255, 215, 0, .35); }
    50%      { box-shadow: 0 0 38px rgba(255, 215, 0, .65); }
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .6; }
}

section { animation: fadeIn .8s ease-out; }

/* Brillo pulsante del CTA */
.glow { animation: glowPulse 2.5s ease-in-out infinite; }

/* Gradiente del título en movimiento */
.highlight { background-size: 200% auto; animation: shine 4s linear infinite; }