/* Revelação sutil ao rolar a página */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.18s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.24s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
