  :root {
            --morado: #8B5CF6;
            --salmon: #FA8072;
            --negro: #0F0F0F;
            --blanco: #FFFFFF;
            --gris: #1A1A1A;
            --gradient-1: linear-gradient(135deg, #8B5CF6 0%, #FA8072 100%);
            --gradient-2: linear-gradient(45deg, #8B5CF6, #FA8072, #8B5CF6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--negro);
            color: var(--blanco);
            overflow-x: hidden;
            position: relative;
        }

        /* Rocket Companion - La Mascota Interactiva */
        .rocket-companion {
            position: fixed;
            width: 40px;
            height: 80px;
            z-index: 9999;
            pointer-events: none;
            transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
        }

        .rocket-body {
            width: 30px;
            height: 70px;
            background: linear-gradient(135deg, var(--morado) 0%, var(--salmon) 50%, var(--morado) 100%);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            position: relative;
            animation: float-rocket 3s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.8),
                        inset 0 0 20px rgba(255, 255, 255, 0.3);
        }

        @keyframes float-rocket {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(2deg); }
            50% { transform: translateY(0) rotate(0deg); }
            75% { transform: translateY(10px) rotate(-2deg); }
        }

        .rocket-window {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 25px;
            height: 25px;
            background: radial-gradient(circle, #00D4FF 0%, rgba(0, 212, 255, 0.3) 100%);
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.8);
            box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .rocket-fins {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 30px;
        }

        .fin {
            position: absolute;
            bottom: 0;
            width: 0;
            height: 0;
            border-style: solid;
        }

        .fin-left {
            left: -10px;
            border-width: 30px 0 0 20px;
            border-color: transparent transparent transparent var(--salmon);
        }

        .fin-right {
            right: -10px;
            border-width: 30px 20px 0 0;
            border-color: transparent var(--salmon) transparent transparent;
        }

        .rocket-fire {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 60px;
        }

        .fire-particle {
            position: absolute;
            width: 15px;
            height: 30px;
            background: radial-gradient(circle, #39FF14 0%, #00D4FF 50%, transparent 100%);
            border-radius: 50%;
            animation: fire 0.5s linear infinite;
        }

        @keyframes fire {
            0% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateY(30px) scale(0.3);
                opacity: 0;
            }
        }

        .fire-particle:nth-child(1) {
            left: 5px;
            animation-delay: 0s;
        }

        .fire-particle:nth-child(2) {
            left: 12px;
            animation-delay: 0.1s;
        }

        .fire-particle:nth-child(3) {
            left: 20px;
            animation-delay: 0.2s;
        }

        /* Rocket position states para cada sección */
        .rocket-companion.at-inicio {
            top: 20%;
            right: 5%;
            transform: rotate(-10deg);
        }

        .rocket-companion.at-servicios {
            top: 35%;
            right: 95%;
            transform: rotate(15deg);
        }

        .rocket-companion.at-clientes {
            top: 50%;
            right: 5%;
            transform: rotate(-8deg);
        }

        .rocket-companion.at-tecnologias {
            top: 65%;
            right: 95%;
            transform: rotate(12deg);
        }

        .rocket-companion.at-factus {
            top: 72%;
            right: 5%;
            transform: rotate(-12deg);
        }

        .rocket-companion.at-contacto {
            top: 80%;
            right: 50%;
            transform: rotate(0deg);
        }

        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--negro);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 5%;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--blanco);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .language-switch {
            background: transparent;
            border: 2px solid var(--morado);
            color: var(--morado);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .language-switch:hover {
            background: var(--morado);
            color: var(--blanco);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 0.3rem;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 30px;
            height: 3px;
            background: var(--blanco);
            transition: all 0.3s ease;
        }

        /* Hero Section - MEJORADO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 8rem 5% 5rem;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            background: var(--morado);
            border-radius: 50%;
            opacity: 0.5;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }
            33% {
                transform: translateY(-100px) translateX(50px) rotate(120deg);
            }
            66% {
                transform: translateY(50px) translateX(-50px) rotate(240deg);
            }
        }

        .grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 10s linear infinite;
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 1;
        }

        .hero-text h1 {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-2);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-shift 3s linear infinite;
        }

        @keyframes gradient-shift {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .hero-text p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--blanco);
            border: none;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--blanco);
            border: 2px solid var(--salmon);
        }

        .btn-secondary:hover {
            background: var(--salmon);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(250, 128, 114, 0.3);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .code-window {
            background: rgba(26, 26, 26, 0.9);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.3);
            animation: float-window 4s ease-in-out infinite;
            width: 100%;
            max-width: 500px;
        }

        @keyframes float-window {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .window-header {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .window-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-red { background: #ff5f57; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #28ca42; }

        .code-content {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .code-line {
            margin: 0.5rem 0;
            opacity: 0;
            animation: code-appear 0.5s forwards;
        }

        .code-line:nth-child(1) { animation-delay: 0.5s; }
        .code-line:nth-child(2) { animation-delay: 1s; }
        .code-line:nth-child(3) { animation-delay: 1.5s; }
        .code-line:nth-child(4) { animation-delay: 2s; }
        .code-line:nth-child(5) { animation-delay: 2.5s; }
        .code-line:nth-child(6) { animation-delay: 3s; }
        .code-line:nth-child(7) { animation-delay: 3.5s; }

        @keyframes code-appear {
            to {
                opacity: 1;
            }
        }

        .code-keyword { color: var(--morado); }
        .code-string { color: var(--salmon); }
        .code-function { color: #61dafb; }
        .code-comment { color: #6a737d; }

        /* Services Section - CORREGIDO */
        .services {
            padding: 5rem 5%;
            background: linear-gradient(180deg, var(--negro) 0%, var(--gris) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(26, 26, 26, 0.8);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(139, 92, 246, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at bottom right, rgba(250, 128, 114, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
            border-radius: 20px;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(15, 15, 15, 0.95);
            border-color: var(--morado);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3),
                        0 0 0 1px rgba(139, 92, 246, 0.5);
        }

        /* OPTIMIZADO: Iconos con mejor contraste y visibilidad */
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .service-icon i {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon i {
            filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--blanco);
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-title {
            color: var(--blanco);
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }

        .service-description {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-description {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Clients Section - NUEVA */
        .clients {
            padding: 5rem 5%;
            background: var(--negro);
            position: relative;
            overflow: hidden;
        }

        .clients::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(250, 128, 114, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .clients .section-header,
        .clients-carousel-container,
        .clients-stats {
            position: relative;
            z-index: 1;
        }

        .clients-carousel-container {
            max-width: 1200px;
            margin: 0 auto 4rem;
        }

        .clientsSwiper {
            padding: 40px 0;
        }

        .client-item {
            background: rgba(26, 26, 26, 0.8);
            border-radius: 15px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 150px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .client-item:hover {
            transform: translateY(-5px);
            border-color: var(--morado);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            background: rgba(26, 26, 26, 0.95);
        }

        .client-item img {
            max-width: 100%;
            height: auto;
            filter: grayscale(100%) brightness(0.8);
            transition: filter 0.3s ease;
            object-fit: contain;
        }

        .client-item:hover img {
            filter: grayscale(0%) brightness(1);
        }

        /* Client Stats */
        .clients-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
            padding-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(139, 92, 246, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(139, 92, 246, 0.1);
            border-color: var(--morado);
        }

        .stat-number {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 600;
        }

        /* Tech Stack - MEJORADO CON CARRUSEL */
        .tech-stack {
            padding: 5rem 5%;
            background: var(--gris);
            position: relative;
            overflow: hidden;
        }

        .tech-stack::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 4s ease-in-out infinite;
        }

        .tech-carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .swiper {
            width: 100%;
            padding: 40px 0;
        }

        .swiper-slide {
            height: auto;
        }

        .tech-item {
            background: rgba(15, 15, 15, 0.8);
            border-radius: 15px;
            padding: 2rem 1rem;
            text-align: center;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
        }

        .tech-item:hover {
            transform: scale(1.1);
            background: rgba(139, 92, 246, 0.1);
            border-color: var(--morado);
        }

        .tech-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .tech-item:hover .tech-icon {
            filter: grayscale(0%);
        }

        .tech-name {
            color: var(--blanco);
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--morado);
        }

        .swiper-pagination-bullet {
            background: var(--morado);
        }

        /* Factus Partner Section */
        .factus-partner {
            padding: 5rem 5%;
            background: linear-gradient(180deg, var(--gris) 0%, var(--negro) 100%);
            position: relative;
            overflow: hidden;
        }

        .factus-partner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(250, 128, 114, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .factus-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .factus-logo-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            padding: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid rgba(139, 92, 246, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .factus-logo-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .factus-logo-container:hover::before {
            transform: rotate(45deg) translate(50%, 50%);
        }

        .factus-logo-container:hover {
            transform: translateY(-10px);
            border-color: var(--morado);
            box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
        }

        .factus-logo-container a {
            display: block;
            position: relative;
            z-index: 1;
        }

        .factus-logo {
            width: 100%;
            max-width: 300px;
            height: auto;
            transition: all 0.4s ease;
            filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
        }

        .factus-logo-container:hover .factus-logo {
            transform: scale(1.05);
            filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.5));
        }

        .factus-description {
            color: var(--blanco);
        }

        .factus-description h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .factus-description p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
        }

        .factus-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .factus-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
        }

        .factus-feature:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: var(--morado);
            transform: translateX(5px);
        }

        .factus-feature i {
            color: var(--morado);
            font-size: 1.3rem;
        }

        .factus-feature span {
            color: var(--blanco);
            font-weight: 500;
        }

        /* CTA Section - BOTONES CENTRADOS */
        .cta {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--gris) 0%, var(--negro) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%, transparent, var(--morado), transparent, var(--salmon), transparent);
            animation: rotate 20s linear infinite;
            opacity: 0.1;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
        }

        /* CENTRADO DE BOTONES EN CTA */
        .cta .hero-buttons {
            justify-content: center;
        }

        /* Footer */
        footer {
            background: var(--negro);
            padding: 3rem 5% 2rem;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--morado);
            margin-bottom: 1rem;
            font-family: 'Orbitron', monospace;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--salmon);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid var(--morado);
            color: var(--morado);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--morado);
            color: var(--blanco);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 999;
            animation: whatsapp-pulse 2s infinite;
        }

        @keyframes whatsapp-pulse {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            }
            50% {
                box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float i {
            color: white;
            font-size: 30px;
        }

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(20px);
            z-index: 2000;
            transition: right 0.3s ease;
            padding: 2rem;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .close-menu {
            font-size: 2rem;
            color: var(--blanco);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-menu:hover {
            transform: rotate(90deg);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-link {
            color: var(--blanco);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: var(--morado);
            padding-left: 10px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-visual {
                margin-top: 2rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            /* Factus Section - Optimización para tablets */
            .factus-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .factus-logo-container {
                padding: 2rem;
                margin: 0 auto;
                max-width: 300px;
            }

            .factus-description {
                text-align: center;
            }

            .factus-features {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            /* Rocket ajustado para tablets */
            .rocket-companion {
                width: 60px;
                height: 90px;
            }

            .rocket-body {
                width: 45px;
                height: 75px;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 6rem 5% 3rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            /* Factus Section - Optimización para móviles */
            .factus-partner {
                padding: 3rem 5%;
            }

            .factus-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .factus-logo-container {
                padding: 1.5rem;
                max-width: 250px;
                margin: 0 auto;
            }

            .factus-logo {
                max-width: 200px;
            }

            .factus-description {
                text-align: center;
            }

            .factus-description h3 {
                font-size: 1.5rem;
            }

            .factus-description p {
                font-size: 1rem;
            }

            .factus-features {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .factus-feature {
                padding: 0.75rem;
                flex-direction: row;
                text-align: left;
                gap: 0.75rem;
                justify-content: flex-start;
            }

            .factus-feature i {
                font-size: 1.2rem;
                flex-shrink: 0;
            }

            .factus-feature span {
                font-size: 0.9rem;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .whatsapp-float i {
                font-size: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .code-window {
                font-size: 0.8rem;
                padding: 1rem;
            }

            /* Ocultar el cohete en móviles pequeños para mejor rendimiento */
            .rocket-companion {
                display: none;
            }
        }

        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }