/* =========================================
   VIONEX - CONFIGURACIÓN GLOBAL DE MARCA
   ========================================= */

:root {
    /* Colores extraídos del logo */
    --vionex-dark: #0a192f;        /* Azul marino profundo (Fondo) */
    --vionex-dark-light: #112240;  /* Azul intermedio (Tarjetas) */
    --vionex-cyan: #64ffda;        /* Cian brillante (Detalles y Neón) */
    --vionex-cyan-glow: rgba(100, 255, 218, 0.3);
    --vionex-white: #e6f1ff;       /* Blanco azulado para textos */
    --vionex-gray: #8892b0;        /* Gris para descripciones */
    
    /* Fuentes */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--vionex-dark);
    color: var(--vionex-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Scrollbar Personalizado (Estilo Tech) --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--vionex-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--vionex-dark-light);
    border-radius: 10px;
    border: 2px solid var(--vionex-cyan);
}

/* --- Tipografía y Títulos --- */
h1, h2, h3 {
    color: var(--vionex-white);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, var(--vionex-white), var(--vionex-cyan));
    /* Versión para Chrome, Safari, Edge y Opera */
    -webkit-background-clip: text; 
    /* Versión estándar (esta quita el aviso en algunos editores) */
    background-clip: text; 
    /* Importante: el color debe ser transparente para que se vea el fondo */
    -webkit-text-fill-color: transparent; 
    color: transparent; 
}

/* --- Componentes Globales Reutilizables --- */

/* Botón Principal Brillante */
.btn-vionex {
    background: transparent;
    color: var(--vionex-cyan);
    border: 1px solid var(--vionex-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px var(--vionex-cyan-glow);
}

.btn-vionex:hover {
    background: var(--vionex-cyan-glow);
    box-shadow: 0 0 20px var(--vionex-cyan-glow);
    transform: translateY(-2px);
}

/* Tarjetas con Efecto de Profundidad */
.card-vionex {
    background: var(--vionex-dark-light);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card-vionex:hover {
    border-color: var(--vionex-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

/* --- Chatbot Flotante --- */
.chatbot-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--vionex-dark-light);
    border: 2px solid var(--vionex-cyan);
    border-radius: 50%;
    color: var(--vionex-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 15px var(--vionex-cyan-glow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.chatbot-btn:hover {
    transform: rotate(15deg) scale(1.1);
    background: var(--vionex-cyan);
    color: var(--vionex-dark);
}

/* --- Navbar Glassmorphism --- */
.nav-vionex {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}