/* ================================================
   OMX Design System - GENERAL
   Version: 1.0
   Concepto: "Impulso Educativo"
   
   Uso: Importar este archivo en cualquier página
   para mantener coherencia visual.
   
   Requiere: Google Fonts Montserrat + Open Sans
   <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
   ================================================ */

/* ========================================
   1. RESET & VARIABLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* === COLORES DE FONDO === */
    --bg-main: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #EEF2F7;
    --bg-dark: #0D1B2A;
    
    /* === AZUL ROYAL (Primario) === */
    --primary: #2B4BA0;
    --primary-light: #3D5FC4;
    --primary-dark: #1E3A5F;
    --primary-rgb: 43, 75, 160;
    
    /* === NARANJA OMX (Acento/CTA) === */
    --accent: #F5841F;
    --accent-light: #FFB347;
    --accent-dark: #D4691A;
    --accent-rgb: 245, 132, 31;
    
    /* === COLORES SECUNDARIOS === */
    --red-coral: #E63946;
    --red-coral-rgb: 230, 57, 70;
    --cyan-tech: #4FC3F7;
    --cyan-tech-rgb: 79, 195, 247;
    --yellow: #FFD93D;
    --yellow-rgb: 255, 217, 61;
    
    /* === TEXTO === */
    --text-main: #1E3A5F;
    --text-muted: #8B9DC3;
    --text-light: #FFFFFF;
    --text-body: #5B7FC3;
    
    /* === GRISES === */
    --gray-light: #C5C9D1;
    --gray-medium: #8B9DC3;
    --gray-dark: #5B7FC3;
    
    /* === GLASSMORPHISM (versión clara) === */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
    --glass-bg-dark: rgba(30, 58, 95, 0.95);
    --glass-border: rgba(43, 75, 160, 0.1);
    --glass-border-hover: rgba(43, 75, 160, 0.2);
    --glass-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    --glass-shadow-hover: 0 12px 40px rgba(30, 58, 95, 0.15);
    
    /* === ESTADOS === */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;
    
    /* === TIPOGRAFÍA === */
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* === BORDES === */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* === TRANSICIONES === */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* === SOMBRAS === */
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 4px 20px rgba(30, 58, 95, 0.1);
    --shadow-lg: 0 8px 30px rgba(30, 58, 95, 0.15);
    --shadow-xl: 0 16px 48px rgba(30, 58, 95, 0.2);
    --shadow-accent: 0 4px 15px rgba(245, 132, 31, 0.3);
    --shadow-accent-hover: 0 8px 25px rgba(245, 132, 31, 0.4);
    
    /* === ESPACIADO === */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

/* ========================================
   2. BASE STYLES
   ======================================== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================================
   3. FONDOS ANIMADOS
   ======================================== */
.omx-bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(var(--cyan-tech-rgb), 0.04) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 50%, var(--bg-main) 100%);
}

/* Grid decorativo (líneas diagonales estilo cohete) */
.omx-diagonal-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(var(--primary-rgb), 0.02) 40px,
        rgba(var(--primary-rgb), 0.02) 42px
    );
    pointer-events: none;
    z-index: -2;
}

/* Grid táctico (ahora más sutil) */
.omx-tactical-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -2;
}

/* Elementos decorativos flotantes */
.omx-decorative-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* ========================================
   4. TIPOGRAFÍA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.omx-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.omx-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.omx-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-muted);
}

.omx-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.omx-body {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

.omx-small {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Texto con gradiente */
.omx-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.omx-gradient-text-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Marca OMX */
.omx-brand {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.omx-brand-mx {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent);
}

.omx-slogan {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
}

/* ========================================
   5. CARD COMPONENTS
   ======================================== */

/* Glass Base (versión clara) */
.omx-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.omx-glass-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* Card estándar */
.omx-card {
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.omx-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

/* Card con acento superior */
.omx-card-accent {
    position: relative;
    overflow: hidden;
}

.omx-card-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

/* Card con borde izquierdo */
.omx-card-left-accent {
    border-left: 4px solid var(--accent);
}

/* ========================================
   6. NAVEGACIÓN
   ======================================== */
.omx-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-xl);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.omx-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.omx-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.omx-logo span {
    color: var(--accent);
    font-weight: 800;
}

.omx-nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.omx-nav-link:hover {
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
}

.omx-nav-link.active {
    color: var(--accent);
}

/* ========================================
   7. BOTONES
   ======================================== */
.omx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    outline: none;
}

/* Botón Primario - Naranja (CTA) */
.omx-btn-primary {
    background: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.omx-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent-hover);
}

/* Botón Secundario - Outline Azul */
.omx-btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.omx-btn-secondary:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* Botón Azul - Para fondos claros */
.omx-btn-blue {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.omx-btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.4);
}

/* Botón Ghost - Para fondos oscuros */
.omx-btn-ghost {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.omx-btn-ghost:hover {
    background: var(--text-light);
    color: var(--primary);
}

/* Botón Outline Naranja */
.omx-btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.omx-btn-outline:hover {
    background: var(--accent);
    color: var(--text-light);
}

/* Botón Nav */
.omx-btn-nav {
    padding: 0.7rem 1.5rem;
    background: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.omx-btn-nav:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ========================================
   8. FORMULARIOS
   ======================================== */
.omx-input,
.omx-select,
.omx-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    background: var(--bg-main);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.omx-input:focus,
.omx-select:focus,
.omx-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.omx-input::placeholder {
    color: var(--text-muted);
}

.omx-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232B4BA0' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.omx-select option {
    background: var(--bg-main);
    color: var(--text-main);
}

.omx-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

/* ========================================
   9. BADGES
   ======================================== */
.omx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.omx-badge-solid {
    background: var(--primary);
    border: none;
    color: var(--text-light);
}

.omx-badge-accent {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.3);
    color: var(--accent-dark);
}

.omx-badge-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    color: var(--success);
}

.omx-badge-cyan {
    background: rgba(var(--cyan-tech-rgb), 0.1);
    border-color: rgba(var(--cyan-tech-rgb), 0.3);
    color: #0288D1;
}

/* ========================================
   10. SECTION HEADERS
   ======================================== */
.omx-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.omx-section-tag {
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.8rem;
}

.omx-section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   11. DECORATIVOS (HUD STYLE - Versión clara)
   ======================================== */
.omx-hud-corners {
    position: relative;
}

.omx-hud-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent);
}

.omx-hud-corner.tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.omx-hud-corner.tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.omx-hud-corner.bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.omx-hud-corner.br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

/* Barra de progreso */
.omx-progress {
    height: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.omx-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width var(--transition-slow);
}

/* ========================================
   12. ANIMACIONES
   ======================================== */
.omx-fade-in {
    animation: omxFadeIn 0.8s ease forwards;
}

@keyframes omxFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.omx-fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.omx-fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.omx-fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

.omx-hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.omx-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@keyframes omxFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes omxPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(var(--accent-rgb), 0); }
}

@keyframes omxDiagonalMove {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

@keyframes omxShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.omx-floating {
    animation: omxFloat 4s ease-in-out infinite;
}

.omx-pulse {
    animation: omxPulse 2s ease-in-out infinite;
}

/* ========================================
   13. CONTENEDORES
   ======================================== */
.omx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.omx-container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.omx-container-xs {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.omx-section {
    padding: var(--space-3xl) var(--space-xl);
}

/* ========================================
   14. UTILIDADES
   ======================================== */
.omx-text-center { text-align: center; }
.omx-text-left { text-align: left; }
.omx-text-right { text-align: right; }

.omx-text-muted { color: var(--text-muted); }
.omx-text-accent { color: var(--accent); }
.omx-text-primary { color: var(--primary); }
.omx-text-dark { color: var(--text-main); }
.omx-text-white { color: var(--text-light); }

.omx-uppercase { text-transform: uppercase; }
.omx-capitalize { text-transform: capitalize; }

.omx-flex { display: flex; }
.omx-flex-center { display: flex; align-items: center; justify-content: center; }
.omx-flex-between { display: flex; align-items: center; justify-content: space-between; }
.omx-flex-wrap { flex-wrap: wrap; }
.omx-flex-col { flex-direction: column; }

.omx-grid { display: grid; }
.omx-grid-2 { grid-template-columns: repeat(2, 1fr); }
.omx-grid-3 { grid-template-columns: repeat(3, 1fr); }
.omx-grid-4 { grid-template-columns: repeat(4, 1fr); }

.omx-gap-sm { gap: var(--space-sm); }
.omx-gap-md { gap: var(--space-md); }
.omx-gap-lg { gap: var(--space-lg); }
.omx-gap-xl { gap: var(--space-xl); }

.omx-mt-1 { margin-top: var(--space-sm); }
.omx-mt-2 { margin-top: var(--space-md); }
.omx-mt-3 { margin-top: var(--space-lg); }
.omx-mt-4 { margin-top: var(--space-xl); }

.omx-mb-1 { margin-bottom: var(--space-sm); }
.omx-mb-2 { margin-bottom: var(--space-md); }
.omx-mb-3 { margin-bottom: var(--space-lg); }
.omx-mb-4 { margin-bottom: var(--space-xl); }

.omx-p-1 { padding: var(--space-sm); }
.omx-p-2 { padding: var(--space-md); }
.omx-p-3 { padding: var(--space-lg); }
.omx-p-4 { padding: var(--space-xl); }

/* Fondos */
.omx-bg-white { background-color: var(--bg-main); }
.omx-bg-light { background-color: var(--bg-secondary); }
.omx-bg-primary { background-color: var(--primary); }
.omx-bg-accent { background-color: var(--accent); }
.omx-bg-dark { background-color: var(--bg-dark); }
.omx-bg-gradient-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.omx-bg-gradient-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); }

/* ========================================
   15. RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .omx-container,
    .omx-container-sm,
    .omx-container-xs {
        padding: 0 var(--space-lg);
    }
    
    .omx-section {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .omx-grid-2,
    .omx-grid-3,
    .omx-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .omx-hide-mobile {
        display: none !important;
    }
    
    .omx-hero-title {
        font-size: 1.8rem;
    }
    
    .omx-btn {
        width: 100%;
    }
    
    .omx-flex-col-mobile {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .omx-hide-desktop {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .omx-hero-title {
        font-size: 1.5rem;
    }
    
    .omx-section-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   16. FOOTER
   ======================================== */
.omx-footer {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.omx-footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
}

.omx-footer-logo span {
    color: var(--accent);
    font-weight: 800;
}

.omx-footer-slogan {
    font-style: italic;
    margin-bottom: var(--space-md);
    color: var(--text-muted);
}

.omx-footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.omx-footer-credit {
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    letter-spacing: 1px;
}

/* Footer Social */
.omx-footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.omx-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.omx-social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ========================================
   17. HERO SECTION
   ======================================== */
.omx-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: var(--bg-main);
}

/* Hero Split (como la imagen del cohete) */
.omx-hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.omx-hero-split__left {
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.omx-hero-split__left::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 22px
    );
    animation: omxDiagonalMove 20s linear infinite;
}

.omx-hero-split__right {
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.omx-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 992px) {
    .omx-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.omx-hero-content {
    max-width: 600px;
}

.omx-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
}

.omx-btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   18. INFO HUD (versión clara)
   ======================================== */
.omx-tactical-hud {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-main);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.omx-hud-content {
    text-align: center;
}

.omx-hud-icon {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.omx-hud-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.omx-hud-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.omx-progress-label {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 0.8rem;
    text-align: right;
}

/* ========================================
   19. NAV RIGHT
   ======================================== */
.omx-nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* ========================================
   20. SECTIONS
   ======================================== */
.omx-section-alt {
    background: var(--bg-secondary);
}

.omx-section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.omx-section-dark .omx-section-title,
.omx-section-dark .omx-hero-title {
    color: var(--text-light);
}

.omx-section-dark .omx-text-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   21. FORM ELEMENTS
   ======================================== */
.omx-form-group {
    margin-bottom: 2rem;
}

/* Form Container */
.omx-form {
    background: var(--bg-main);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.omx-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--bg-secondary);
}

/* Form Row */
.omx-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .omx-form-row {
        grid-template-columns: 1fr;
    }
}

/* Input con icono a la izquierda */
.omx-input-icon {
    position: relative;
}

.omx-input-icon .omx-input {
    padding-left: 3rem;
}

.omx-input-icon__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    pointer-events: none;
}

.omx-input-icon .omx-input:focus + .omx-input-icon__icon,
.omx-input-icon .omx-input:focus ~ .omx-input-icon__icon {
    color: var(--primary);
}

/* Input States */
.omx-input.success {
    border-color: var(--success);
}

.omx-input.success:focus {
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

.omx-input.error {
    border-color: var(--error);
}

.omx-input.error:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

/* Helper Text */
.omx-helper-text {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.omx-helper-text.error {
    color: var(--error);
}

.omx-helper-text.success {
    color: var(--success);
}

/* Checkbox */
.omx-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
}

.omx-checkbox input {
    display: none;
}

.omx-checkbox__box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    background: var(--bg-main);
    flex-shrink: 0;
}

.omx-checkbox input:checked + .omx-checkbox__box {
    background: var(--primary);
    border-color: var(--primary);
}

.omx-checkbox__box::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.omx-checkbox input:checked + .omx-checkbox__box::after {
    opacity: 1;
    transform: scale(1);
}

/* Radio Button */
.omx-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
}

.omx-radio input {
    display: none;
}

.omx-radio__circle {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    background: var(--bg-main);
    flex-shrink: 0;
}

.omx-radio input:checked + .omx-radio__circle {
    border-color: var(--primary);
}

.omx-radio__circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.omx-radio input:checked + .omx-radio__circle::after {
    opacity: 1;
    transform: scale(1);
}

/* Toggle Switch */
.omx-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.omx-toggle input {
    display: none;
}

.omx-toggle__switch {
    width: 50px;
    height: 28px;
    background: var(--gray-light);
    border-radius: 14px;
    position: relative;
    transition: all var(--transition-normal);
}

.omx-toggle__switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.omx-toggle input:checked + .omx-toggle__switch {
    background: var(--primary);
}

.omx-toggle input:checked + .omx-toggle__switch::after {
    left: 25px;
}

/* Toggle Accent Color */
.omx-toggle.accent input:checked + .omx-toggle__switch {
    background: var(--accent);
}

/* Input File */
.omx-file-input {
    position: relative;
}

.omx-file-input input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.omx-file-input__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    text-align: center;
}

.omx-file-input:hover .omx-file-input__label {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.omx-file-input__icon {
    font-size: 2rem;
}

.omx-file-input__text {
    color: var(--text-muted);
}

.omx-file-input__text strong {
    color: var(--primary);
}

/* Range Slider */
.omx-range {
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

.omx-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
    transition: all var(--transition-fast);
}

.omx-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.omx-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

/* Range Accent Color */
.omx-range.accent::-webkit-slider-thumb {
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.3);
}

/* Search Input */
.omx-search {
    position: relative;
}

.omx-search .omx-input {
    padding-left: 3rem;
    padding-right: 3rem;
    border-radius: var(--radius-full);
}

.omx-search__icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.omx-search__clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-light);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-main);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.omx-search__clear:hover {
    background: var(--error);
    color: white;
}

/* Input Group */
.omx-input-group {
    display: flex;
}

.omx-input-group .omx-input {
    border-radius: 0;
    flex: 1;
}

.omx-input-group .omx-input:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.omx-input-group .omx-btn {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    white-space: nowrap;
}

.omx-input-group__addon {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 2px solid var(--gray-light);
    border-right: none;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-weight: 600;
}

.omx-input-group__addon:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

/* Floating Label */
.omx-floating {
    position: relative;
}

.omx-floating .omx-input {
    padding-top: 1.5rem;
}

.omx-floating__label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all var(--transition-fast);
    pointer-events: none;
    font-size: 1rem;
}

.omx-floating .omx-input:focus + .omx-floating__label,
.omx-floating .omx-input:not(:placeholder-shown) + .omx-floating__label {
    top: 0.8rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* Textarea */
.omx-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   22. KIT DISPLAY
   ======================================== */
.omx-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-secondary);
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius-xl);
}

.omx-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.omx-placeholder p {
    color: var(--text-muted);
    font-size: 1rem;
}

.omx-kit-display {
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none;
}

.omx-kit-display.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.omx-kit-display::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.omx-kit-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-light);
}

.omx-kit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.omx-kit-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.omx-kit-info p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
}

.omx-kit-body {
    padding: 2rem;
}

.omx-kit-description {
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 1.2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.omx-kit-areas {
    margin-bottom: 2rem;
}

.omx-kit-areas-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.omx-kit-areas-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.omx-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
}

.omx-area-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.omx-area-tag:hover {
    border-color: var(--accent);
    background: var(--bg-main);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.omx-area-emoji {
    font-size: 1.3rem;
}

.omx-kit-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.omx-spec-item {
    text-align: center;
}

.omx-spec-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.omx-spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.omx-kit-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.omx-kit-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.omx-kit-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   23. MOCKUP
   ======================================== */
.omx-mockup {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--bg-main);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.omx-mockup-header {
    background: var(--bg-secondary);
    padding: 14px 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    gap: 8px;
}

.omx-mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
}

.omx-mockup-dot.red { background: var(--red-coral); }
.omx-mockup-dot.yellow { background: var(--yellow); }
.omx-mockup-dot.green { background: var(--success); }

.omx-mockup-body {
    padding: 2.5rem;
    text-align: center;
}

.omx-mockup-title {
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
}

.omx-mockup-ui {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    text-align: left;
}

.omx-mockup-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    height: 220px;
}

.omx-mockup-line {
    height: 10px;
    border-radius: 5px;
    margin-bottom: 12px;
    background: var(--gray-light);
}

.omx-mockup-line.active {
    background: var(--primary);
}

.omx-mockup-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.omx-mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.omx-mockup-card {
    height: 60px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.omx-mockup-card.active {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary);
}

.omx-mockup-content {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    min-height: 100px;
}

/* ========================================
   24. SEDES CARD
   ======================================== */
.omx-sedes-card {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.08) 100%);
    border: 1px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.15);
}

.omx-sedes-icon {
    font-size: 4rem;
    background: var(--bg-main);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--accent);
    animation: omxPulse 2s ease-in-out infinite;
}

.omx-sedes-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.omx-sedes-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.omx-sedes-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.omx-sedes-features span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
}

/* ========================================
   25. DECORATIVE ELEMENTS
   ======================================== */

/* Líneas diagonales animadas (como en la imagen) */
.omx-diagonal-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.omx-diagonal-lines::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 22px
    );
    animation: omxDiagonalMove 20s linear infinite;
}

/* Decorative shapes */
.omx-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.omx-shape-primary {
    background: var(--primary);
}

.omx-shape-accent {
    background: var(--accent);
}

/* ========================================
   26. ADDITIONAL RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .omx-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .omx-hero-split {
        grid-template-columns: 1fr;
    }

    .omx-hero-split__left {
        min-height: 40vh;
    }

    .omx-nav-right .omx-nav-link {
        display: none;
    }

    .omx-kit-specs {
        grid-template-columns: 1fr;
    }

    .omx-kit-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .omx-kit-footer .omx-btn {
        width: 100%;
    }

    .omx-mockup-ui {
        grid-template-columns: 1fr;
    }

    .omx-mockup-sidebar {
        display: none;
    }

    .omx-mockup-cards {
        grid-template-columns: 1fr 1fr;
    }

    .omx-kit-header {
        flex-direction: column;
        text-align: center;
    }

    .omx-sedes-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .omx-sedes-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .omx-sedes-features {
        justify-content: center;
    }

    .omx-btn-group {
        flex-direction: column;
    }

    .omx-btn-group .omx-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .omx-areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   27. PRINT STYLES
   ======================================== */
@media print {
    .omx-nav,
    .omx-btn,
    .omx-diagonal-lines,
    .omx-bg-gradient,
    .omx-diagonal-grid {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .omx-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
