
        /* --- 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;
        }

        /* --- ESTRUCTURA PRINCIPAL Y FONDO --- */
        #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;
            min-height: 520px;
        }

        /* --- TIPOGRAFÍA Y TEXTOS --- */
        .badge {
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid rgba(0, 243, 255, 0.4);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--neon-blue);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.25);
            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.1;
            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;
        }

        /* --- 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: 2rem;
            margin-bottom: 3rem;
        }

        .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);
        }

        /* --- 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:0.8rem; 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; }
        .section-label { text-align:center; font-weight:600; color:var(--neon-blue); font-size:1rem; margin-bottom:2.5rem; letter-spacing:1px; text-transform:uppercase; display:block; }
        .accordion-item { background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:12px; margin-bottom:1rem; overflow:hidden; backdrop-filter:blur(8px); box-shadow:0 4px 15px rgba(0,0,0,0.3); transition:border-color 0.3s; max-width:900px; margin-left:auto; margin-right:auto; }
        .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.4s ease-out; padding:0 2rem; }
        .accordion-content.active { max-height:400px; 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 CTA FINAL --- */
        .personal-consult-module { background:var(--glass-bg); border:1px solid rgba(0,243,255,0.2); border-radius:25px; padding:3rem 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:620px; margin-left:auto; margin-right:auto; }
        .personal-consult-module h3 { font-family:'Poiret One',sans-serif; color:var(--neon-blue); font-size:2rem; font-weight:400; margin-bottom:0.8rem; letter-spacing:1px; }
        .personal-consult-module p { color:rgba(255,255,255,0.8); margin-bottom:2rem; font-size:1.05rem; line-height:1.6; }
        .personal-consult-module .cta-button { display:inline-flex; align-items:center; justify-content:center; gap:1rem; background:linear-gradient(45deg,var(--matrix-green),#00e08c); color:var(--deep-space); padding:1.2rem 3rem; border-radius:50px; text-decoration:none; font-weight:800; font-size:1rem; text-transform:uppercase; letter-spacing:1px; transition:all 0.3s; box-shadow:0 0 25px rgba(0,255,157,0.5); min-height:58px; border:none; }
        .personal-consult-module .cta-button:hover { transform:translateY(-3px); box-shadow:0 0 40px rgba(0,255,157,0.75); }
        
        /* --- SISTEMA VISUAL - ORBITAL ORB --- */
        .software-orb { position:relative; width:400px; height:400px; display:flex; align-items:center; justify-content:center; }
        .orb-ring { position:absolute; border-radius:50%; border:1px solid; animation:orbSpin linear infinite; }
        .orb-ring-1 { width:400px; height:400px; border-color:rgba(0,243,255,0.15); animation-duration:28s; }
        .orb-ring-2 { width:310px; height:310px; border-color:rgba(185,103,255,0.2); animation-duration:20s; animation-direction:reverse; }
        .orb-ring-3 { width:215px; height:215px; border-color:rgba(0,255,157,0.2); animation-duration:13s; }
        @keyframes orbSpin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
        .orb-core { width:115px; height:115px; border-radius:50%; background:radial-gradient(circle at 35% 35%,rgba(255,255,255,0.9),rgba(0,243,255,0.5) 40%,rgba(185,103,255,0.4) 70%,transparent 90%); box-shadow:0 0 40px rgba(0,243,255,0.4),0 0 80px rgba(185,103,255,0.2); animation:coreFloat 6s ease-in-out infinite; z-index:10; }
        @keyframes coreFloat { 0%,100%{transform:scale(1);box-shadow:0 0 40px rgba(0,243,255,0.4),0 0 80px rgba(185,103,255,0.2)} 50%{transform:scale(1.08);box-shadow:0 0 60px rgba(0,243,255,0.6),0 0 100px rgba(185,103,255,0.3)} }
        .orb-dot { position:absolute; width:10px; height:10px; border-radius:50%; background:var(--neon-blue); box-shadow:0 0 12px var(--neon-blue); animation:dotOrbit linear infinite; }
        .orb-dot:nth-child(5) { animation-duration:7s; }
        .orb-dot:nth-child(6) { animation-duration:11s; animation-direction:reverse; background:var(--neon-purple); box-shadow:0 0 12px var(--neon-purple); }
        .orb-dot:nth-child(7) { animation-duration:16s; background:var(--matrix-green); box-shadow:0 0 12px var(--matrix-green); }
        @keyframes dotOrbit { 0%{transform:rotate(0deg) translateX(168px) rotate(0deg)} 100%{transform:rotate(360deg) translateX(168px) rotate(-360deg)} }
        .orb-label { position:absolute; font-size:0.62rem; font-weight:700; color:var(--matrix-green); text-transform:uppercase; letter-spacing:3px; opacity:0.45; animation:labelFloat 8s ease-in-out infinite; white-space:nowrap; pointer-events:none; }
        .orb-label-1 { top:8%; left:50%; transform:translateX(-50%); }
        .orb-label-2 { bottom:8%; left:50%; transform:translateX(-50%); animation-delay:2s; }
        .orb-label-3 { left:1%; top:50%; transform:translateY(-50%); animation-delay:4s; }
        .orb-label-4 { right:1%; top:50%; transform:translateY(-50%); animation-delay:6s; }
        @keyframes labelFloat { 0%,100%{opacity:0.3} 50%{opacity:0.6} }

        /* --- RESPONSIVE / MÓVILES --- */
        @media (max-width: 968px) {
            .container { grid-template-columns: 1fr; }
            .content-section { padding: 3rem 2rem 0; }
            .visual-section { min-height: 380px; order: -1; }
            .software-orb { width: 300px; height: 300px; }
            .orb-ring-1 { width: 300px; height: 300px; }
            .orb-ring-2 { width: 230px; height: 230px; }
            .orb-ring-3 { width: 160px; height: 160px; }
            .orb-core { width: 85px; height: 85px; }
            .hero-title { font-size: 2.8rem; text-align: center; }
            .hero-subtitle { max-width: 100%; text-align: center; }
            .badge { margin: 0 auto 1.5rem; }
            .cta-container { justify-content: center; }
            .full-width-section { padding: 2rem 1.5rem; }
            .faq-section h2 { font-size: 2.2rem; }
        }

        @media (max-width: 480px) {
            body { padding-top: 5rem; }
            .content-section { padding: 2rem 1.2rem 0; }
            .hero-title { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1rem; }
            .cta-container { flex-direction: column; align-items: center; }
            .software-orb { width: 240px; height: 240px; }
            .orb-ring-1 { width: 240px; height: 240px; }
            .orb-ring-2 { width: 185px; height: 185px; }
            .orb-ring-3 { width: 125px; height: 125px; }
            .orb-core { width: 70px; height: 70px; }
            .full-width-section { padding: 2rem 1rem; }
            .faq-section h2 { font-size: 1.9rem; }
        }
    