        body {
            font-family: 'Inter', sans-serif;
            background-color: #F8F7F4;
            color: #1a202c;
        }

        nav {
            width: 50%;
            height: 10%;
        }

        nav div a img {
            width: 30%;
        }

        img {
            width: 100%;
            height: 65%;
        }

        .chart-container {
            position: relative;
            width: 100%;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            height: 300px;
            max-height: 400px;
        }

        @media (min-width: 768px) {
            .chart-container {
                height: 350px;
            }
        }

        .hero-bg {
            background-color: #F8F7F4;
            background-image: radial-gradient(#4A90E2 0.5px, transparent 0.5px), radial-gradient(#4A90E2 0.5px, #F8F7F4 0.5px);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
        }

        .cta-button {
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .benefit-card {
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: #4A90E2;
            background-color: #ffffff;
        }

        /* --- VARIABLES Y RESET --- */
        :root {
            --bg-dark: #050507;
            --neon-blue: #00f3ff;
            --neon-purple: #bc13fe;
            --text-gray: #a0a0a5;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            /* Desplazamiento suave entre secciones */
        }


        /* Ajustes responsive para el logotipo */
        .logo img {
            width: 100%;
            max-width: 150px;
            /* Tamaño máximo en pantallas grandes */
            height: auto;
            /* Mantiene la proporción original de la imagen */
            display: block;
        }

        body {
            background-color: var(--bg-dark);
            color: white;
            overflow-x: hidden;
            cursor: none;
            /* Ocultamos el cursor por defecto en desktop */
        }

        /* --- CURSOR PERSONALIZADO --- */
        #custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--neon-blue);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease-out, background 0.3s;
            box-shadow: 0 0 10px var(--neon-blue);
            transform: translate(-50%, -50%);
        }

        .cursor-hover {
            transform: translate(-50%, -50%) scale(1.5) !important;
            background: rgba(0, 243, 255, 0.2);
            border-color: var(--neon-purple) !important;
            box-shadow: 0 0 20px var(--neon-purple) !important;
        }

        /* --- FONDO DE PARTÍCULAS --- */
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            /* Se queda al fondo */
            pointer-events: none;
        }

        /* --- CONTENEDOR PRINCIPAL --- */
        .main-container {
            position: relative;
            z-index: 10;
            /* Por encima de las partículas */
        }

        .contenedor-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
            /* El video se queda fijo en el viewport */
        }

        .contenedor-video video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
            /* Hace que el video cubra todo el espacio sin distorsionarse */
            z-index: 0;
        }



        /* --- UTILIDADES DE SECCIÓN --- */
        .section-padding {
            position: relative;
            z-index: 2;
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto 60px;
            background: rgba(5, 5, 7, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            scroll-margin-top: 110px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 15px rgba(188, 19, 254, 0.5);
        }

        .section-title span {
            color: var(--neon-purple);
        }

        /* Elementos animados por scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HERO SECTION --- */
        .hero {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 60px;
            min-height: calc(100vh - 100px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 20px 20px;
            position: relative;
            z-index: 2;
            background: rgba(5, 5, 7, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            scroll-margin-top: 110px;
        }

        .hero h1 {
            font-size: 4rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 10px;
            background: linear-gradient(to right, #fff, var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4));
            animation: fadeInDown 1.5s ease-out;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 600px;
            margin-bottom: 40px;
            animation: fadeInUp 1.5s ease-out 0.5s both;
        }

        .btn-neon {
            padding: 15px 40px;
            border: 2px solid var(--neon-blue);
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 5px;
            position: relative;
            transition: 0.4s;
            background: rgba(0, 243, 255, 0.05);
            animation: fadeInUp 1.5s ease-out 0.8s both;
            display: inline-block;
        }

        .btn-neon:hover {
            background: var(--neon-blue);
            color: #000;
            box-shadow: 0 0 20px var(--neon-blue);
        }

        /* --- SECCIÓN DE PROYECTOS --- */
        .grid-proyectos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 25px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.4s ease;
        }

        .card:hover {
            border-color: var(--neon-purple);
            box-shadow: 0 10px 30px rgba(188, 19, 254, 0.2);
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.05);
        }

        .card-img-placeholder {
            width: 100%;
            height: 180px;
            background: linear-gradient(45deg, #111, #1a1a24);
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            position: relative;
        }

        .card-img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .card:hover .card-img-placeholder img {
            opacity: 1;
        }

        .card-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--neon-blue);
        }

        .card-desc {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
        }

        .tech-pill {
            font-size: 0.75rem;
            padding: 4px 12px;
            background: rgba(0, 243, 255, 0.05);
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            color: var(--neon-blue);
            letter-spacing: 0.5px;
        }

        .card:hover .tech-pill {
            border-color: var(--neon-purple);
            color: #fff;
            background: rgba(188, 19, 254, 0.1);
        }

        .btn-card {
            display: block;
            text-align: center;
            padding: 10px;
            border: 1px solid var(--glass-border);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-card:hover {
            background: var(--neon-purple);
            border-color: var(--neon-purple);
            box-shadow: 0 0 15px rgba(188, 19, 254, 0.5);
        }

        /* --- SECCIÓN SOBRE GENESYS --- */
        .sobre-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .sobre-texto h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
        }

        .sobre-texto p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-box {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: 0.3s;
        }

        .stat-box:hover {
            border-color: var(--neon-blue);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--neon-blue);
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- SECCIÓN CALCULADORA ROI --- */
        .calculadora-section {
            background: radial-gradient(circle at center, rgba(188, 19, 254, 0.05) 0%, transparent 70%);
        }

        .calc-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .calc-intro {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .calc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .input-group {
            margin-bottom: 25px;
        }

        .input-group label {
            display: block;
            margin-bottom: 15px;
            color: white;
            font-weight: bold;
            letter-spacing: 1px;
        }

        /* Estilo para Range Slider */
        .range-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            outline: none;
            margin-bottom: 10px;
        }

        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--neon-blue);
            cursor: pointer;
            box-shadow: 0 0 15px var(--neon-blue);
            transition: 0.2s;
        }

        .range-slider::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--neon-blue);
            cursor: pointer;
            box-shadow: 0 0 15px var(--neon-blue);
            border: none;
        }

        .range-slider:hover::-webkit-slider-thumb {
            transform: scale(1.2);
        }

        /* Estilo para Number Input */
        .number-input {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--neon-blue);
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 1.2rem;
            outline: none;
            transition: 0.3s;
            font-family: monospace;
        }

        .number-input:focus {
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }

        .value-display {
            display: block;
            text-align: right;
            color: var(--neon-blue);
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 5px;
            font-family: monospace;
        }

        /* Resultados de la calculadora */
        .calc-results {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
        }

        .calc-results::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
        }

        .result-item {
            margin-bottom: 25px;
            text-align: center;
        }

        .result-item:last-child {
            margin-bottom: 0;
        }

        .result-label {
            color: var(--text-gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .result-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 0 0 20px var(--neon-purple);
        }

        .result-value.blue {
            text-shadow: 0 0 20px var(--neon-blue);
        }

        /* --- ANIMACIONES --- */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- NAVEGACIÓN (HEADER & NAV) --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 25px 0;
        }

        header.scrolled {
            background: rgba(5, 5, 7, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 15px 0;
            border-bottom: 1px solid var(--glass-border);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: var(--neon-blue);
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }

        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-blue);
            transition: 0.3s;
            box-shadow: 0 0 10px var(--neon-blue);
        }

        .nav-links a:hover {
            color: var(--neon-blue);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 3px;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
            background-color: var(--neon-blue);
            box-shadow: 0 0 10px var(--neon-blue);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
            background-color: var(--neon-blue);
            box-shadow: 0 0 10px var(--neon-blue);
        }

        /* --- MISIÓN & VISIÓN --- */
        .mision-vision-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 60px;
        }

        .mv-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-left: 3px solid var(--neon-blue);
            padding: 30px;
            border-radius: 0 15px 15px 0;
            transition: 0.3s;
        }

        .mv-card.vision {
            border-left-color: var(--neon-purple);
        }

        .mv-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(10px);
        }

        .mv-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
            letter-spacing: 1px;
        }

        .mv-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* --- SECCIÓN CONTACTO Y FOOTER --- */
        .contacto-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .contacto-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
        }

        .contacto-info p {
            color: var(--text-gray);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            color: white;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
        }

        .contacto-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--glass-border);
            padding: 15px;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--neon-purple);
            box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
        }

        footer {
            text-align: center;
            padding: 30px 20px;
            border-top: 1px solid var(--glass-border);
            background: rgba(0, 0, 0, 0.5);
            color: var(--text-gray);
            position: relative;
            z-index: 10;
        }

        /* --- BOTÓN FLOTANTE WHATSAPP --- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0px 0px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0px 0px 25px rgba(37, 211, 102, 0.7);
            background-color: #20b858;
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* --- MODAL DE ÉXITO (MENSAJE ENVIADO) --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-dark);
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            max-width: 450px;
            width: 90%;
            transform: translateY(-50px);
            transition: all 0.4s ease;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-content h3 {
            color: var(--neon-blue);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .modal-content p {
            color: var(--text-gray);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {

            .sobre-grid,
            .calc-grid,
            .contacto-grid,
            .mision-vision-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-padding,
            .hero {
                padding: 80px 18px 18px;
                margin-bottom: 40px;
                border-radius: 20px;
            }

            .section-padding {
                max-width: 100%;
            }

            .hero {
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            #custom-cursor {
                display: none;
            }

            body {
                cursor: auto;
            }

            .section-padding {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 2rem;
            }

            .calc-container {
                padding: 20px;
            }

            /* Menú Móvil */
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(5, 5, 7, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.4s ease-in-out;
                border-left: 1px solid var(--glass-border);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.2rem;
                margin: 15px 0;
            }
        }