
/* ─── NAVBAR MOBILE: oculto por defecto ──────────────── */
.navbar__mobile[hidden] {
  display: none !important;
}

/* ─── ANIMACIONES DE ENTRADA (Intersection Observer) ─── */
.anim-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1),
              transform .55s cubic-bezier(.4,0,.2,1);
}
.anim-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Retrasos escalonados para grids */
.step:nth-child(2),
.profile-card:nth-child(2),
.testimonial:nth-child(2) { transition-delay: .1s; }

.step:nth-child(3),
.profile-card:nth-child(3),
.testimonial:nth-child(3) { transition-delay: .2s; }

.step:nth-child(4) { transition-delay: .3s; }
