:root {
            --primary: #00f5ff;
            --secondary: #9d4edd;
            --accent: #ff2a6d;
            --success: #00ff9d;
            --dark: #0a0a14;
            --darker: #05050a;
            --card-bg: rgba(20, 20, 30, 0.8);
            --glass: rgba(255, 255, 255, 0.05);
            --text: #ffffff;
            --text-secondary: #b8c2e0;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            --neon-glow: 0 0 30px rgba(0, 245, 255, 0.7);
            --pink-glow: 0 0 30px rgba(163, 45, 144, 0.5);
            --purple-glow: 0 0 30px rgba(157, 0, 255, 0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Fondo con gradientes animados */
        .background-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            overflow: hidden;
        }

        .gradient-orb {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            filter: blur(100px);
            opacity: 0.1;
            animation: floatOrb 20s infinite alternate ease-in-out;
        }

        .gradient-orb:nth-child(1) {
            top: -300px;
            left: -300px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            animation-delay: 0s;
        }

        .gradient-orb:nth-child(2) {
            bottom: -300px;
            right: -300px;
            background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
            animation-delay: 5s;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(100px, 100px) scale(1.1); }
        }

        /* Grid de conexión */
        .cyber-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background-image: 
                linear-gradient(to right, rgba(0, 245, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            z-index: -2;
            animation: moveGrid 40s linear infinite;
            transform: rotate(15deg);
        }

        @keyframes moveGrid {
            0% { transform: rotate(15deg) translate(0, 0); }
            100% { transform: rotate(15deg) translate(-80px, -80px); }
        }

        /* Header Brutal */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 25px 0;
            transition: var(--transition);
            background: linear-gradient(to bottom, 
                rgba(10, 10, 20, 0.95) 0%,
                rgba(10, 10, 20, 0.9) 50%,
                rgba(10, 10, 20, 0.7) 100%);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 245, 255, 0.2);
        }

        header.scrolled {
            padding: 15px 0;
            background: rgba(5, 5, 10, 0.98);
            border-bottom: 1px solid var(--primary);
            box-shadow: var(--neon-glow);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo Épico */
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            position: relative;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            position: relative;
            overflow: hidden;
            animation: logoGlow 2s infinite alternate;
        }

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

        @keyframes logoGlow {
            0% { box-shadow: 0 0 20px var(--primary); }
            100% { box-shadow: 0 0 40px var(--secondary); }
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-family: 'Orbitron', sans-serif;
            font-size: 23px;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo-sub {
            font-size: 12px;
            color: var(--text-secondary);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: -5px;
        }

        /* Navegación Épica */
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 10px 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link i {
            font-size: 14px;
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: var(--neon-glow);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 50px rgba(0, 245, 255, 0.8);
        }

        /* Hero Section Brutal */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 190px;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(0, 245, 255, 0.1);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 30px;
            border: 1px solid rgba(0, 245, 255, 0.3);
            backdrop-filter: blur(10px);
            animation: badgePulse 2s infinite alternate;
        }

        @keyframes badgePulse {
            0% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
            100% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.6); }
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 72px;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 50px rgba(0, 245, 255, 0.3);
            position: relative;
        }

        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 200px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            box-shadow: 0 0 20px var(--primary);
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 40px 0;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .hero-feature:hover {
            background: rgba(0, 245, 255, 0.05);
            border-color: rgba(0, 245, 255, 0.2);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-top: 50px;
        }

        .btn {
            padding: 20px 45px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            box-shadow: var(--neon-glow);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 0 60px rgba(0, 245, 255, 0.8);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(0, 245, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
        }

        /* Hero Visual - 3D Effect */
        .hero-visual {
            position: relative;
            height: 600px;
            perspective: 1000px;
        }

        .floating-cube {
            position: absolute;
            width: 300px;
            height: 300px;
            transform-style: preserve-3d;
            animation: rotateCube 20s infinite linear;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotateX(20deg) rotateY(20deg);
        }

        .cube-face {
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(0, 245, 255, 0.1);
            border: 2px solid rgba(0, 245, 255, 0.3);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--primary);
        }

        .front  { transform: translateZ(150px); }
        .back   { transform: rotateY(180deg) translateZ(150px); }
        .right  { transform: rotateY(90deg) translateZ(150px); }
        .left   { transform: rotateY(-90deg) translateZ(150px); }
        .top    { transform: rotateX(90deg) translateZ(150px); }
        .bottom { transform: rotateX(-90deg) translateZ(150px); }

        @keyframes rotateCube {
            0% { transform: translate(-50%, -50%) rotateX(20deg) rotateY(0deg); }
            100% { transform: translate(-50%, -50%) rotateX(20deg) rotateY(360deg); }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .floating-element {
            position: absolute;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 245, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary);
            animation: floatElement 6s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .element-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .element-2 { top: 60%; right: 15%; animation-delay: 1s; }
        .element-3 { bottom: 20%; left: 20%; animation-delay: 2s; }

        @keyframes floatElement {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        /* Secciones Generales */
        section {
            padding: 60px 40px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 25px;
            box-shadow: var(--pink-glow);
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 56px;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            box-shadow: 0 0 20px var(--primary);
        }

        /* Services Grid Épico */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 245, 255, 0.1);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
            box-shadow: 0 0 20px var(--primary);
        }

        .service-card:hover {
            transform: translateY(-20px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--neon-glow);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 30px;
            box-shadow: var(--neon-glow);
            position: relative;
            overflow: hidden;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shine 3s infinite;
        }

        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--text);
        }

        .service-features {
            margin-top: 25px;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .service-feature i {
            color: var(--success);
            font-size: 14px;
        }

        /* Software Section Brutal */
        .software-section {
            background: linear-gradient(135deg, rgba(5, 5, 10, 0.95), rgba(20, 20, 30, 0.95));
            border-radius: 40px;
            padding: 100px 60px;
            margin: 100px auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 245, 255, 0.2);
            box-shadow: var(--shadow), inset 0 0 100px rgba(0, 245, 255, 0.05);
        }

        .software-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--primary), 
                var(--accent), 
                var(--secondary), 
                transparent);
            animation: borderGlow 3s infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.3; }
            100% { opacity: 1; }
        }

        .software-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .software-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 245, 255, 0.1);
            transition: var(--transition);
            height: 100%;
        }

        .software-badge {
            position: absolute;
            top: 25px;
            right: 25px;
            background: linear-gradient(90deg, var(--success), var(--primary));
            color: var(--dark);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .software-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 30px;
            box-shadow: var(--neon-glow);
        }

        .software-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 25px;
            margin-bottom: 20px;
            color: var(--text);
        }

        .software-price {
            font-family: 'Orbitron', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--success);
            margin: 30px 0;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .software-period {
            font-size: 18px;
            color: var(--text-secondary);
            margin-left: 5px;
        }

        .software-features {
            margin: 30px 0;
        }

        /* Stats Section */
        .stats-section {
            max-width: 1400px;
            margin: 100px auto;
            padding: 80px 40px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 40px;
            border: 1px solid rgba(0, 245, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 25px;
            border: 1px solid rgba(0, 245, 255, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--neon-glow);
        }

        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 72px;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--success));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            line-height: 1;
        }

        .stat-text {
            font-size: 18px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Contact Section */
        .contact-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 40px;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-info {
            display: grid;
            gap: 30px;
        }

        .contact-card {
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 1px solid rgba(0, 245, 255, 0.1);
            transition: var(--transition);
        }

        .contact-card:hover {
            transform: translateX(10px);
            border-color: var(--primary);
            box-shadow: var(--neon-glow);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 25px;
            box-shadow: var(--neon-glow);
        }

        .contact-form {
            padding: 60px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(0, 245, 255, 0.1);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-label {
            display: block;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 600;
            font-size: 18px;
        }

        .form-control {
            width: 100%;
            padding: 20px 25px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 245, 255, 0.2);
            border-radius: 15px;
            color: var(--text);
            font-size: 18px;
            font-family: 'Exo 2', sans-serif;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer Épico */
        footer {
            background: linear-gradient(to bottom, rgba(5, 5, 10, 0.95), rgba(5, 5, 10, 1));
            padding: 100px 40px 50px;
            border-top: 1px solid rgba(0, 245, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-column h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-link:hover {
            color: var(--primary);
            transform: translateX(10px);
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            font-size: 20px;
            transition: var(--transition);
            border: 1px solid rgba(0, 245, 255, 0.1);
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: var(--neon-glow);
        }

        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-title {
                font-size: 56px;
            }
            
            .floating-cube {
                width: 250px;
                height: 250px;
            }
            
            .cube-face {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                font-size: 28px;
                color: var(--primary);
                cursor: pointer;
            }
            
            .hero-title {
                font-size: 48px;
            }
            
            .section-title {
                font-size: 42px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }
            
            section {
                padding: 80px 20px;
            }
            
            .hero-title {
                font-size: 40px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .services-grid,
            .software-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-features {
                grid-template-columns: 1fr;
            }
            
            .hero-btns {
                flex-direction: column;
            }
            
            .floating-cube {
                width: 200px;
                height: 200px;
            }
            
            .cube-face {
                width: 200px;
                height: 200px;
            }
            
            .stat-number {
                font-size: 56px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .btn {
                padding: 18px 35px;
                font-size: 16px;
                width: 100%;
                justify-content: center;
            }
            
            .hero-visual {
                height: 400px;
            }
        }

        .hero-visual {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .floating-shapes {
            position: relative;
            width: 100%;
            height: 500px;
        }

        .shape {
            position: absolute;
            border-radius: 20px;
            filter: blur(1px);
            animation: floatShape 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, var(--neon-blue), transparent 70%);
            top: 50px;
            right: 100px;
            animation-delay: 0s;
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.4);
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, var(--electric-purple), transparent 70%);
            bottom: 100px;
            right: 50px;
            animation-delay: 1s;
            box-shadow: 0 0 40px rgba(157, 78, 221, 0.4);
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--cyber-pink), transparent 70%);
            top: 150px;
            right: 250px;
            animation-delay: 2s;
            box-shadow: 0 0 40px rgba(255, 42, 109, 0.4);
        }

        @keyframes floatShape {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .hero-code {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: var(--matrix-green);
            background: rgba(0, 0, 0, 0.8);
            padding: 20px;
            border-radius: 10px;
            width: 300px;
            box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
            border: 1px solid rgba(0, 255, 157, 0.2);
            animation: codeGlow 3s infinite alternate;
        }

        @keyframes codeGlow {
            0% { box-shadow: 0 0 20px rgba(0, 255, 157, 0.3); }
            100% { box-shadow: 0 0 40px rgba(0, 255, 157, 0.6); }
        }

        .code-line {
            margin-bottom: 8px;
        }

        .code-comment {
            color: #6a9955;
        }

        .code-function {
            color: #dcdcaa;
        }

        .code-string {
            color: #ce9178;
        }

/* Botones más pequeños */
.btn-sm {
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.hero-btns .btn {
    padding: 15px 30px;
    font-size: 16px;
}

.software-card .btn {
    padding: 15px;
    font-size: 16px;
    margin-top: 20px;
}

/* Mejoras responsive para contacto */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 25px;
        text-align: center;
    }
    
    .form-control {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Mejoras para móviles */
@media (max-width: 576px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .software-section {
        padding: 40px 20px;
        margin: 40px auto;
    }
    
    .stats-section {
        padding: 40px 20px;
        margin: 40px auto;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Corrección para menú móvil */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid rgba(0, 245, 255, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active i::before {
        content: "\f00d"; /* Cambia a icono de cerrar */
    }
}

/* Mejoras de accesibilidad */
.nav-link:focus,
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Mejoras para estadísticas */
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Validación de formulario */
.form-error {
    color: var(--accent);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-control.invalid {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 42, 109, 0.3);
}

.form-error.show {
    display: block;
}

/* Modal mejorado */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 100px rgba(0,245,255,0.5);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        margin: 10px;
    }
}



/* Mejoras de legibilidad */
p, li {
    line-height: 1.6;
}

h1, h2, h3, h4 {
    line-height: 1.2;
}

/* Notificaciones */
.notification {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color:#dee2e6;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideUp 0.3s ease forwards;
    max-width: 90%;
    color: var(--dark);
}

@keyframes slideUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.notification i {
    font-size: 18px;
}

.notification.success i {
    color: #34C759;
}

.notification.error i {
    color: #FF3B30;
}

.notification.info i {
    color: #007AFF;
}


