/* =========================================
   css/style.css
   Estilos genéricos del sitio NG Technology
   ========================================= */
body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}
p { font-size: 1rem; line-height: 1.6; color: #B0B3B8; }

/* Efectos Glassmorphism */
.glass-panel {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.glass-card {
    background: linear-gradient(145deg, rgba(26,26,26,0.8) 0%, rgba(18,18,18,0.9) 100%);
    border: 1px solid rgba(176, 179, 184, 0.1);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 10px 30px -10px rgba(230, 57, 70, 0.2);
    transform: translateY(-8px);
}

/* Degradados y Fondos */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #ffffff, #B0B3B8);
}
.text-gradient-red {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #E63946, #8B0000);
}
.bg-hero-gradient {
    background: radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(176, 179, 184, 0.1) 0%, transparent 40%);
}

/* Animaciones Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Utilidades de Navegación y Botones */
.mega-menu-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}
.nav-item-soluciones:hover .mega-menu-container {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.btn-primary {
    background: linear-gradient(90deg, #E63946, #8B0000);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
    transform: scale(1.05);
}

/* Botón Flotante WhatsApp / Kommo */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 100;
    transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }