/* ============================================
   ABOUT US PAGE — SoloTurnos Landing
   ============================================ */

/* Animación de flotación para las tarjetas de íconos */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

/* Delays */
.delay-100 { animation-delay: 0.5s; }
.delay-200 { animation-delay: 1s; }
.delay-300 { animation-delay: 1.5s; }

/* Utilidad de gradiente para texto */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Reveal animation (fallback for pages without shared reveal-observer) */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Hide scrollbar utility */
.scrollbar-hide::-webkit-scrollbar { display: none; }
