/**
 * ARCHIVO: /public/assets/css/landing.css
 * DESCRIPCIÓN: Estilos de alto impacto para la Landing Page pública.
 */

/* Malla Holográfica de Fondo (Tech Grid) */
.tech-grid {
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

/* Glassmorphism Premium Base (Vidrio oscuro puro) */
.glass-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(10, 14, 23, 0.9) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Animación de Levitación para los PNGs */
.float-anim {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

/* Resplandor Premium para textos clave */
.text-glow-cyan {
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6), 0 0 30px rgba(0, 229, 255, 0.3);
}

/* Animación para el Carrusel */
.fade-enter { opacity: 0; transform: scale(0.95) translateY(20px); }
.fade-enter-active { opacity: 1; transform: scale(1) translateY(0); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-leave { opacity: 1; }
.fade-leave-active { opacity: 0; transition: all 0.3s ease-in; position: absolute; top: 0; }