/* Suarez Technology - Estilos Personalizados */

/* Navegación con efecto glassmorphism */
.glass-nav {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid #30363d !important;
}

/* Gradiente hero con efecto radial */
.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(19, 91, 236, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
}

/* Borde con efecto neón */
.neon-border {
    box-shadow: 0 0 15px rgba(19, 91, 236, 0.3);
}

/* Mockup flotante con perspectiva 3D */
.floating-mockup {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

/* Animaciones personalizadas */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Transiciones suaves para hover */
.smooth-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradiente de texto */
.gradient-text {
    background: linear-gradient(to right, #135bec, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Efecto de brillo en hover para tarjetas */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.card-shine:hover::before {
    left: 100%;
}
