
        /* --- VARIABLES Y RESET CSS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        :root {
            --deep-space: #0a0a0f;
            --cosmic-purple: #1a0b2e;
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --matrix-green: #00ff9d;
            --void: #000000;
            --stardust: rgba(255, 255, 255, 0.9);
            /* Colores para Glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.15);
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            padding-top: 6rem;
        }
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            z-index: 2;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Contenedor principal de ancho completo (FAQ y Asesoría) */
        .full-width-section {
            width: 100%;
            padding: 2rem 1.5rem; 
            position: relative;
            z-index: 2;
        }

        /* Contenedor del contenido superior */
        .top-content-wrapper {
            width: 100%;
        }

        .content-section {
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .visual-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* --- TIPOGRAFÍA Y TEXTOS --- */
        .badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--neon-blue);
            width: fit-content;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .hero-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 90%;
            font-weight: 300;
        }

        .hero-inline-link {
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .hero-inline-link:hover {
            text-decoration: underline;
        }

        .features-heading {
            font-family: 'Poiret One', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .personal-consult-crosslink {
            font-size: 0.9rem !important;
            margin-bottom: 1.25rem !important;
            opacity: 0.75;
        }

        .personal-consult-crosslink a {
            color: var(--neon-blue);
            text-decoration: none;
        }

        .personal-consult-crosslink a:hover {
            text-decoration: underline;
        }

        /* --- PROCESO DE DESARROLLO --- */
        .features {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin: 2rem 0;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(0, 243, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 1.2rem;
            font-weight: 800;
        }

        .feature-icon.green {
            background: rgba(0, 255, 157, 0.1);
            color: var(--matrix-green);
        }

        .feature-text h3 {
            color: white;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .feature-text p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* --- CALL TO ACTION (CTA) --- */
        .cta-container {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 243, 255, 0.1);
            color: var(--neon-blue);
            padding: 1rem 2.2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 243, 255, 0.2);
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            color: white;
            border: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
        }

        /* --- SECCIÓN FAQ / ACCORDION --- */
        .faq-section { padding: 2rem 0; margin-bottom: 3rem; }
        .faq-section h2 { font-family:'Poiret One',sans-serif; font-size:2.8rem; font-weight:400; text-align:center; margin-bottom:2.5rem; background:linear-gradient(135deg,var(--neon-blue),var(--neon-purple),var(--matrix-green)); -webkit-background-clip:text; background-clip:text; color:transparent; letter-spacing:2px; }
        .accordion-item { background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:12px; margin-bottom:1rem; max-width:900px; margin-left:auto; margin-right:auto; overflow:hidden; backdrop-filter:blur(8px); box-shadow:0 4px 15px rgba(0,0,0,0.3); transition:border-color 0.3s; }
        .accordion-item:hover { border-color:var(--neon-blue); }
        .accordion-header { display:flex; justify-content:space-between; align-items:center; padding:1.4rem 2rem; cursor:pointer; font-weight:600; font-size:1rem; color:var(--stardust); transition:color 0.3s; }
        .accordion-header:hover { color:var(--neon-blue); }
        .accordion-header i { font-size:1rem; color:var(--matrix-green); transition:transform 0.3s; flex-shrink:0; }
        .accordion-header[aria-expanded="true"] i { transform:rotate(180deg); }
        .accordion-content { max-height:0; overflow:hidden; transition:max-height 0.5s ease-out; padding:0 2rem; }
        .accordion-content.active { max-height:600px; padding:.5rem 2rem 1.5rem; }
        .accordion-content p { font-size:0.93rem; line-height:1.65; color:rgba(255,255,255,0.72); }

        /* --- MÓDULO DE ASESORÍA PERSONALIZADA --- */
        .personal-consult-module {
            background: var(--glass-bg);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 2rem;
            margin-bottom: 4rem;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.1);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .personal-consult-module h3 {
            color: var(--neon-blue);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .personal-consult-module p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .personal-consult-module .cta-button {
            margin: 0;
            width: 100%;
            justify-content: center;
            font-size: 1.1rem;
            padding: 1.2rem;
        }

        .personal-consult-module .cta-button.primary {
            box-shadow: 0 5px 15px rgba(185, 103, 255, 0.4);
        }
        
        /* --- SISTEMA VISUAL (Nube de Código 3D - MEJORADO) --- */
        .nexus-system {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
            transition: filter 0.5s ease;
        }

        .quantum-orb {
            position: relative;
            width: 500px;
            height: 500px;
            transform-style: preserve-3d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .code-particle {
            position: absolute;
            font-family: monospace;
            font-size: 10px;
            color: var(--matrix-green);
            white-space: nowrap;
            opacity: 0.7;
            transform-style: preserve-3d;
            pointer-events: none;
            text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
        }

        @keyframes codeFlow {
            0% {
                transform: translate3d(var(--x-start), var(--y-start), var(--z-start)) rotateX(var(--rX)) rotateY(var(--rY)) scale(var(--scale));
                opacity: 0.2;
            }
            50% {
                transform: translate3d(calc(var(--x-start) * 0.9 + var(--float-x)), calc(var(--y-start) * 0.9 + var(--float-y)), calc(var(--z-start) * 0.9 + var(--float-z))) rotateX(calc(var(--rX) + 10deg)) rotateY(calc(var(--rY) + 10deg)) scale(var(--scale));
                opacity: 0.9;
            }
            100% {
                transform: translate3d(var(--x-start), var(--y-start), var(--z-start)) rotateX(var(--rX)) rotateY(var(--rY)) scale(var(--scale));
                opacity: 0.2;
            }
        }

        @keyframes rotateCore {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .core {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--neon-blue), transparent 70%);
            box-shadow: 0 0 40px var(--neon-blue), 0 0 80px var(--neon-purple);
            z-index: 10;
            transition: all 0.5s ease;
            animation: rotateCore 20s linear infinite reverse; 
        }

        .nexus-system:hover .core {
            transform: scale(1.2);
        }

        .distortion-field {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .distortion-wave {
            position: absolute;
            width: 150px;
            height: 150px;
            border: 2px solid rgba(0, 243, 255, 0.5);
            border-radius: 50%;
            opacity: 1;
            transform: scale(0);
            transition: transform 0.5s ease-out, opacity 0.5s ease-out;
            will-change: transform, opacity;
        }

        /* --- BREADCRUMBS SEO --- */
        .breadcrumb {
            padding: 1rem 3rem;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--neon-blue);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            color: rgba(255, 255, 255, 0.6);
        }

        /* --- RESPONSIVE / MÓVILES --- */
        @media (max-width: 968px) {
            .container {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 4rem 3rem 0;
            }
            .visual-section {
                min-height: 60vh;
            }
            .hero-title {
                font-size: 3rem;
            }
            .quantum-orb {
                width: 400px;
                height: 400px;
            }
            .full-width-section {
                padding: 2rem 1.5rem;
            }
            .faq-item, .personal-consult-module {
                max-width: 95%;
            }
            .breadcrumb {
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .content-section {
                padding: 2rem 1.5rem 0;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .cta-container {
                flex-direction: column;
            }
            .quantum-orb {
                width: 300px;
                height: 300px;
            }
            .full-width-section {
                padding: 2rem 1rem;
            }
            .faq-item, .personal-consult-module {
                max-width: 95%; 
            }
        }
    