Planes nutricionales generados por IA, adaptados a la raza, edad y condición de salud de cada paciente. Más de 3.000 clínicas veterinarias confían en NutriPaw.
// gsap.from() + stagger word-by-word gsap.from(".word-inner", { y: 60, autoAlpha: 0, duration: 0.7, stagger: 0.12, ease: "power3.out", delay: 0.3 });
// repeat + yoyo + elastic ease gsap.fromTo("#badge-dot", { scale: 1 }, { scale: 1.6, duration: 0.6, repeat: -1, yoyo: true, ease: "elastic.out(1,0.4)" } );
// .benefit-card con stagger object gsap.from([ "#card-0", "#card-1", "#card-2" ], { y: 50, autoAlpha: 0, duration: 0.65, stagger: { each: 0.15, from: "start" }, ease: "power2.out" });
const mm = gsap.matchMedia(); mm.add({ isDesktop: "(min-width:768px)", reduceMotion: "(prefers-reduced-motion:reduce)" }, (ctx) => { const { reduceMotion } = ctx.conditions; gsap.to("#phone", { y: reduceMotion ? 0 : -12, duration: reduceMotion ? 0 : 2, repeat: -1, yoyo: true, ease: "power1.inOut" }); });