     :root {
            --cyan: #00f2ff;
            --purple: #8a2be2;
            --dark-bg: #030812;
            --glass: rgba(255, 255, 255, 0.03);
            --gradient: linear-gradient(90deg, #00f2ff, #8a2be2);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            background-color: var(--dark-bg);
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* TRANSICIÓN DE PÁGINA */
        .page-transition {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--dark-bg); z-index: 9999;
            pointer-events: none; opacity: 0; transition: 0.5s;
        }
        .page-transition.active { opacity: 1; }

        /* FONDO DE REJILLA TECH */
        .bg-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.05), transparent),
                        linear-gradient(rgba(0, 242, 255, 0.02) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(0, 242, 255, 0.02) 1px, transparent 1px);
            background-size: 100% 100%, 50px 50px, 50px 50px;
            z-index: -1;
        }

        /* HEADER */
        nav {
            position: fixed; top: 0; width: 100%;
            padding: 15px 10%;
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(3, 8, 18, 0.9);
            backdrop-filter: blur(15px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 242, 255, 0.1);
        }

        .logo-container img { height: 40px; }
        .logo-text { font-family: 'Orbitron'; font-weight: bold; font-size: 1.5rem; }

        .nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
        .nav-links a {
            color: #fff; text-decoration: none; font-family: 'Orbitron'; font-size: 0.75rem;
            letter-spacing: 1.5px; transition: 0.3s;
        }
        .nav-links a:hover { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }
        .nav-btn {
            background: var(--gradient); padding: 10px 20px; border-radius: 4px;
            font-weight: bold;
        }

        /* SCROLL TO TOP */
        #scrollToTop {
            position: fixed; bottom: 30px; right: 30px;
            background: var(--gradient); border: none; width: 50px; height: 50px;
            border-radius: 50%; color: white; cursor: pointer; z-index: 1000;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: 0.4s;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
        }
        #scrollToTop.show { opacity: 1; visibility: visible; }

        /* HERO */
        .hero {
            height: 100vh; display: flex; align-items: center; padding: 0 10%;
            background: linear-gradient(to right, var(--dark-bg) 35%, rgba(3, 8, 18, 0.5), transparent),
                        url('img/banner.png') center/cover;
            position: relative;
        }

        .hero::after {
            content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
            background: var(--cyan); box-shadow: 0 0 15px var(--cyan);
            opacity: 0.3; animation: scan 4s infinite linear;
        }

        @keyframes scan { 0% { top: 0; } 100% { top: 100%; } }

        .hero-content { max-width: 700px; z-index: 2; }
        .hero-content h1 {
            font-family: 'Orbitron'; font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1; margin-bottom: 20px;
        }
        .text-gradient {
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        /* BOTONES */
        .btn {
            padding: 16px 35px; border: none; border-radius: 5px;
            font-family: 'Orbitron'; font-weight: bold; cursor: pointer;
            text-decoration: none; display: inline-block; transition: 0.4s;
            background: var(--gradient); color: #fff;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
        }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(138, 43, 226, 0.5); }

        /* SECCIONES */
        section { padding: 100px 10%; }
        .section-title {
            text-align: center; font-family: 'Orbitron'; font-size: 2.5rem; margin-bottom: 60px;
        }

        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card {
            background: var(--glass); border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px; border-radius: 20px; transition: 0.4s; position: relative;
            overflow: hidden;
        }
        .card:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-10px); }
        .height_fixed { min-height: 70px; color: #adbac7; margin-top: 10px; }

        .benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .benefit-item { display: flex; gap: 20px; margin-bottom: 30px; }

        .contact-flex {
            display: flex; gap: 50px; background: var(--glass); padding: 50px;
            border-radius: 30px; border: 1px solid rgba(0, 242, 255, 0.2);
        }
        .contact-form { flex: 1; display: flex; flex-direction: column; gap: 15px; }
        input, textarea {
            padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid #333;
            color: #fff; border-radius: 8px; outline: none; font-family: 'Rajdhani';
        }

        /* RESPONSIVE MOBILE */
        @media (max-width: 900px) {
            section { padding: 60px 5%; }
            .hero { padding: 0 5%; text-align: center; }
            .hero-content { margin: 0 auto; }
            .section-title { font-size: 1.8rem; }
            
            .menu-toggle { display: block !important; position: relative; z-index: 1100; background: none; border: none; color: var(--cyan); cursor: pointer; }

            .nav-links {
                position: fixed; top: 0; right: -100%;
                width: 80%; height: 100vh;
                background: rgba(3, 8, 18, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column; justify-content: center; align-items: center;
                transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000; border-left: 1px solid rgba(0, 242, 255, 0.2);
            }

            .nav-links.active { right: 0; }
            .nav-links li { margin: 15px 0; }
            .nav-links a { font-size: 1.2rem; }

            .mobile-contact-info {
                display: block !important; margin-top: 40px; text-align: center;
                border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; width: 80%;
            }
            .mobile-contact-info p { font-size: 0.9rem; color: #adbac7; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }

            .benefits-list, .contact-flex, .gestion-container { flex-direction: column; }
            .gestion-container { gap: 30px; }

            #beneficios .section-title {
        text-align: center !important;
        margin-bottom: 40px;
    }

    /* Espaciado de la lista */
    .benefits-list {
        display: flex;
        flex-direction: column; /* Apilamos */
        gap: 30px;
    }

    /* Hacer que los items de beneficio se sientan más como 'bloques' */
    .benefit-item {
        background: rgba(255, 255, 255, 0.02);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(0, 242, 255, 0.05);
        margin-bottom: 15px;
        align-items: center; /* Centrar icono con texto */
    }

    .benefit-item i {
        min-width: 40px; /* Que el icono no se achique */
    }

    .contact-flex {
   
    padding: 30px;}
    .desktop-only { 
        display: none !important; 
    }
    #beneficios img {
        margin-top: 20px;
        max-width: 90% !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
        }

        .menu-toggle, .mobile-contact-info { display: none; }