/* Animações simples para substituir framer-motion */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(12px); }
to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to   { opacity: 1; }
}
.anim-fade-up { animation: fadeUp .7s ease forwards; }
.anim-fade-in { animation: fadeIn .7s ease forwards; }
.anim-del-1 { animation-delay: .3s; }
.anim-del-2 { animation-delay: .5s; }
.anim-del-3 { animation-delay: .7s; }
.anim-del-4 { animation-delay: 1s; }

/* pequeno ajuste para o background do layout */
body { background: linear-gradient(180deg, #f8fafc 0%, #e6f0fb 100%); }