/* ESTILOS PERSONALIZADOS
   GuacharOS Landing Page
*/

/* Animaciones y Utilidades extra que Tailwind no cubre por defecto */

/* Efecto Hover en Tarjetas */
.service-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(109, 40, 217, 0.15),
                0 10px 10px -5px rgba(109, 40, 217, 0.1);
}

/* Fondos y Efectos Visuales */
.mockup-bg {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Animación de flotación suave */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Animación de entrada suave (opcional, si quisieras más interactividad) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}
