/* === ANIMATIONS — Keyframes === */

@keyframes ds-blob-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -40px) scale(1.1) rotate(5deg); }
    50% { transform: translate(-20px, 20px) scale(0.95) rotate(-3deg); }
    75% { transform: translate(40px, 10px) scale(1.05) rotate(3deg); }
}

@keyframes ds-blob-morph {
    0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
    25% { border-radius: 73% 27% 56% 44% / 28% 64% 36% 72%; }
    50% { border-radius: 28% 72% 44% 56% / 65% 35% 58% 42%; }
    75% { border-radius: 60% 40% 30% 70% / 50% 62% 38% 50%; }
}

@keyframes ds-pulse-soft {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

@keyframes ds-float-up {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes ds-nav-bounce {
    0% { transform: translateY(-100%); }
    60% { transform: translateY(4px); }
    80% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

/* === Terapia Infantil — Claymorphism bounce === */
@keyframes ds-clay-bounce {
    0% { transform: scale(1.1) rotate(-3deg); }
    40% { transform: scale(1.2) rotate(-6deg); }
    70% { transform: scale(1.12) rotate(-4deg); }
    100% { transform: scale(1.15) rotate(-5deg); }
}

/* === Centro Terapéutico — Gold shimmer === */
@keyframes ds-gold-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* === Psicólogo Clínico — Breathing/organic animations === */
@keyframes ds-breathing-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0,0,0,0.04); }
    50% { box-shadow: 0 0 30px rgba(0,0,0,0.08); }
}

@keyframes ds-organic-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* === Reduced motion — Disable all animations === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
