    

        /* HEADER NAVGIS - DISEÑO TECH/CYBER */
        .navgis-header {
            background: #000000;
            padding: 0.9rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            box-shadow: none;
            border-bottom: none;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        /* Logo NavGIS */
        .brand-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
            position: relative;
            height: 50px;
        }

        .brand-logo-img {
            height: 100%;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .brand-logo:hover .brand-logo-img {
            transform: scale(1.05);
        }

        /* Fallback si no hay imagen */
        .brand-logo-fallback {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .brand-icon-wrapper {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border-radius: 8px;
            position: relative;
        }

        .brand-icon-wrapper i {
            font-size: 1.5rem;
            color: #ff6b35;
        }

        .brand-text-wrapper {
            display: flex;
            flex-direction: column;
        }

        .brand-text-main {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #ff6b35;
            letter-spacing: 1px;
            line-height: 1;
        }

        .brand-text-sub {
            font-size: 0.65rem;
            color: #999;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* Navegación Central */
        .nav-center {
            flex: 1;
            display: flex;
            justify-content: center;
            max-width: 700px;
        }

        .nav-pills-tech {
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.35rem;
            display: flex;
            gap: 0.2rem;
            border: 1px solid rgba(100, 100, 100, 0.3);
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .nav-pills-tech .nav-link {
            color: rgba(255, 255, 255, 0.5);
            padding: 0.65rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .nav-pills-tech .nav-link:hover {
            color: rgba(255, 255, 255, 0.9);
            background: rgba(80, 80, 80, 0.3);
        }

        .nav-pills-tech .nav-link.active {
            background: transparent;
            color: #ff6b35;
            box-shadow: none;
        }

        /* Redes Sociales y Selector de Idioma */
        .header-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            color: #ff6b35;
            transform: translateY(-2px);
        }

        /* Selector de Idioma */
        .lang-selector {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            background: rgba(50, 50, 50, 0.4);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 50px;
            padding: 0.4rem 0.5rem;
        }

        .lang-btn {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            padding: 0.4rem 0.8rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .lang-btn:hover {
            color: rgba(255, 255, 255, 0.9);
            background: rgba(80, 80, 80, 0.3);
        }

        .lang-btn.active {
            background: transparent;
            color: #ff6b35;
        }

        .lang-divider {
            width: 1px;
            height: 18px;
            background: rgba(100, 100, 100, 0.4);
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            background: rgba(50, 50, 50, 0.4);
            border: 1px solid rgba(100, 100, 100, 0.3);
            color: #fff;
            padding: 0.6rem 0.9rem;
            border-radius: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-toggle:hover {
            background: rgba(70, 70, 70, 0.5);
            box-shadow: none;
        }

        /* Mobile Menu - SIDEBAR */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 2rem 1.5rem;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
            border-left: 1px solid rgba(100, 100, 100, 0.2);
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1040;
        }

        .mobile-nav.show {
            right: 0;
        }

        /* Overlay del Sidebar */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1035;
        }

        .sidebar-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Header del Sidebar */
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(100, 100, 100, 0.2);
        }

        .mobile-nav-logo {
            display: flex;
            align-items: center;
            height: 40px;
        }

        .mobile-nav-logo img {
            height: 100%;
            width: auto;
            max-width: 150px;
            object-fit: contain;
        }

        .mobile-nav-close {
            background: rgba(50, 50, 50, 0.4);
            border: 1px solid rgba(100, 100, 100, 0.3);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }

        .mobile-nav-close:hover {
            background: rgba(255, 107, 53, 0.2);
            border-color: rgba(255, 107, 53, 0.4);
            color: #ff6b35;
            transform: rotate(90deg);
        }

        /* Enlaces del Sidebar */
        .mobile-nav-links {
            margin-bottom: 2rem;
        }

        .mobile-nav .nav-link {
            color: rgba(255, 255, 255, 0.8);
            padding: 1rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-radius: 10px;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
            text-align: left;
            border: 1px solid transparent;
            font-size: 1rem;
            font-weight: 500;
        }

        .mobile-nav .nav-link::before {
            content: '';
            width: 4px;
            height: 20px;
            background: transparent;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-nav .nav-link:hover {
            background: rgba(50, 50, 50, 0.4);
            border-color: rgba(100, 100, 100, 0.3);
            color: rgba(255, 255, 255, 1);
            transform: translateX(5px);
        }

        .mobile-nav .nav-link:hover::before {
            background: rgba(255, 107, 53, 0.5);
        }

        .mobile-nav .nav-link.active {
            background: rgba(255, 107, 53, 0.1);
            color: #ff6b35;
            border-color: rgba(255, 107, 53, 0.3);
        }

        .mobile-nav .nav-link.active::before {
            background: #ff6b35;
        }

        .mobile-footer {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(100, 100, 100, 0.2);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .mobile-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(50, 50, 50, 0.4);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .mobile-social a:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: rgba(255, 107, 53, 0.4);
            color: #ff6b35;
            transform: translateY(-3px);
        }

        /* Scrollbar del Sidebar */
        .mobile-nav::-webkit-scrollbar {
            width: 6px;
        }

        .mobile-nav::-webkit-scrollbar-track {
            background: rgba(50, 50, 50, 0.2);
            border-radius: 10px;
        }

        .mobile-nav::-webkit-scrollbar-thumb {
            background: rgba(255, 107, 53, 0.3);
            border-radius: 10px;
        }

        .mobile-nav::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 107, 53, 0.5);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .nav-pills-tech .nav-link {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 992px) {
            .nav-center,
            .header-right {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .header-container {
                gap: 1rem;
            }
        }

        @media (max-width: 576px) {
            .header-container {
                padding: 0 1rem;
            }
            
            .brand-logo {
                height: 40px;
            }
            
            .brand-logo-img {
                max-width: 150px;
            }
            
            .brand-text-main {
                font-size: 1.3rem;
            }
            
            .brand-text-sub {
                font-size: 0.55rem;
            }
            
            .brand-icon-wrapper {
                width: 35px;
                height: 35px;
            }

            .brand-icon-wrapper i {
                font-size: 1.2rem;
            }

            .mobile-nav {
                width: 280px;
            }
        }

        /* WhatsApp Float - Estilo Tech */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
            color: white;
        }
    

        /*footer*/

               .content-spacer {
            flex: 1;
        }

        /* FOOTER NAVGIS - TECH/CYBER STYLE */
        .navgis-footer {
            background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
            border-top: 1px solid rgba(100, 100, 100, 0.2);
            position: relative;
            overflow: hidden;
        }

        .navgis-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 107, 53, 0.3) 50%, 
                transparent 100%);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
        }

        /* Brand Section */
        .footer-brand {
            margin-bottom: 2rem;
        }

        .footer-logo-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            height: 50px;
        }

        .footer-logo-img {
            height: 100%;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            filter: brightness(1.1);
        }

        .footer-mission {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 400px;
            margin-bottom: 1.5rem;
        }

        /* Social Icons */
        .footer-social {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .social-icon-tech {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(50, 50, 50, 0.4);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon-tech:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: rgba(255, 107, 53, 0.4);
            color: #ff6b35;
            transform: translateY(-3px);
        }

        /* Footer Columns */
        .footer-column h5 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ff6b35;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            padding-left: 15px;
        }

        .footer-column h5::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #ff6b35;
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3rem 0;
        }

        .footer-link::before {
            content: '›';
            color: #ff6b35;
            font-size: 1.2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #ff6b35;
            padding-left: 0.5rem;
        }

        .footer-link:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        /* Contact Info */
        .contact-item-tech {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .contact-icon-tech {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: rgba(50, 50, 50, 0.4);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 8px;
            color: #ff6b35;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-item-tech a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-tech a:hover {
            color: #ff6b35;
        }

        /* CTA Button */
        .footer-cta-btn {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            color: #ff6b35;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .footer-cta-btn:hover {
            background: rgba(255, 107, 53, 0.2);
            border-color: rgba(255, 107, 53, 0.5);
            color: #ff6b35;
            transform: translateX(5px);
        }

        /* Footer Divider */
        .footer-divider-tech {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(100, 100, 100, 0.3) 50%, 
                transparent 100%);
            margin: 2.5rem 0;
        }

        /* Copyright */
        .footer-copyright {
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        .footer-credit-link {
            color: #ff6b35;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .footer-credit-link:hover {
            color: #ff8555;
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-container {
                padding: 3rem 2rem 2rem;
            }

            .footer-column {
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 3rem 1.5rem 2rem;
            }

            .footer-column h5 {
                font-size: 1rem;
            }

            .footer-mission {
                font-size: 0.9rem;
            }

            .footer-link,
            .contact-item-tech {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .footer-logo-wrapper {
                height: 40px;
            }

            .footer-logo-img {
                max-width: 150px;
            }

            .footer-social {
                gap: 0.6rem;
            }

            .social-icon-tech {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
  

        /*hero home*/

        /* HERO SECTION - TECH/CYBER STYLE */
        .hero-navgis {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: #0a0a0a;
            overflow: hidden;
        }

        /* Animated Grid Background */
        .hero-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(100, 100, 100, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(100, 100, 100, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Gradient Overlay */
        .hero-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
            z-index: 2;
        }

        /* Floating Particles */
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 107, 53, 0.6);
            border-radius: 50%;
            animation: particleFloat 15s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
        .particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 14s; }
        .particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 4s; animation-duration: 16s; }
        .particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 6s; animation-duration: 13s; }
        .particle:nth-child(5) { left: 70%; top: 20%; animation-delay: 1s; animation-duration: 15s; }
        .particle:nth-child(6) { left: 30%; top: 50%; animation-delay: 3s; animation-duration: 17s; }

        @keyframes particleFloat {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            25% { transform: translate(30px, -30px) scale(1.2); opacity: 0.6; }
            50% { transform: translate(-30px, 30px) scale(0.8); opacity: 0.4; }
            75% { transform: translate(20px, 20px) scale(1.1); opacity: 0.5; }
        }

        /* Content Container */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            margin-bottom: 2rem;
        }

        .hero-badge-icon {
            width: 8px;
            height: 8px;
            background: #ff6b35;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero-badge-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Main Title */
        .hero-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2.5rem, 8vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-title-gradient {
            background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffffff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 4s ease infinite;
        }

        .hero-title-white {
            color: #ffffff;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Subtitle */
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            max-width: 700px;
            margin-bottom: 3rem;
        }

        /* Stats Row */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff6b35;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Buttons */
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: #ff6b35;
            border: 1px solid #ff6b35;
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            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-hero-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 ease;
        }

        .btn-hero-primary:hover {
            background: #ff8555;
            border-color: #ff8555;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            color: #fff;
        }

        .btn-hero-primary:hover::before {
            left: 100%;
        }

        .btn-hero-secondary {
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 100, 100, 0.3);
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-hero-secondary:hover {
            background: rgba(70, 70, 70, 0.5);
            border-color: rgba(255, 107, 53, 0.4);
            color: #ff6b35;
            transform: translateY(-2px);
        }

        /* Right Side - Decorative Element */
        .hero-visual {
            position: absolute;
            right: -10%;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            z-index: 5;
            opacity: 0.3;
        }

        .visual-circle {
            position: absolute;
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .visual-circle:nth-child(1) {
            width: 100%;
            height: 100%;
            border-style: dashed;
        }

        .visual-circle:nth-child(2) {
            width: 70%;
            height: 70%;
            top: 15%;
            left: 15%;
            animation-duration: 15s;
            animation-direction: reverse;
        }

        .visual-circle:nth-child(3) {
            width: 40%;
            height: 40%;
            top: 30%;
            left: 30%;
            animation-duration: 10s;
            border-color: rgba(255, 107, 53, 0.5);
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            z-index: 10;
        }

        .scroll-icon {
            width: 24px;
            height: 36px;
            border: 2px solid rgba(255, 107, 53, 0.5);
            border-radius: 12px;
            position: relative;
        }

        .scroll-icon::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: #ff6b35;
            border-radius: 2px;
            animation: scrollDown 2s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
            50% { opacity: 0; transform: translateX(-50%) translateY(12px); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-visual {
                width: 500px;
                height: 500px;
                right: -15%;
            }
        }

        @media (max-width: 992px) {
            .hero-visual {
                opacity: 0.2;
            }

            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-navgis {
                min-height: 90vh;
            }

            .hero-content {
                padding: 0 1.5rem;
            }

            .hero-badge {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-stats {
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }

            .hero-visual {
                display: none;
            }

            .scroll-indicator {
                bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
        }


      /*cellcrypt*/

/* SECCIÓN CELLCRYPT */
.cellcrypt-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    overflow: hidden;
    background: #000000;
}

/* Clean Background */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 2;
}

/* Floating Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 53, 0.6);
    border-radius: 50%;
}

.particle:nth-child(1) { left: 10%; top: 20%; }
.particle:nth-child(2) { left: 20%; top: 80%; }
.particle:nth-child(3) { left: 50%; top: 30%; }
.particle:nth-child(4) { left: 80%; top: 60%; }
.particle:nth-child(5) { left: 70%; top: 20%; }
.particle:nth-child(6) { left: 30%; top: 50%; }

.container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-left {
    max-width: 100%;
}

.image-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.image-placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(255, 107, 53, 0.3);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* Badge */
.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(50, 50, 50, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 100, 100, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.badge-icon {
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.white-text {
    color: #ffffff;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 40px;
}

.countries {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.country-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(50, 50, 50, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 100, 100, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.country-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.country-flag {
    font-size: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(50, 50, 50, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 100, 100, 0.3);
    padding: 28px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    color: #ff6b35;
}

.feature-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.cta-section {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ff6b35 !important;
    border: 1px solid #ff6b35 !important;
    color: #fff;
}

.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 ease;
}

.btn-primary:hover {
    background: #ff8555 !important;
    border-color: #ff8555 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(50, 50, 50, 0.4);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(100, 100, 100, 0.3);
}

.btn-secondary:hover {
    background: rgba(70, 70, 70, 0.5);
    border-color: rgba(255, 107, 53, 0.4);
    color: #ff6b35;
    transform: translateY(-2px);
}

/* Trust Badges - Ahora dentro de image-right */
.image-right .trust-badges {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
    background: rgba(50, 50, 50, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin-top: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.trust-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-value {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

/* Decorative Element */
.visual-decoration {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 5;
    opacity: 0.3;
}

.visual-circle {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
}

.visual-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    border-style: dashed;
}

.visual-circle:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.visual-circle:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-color: rgba(255, 107, 53, 0.5);
}

@media (max-width: 1200px) {
    .visual-decoration {
        width: 500px;
        height: 500px;
        right: -15%;
    }

    .container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .visual-decoration {
        opacity: 0.2;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .image-right {
        order: -1;
    }

    .image-container {
        max-width: 400px;
    }

    .image-right .trust-badges {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .cellcrypt-section {
        padding: 60px 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .visual-decoration {
        display: none;
    }

    .image-right .trust-badges {
        gap: 20px;
        padding: 20px;
        flex-direction: column;
    }

    .trust-item {
        width: 100%;
    }

    .trust-value {
        font-size: 14px;
    }
}

/*prelader*/

.preloader-section {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        overflow: hidden;
    }
    
    .preloader-section::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        opacity: 0.03;
        z-index: 0;
    }

    .preloader-container {
        position: relative;
        width: 600px;
        height: 450px;
        z-index: 1;
    }

    .square {
        position: absolute;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        opacity: 0;
        animation: fadeIn 0.6s ease-out forwards;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(255, 54, 1, 0.4);
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: scale(0) rotate(0deg);
        }
        50% {
            transform: scale(1.1) rotate(5deg);
        }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
    }

    /* Cuadros grandes */
    .square1 {
        width: 80px;
        height: 80px;
        top: 50px;
        left: 50px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        animation-delay: 0.1s;
    }

    .square2 {
        width: 90px;
        height: 90px;
        top: 100px;
        left: 245px;
        background: linear-gradient(135deg, #1a1d4a 0%, #ff4501 100%);
        animation-delay: 0.4s;
    }

    .square3 {
        width: 75px;
        height: 75px;
        top: 170px;
        left: 410px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        animation-delay: 0.7s;
    }

    /* Cuadros medianos */
    .square4 {
        width: 50px;
        height: 50px;
        top: 220px;
        left: 115px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff2801 100%);
        animation-delay: 0.2s;
    }

    .square5 {
        width: 45px;
        height: 45px;
        top: 155px;
        left: 175px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        animation-delay: 0.5s;
    }

    .square6 {
        width: 55px;
        height: 55px;
        top: 250px;
        left: 230px;
        background: linear-gradient(135deg, #1a1d4a 0%, #ff4501 100%);
        animation-delay: 0.8s;
    }

    .square7 {
        width: 50px;
        height: 50px;
        top: 305px;
        left: 345px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        animation-delay: 1.1s;
    }

    /* Cuadros pequeños */
    .square8 {
        width: 30px;
        height: 30px;
        top: 190px;
        left: 80px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff2801 100%);
        animation-delay: 0.3s;
    }

    .square9 {
        width: 35px;
        height: 35px;
        top: 195px;
        left: 215px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        animation-delay: 0.6s;
    }

    .square10 {
        width: 30px;
        height: 30px;
        top: 205px;
        left: 345px;
        background: linear-gradient(135deg, #1a1d4a 0%, #ff4501 100%);
        animation-delay: 0.9s;
    }

    .square11 {
        width: 25px;
        height: 25px;
        top: 290px;
        left: 290px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff2801 100%);
        animation-delay: 1.0s;
    }

    .square12 {
        width: 28px;
        height: 28px;
        top: 90px;
        left: 485px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        animation-delay: 1.2s;
    }

    .square13 {
        width: 32px;
        height: 32px;
        top: 220px;
        left: 525px;
        background: linear-gradient(135deg, #1a1d4a 0%, #ff4501 100%);
        animation-delay: 1.3s;
    }

    /* Cuadros muy pequeños */
    .square14 {
        width: 20px;
        height: 20px;
        top: 290px;
        left: 75px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff1801 100%);
        animation-delay: 0.15s;
    }

    .square15 {
        width: 22px;
        height: 22px;
        top: 375px;
        left: 310px;
        background: linear-gradient(135deg, #0b0c32 0%, #ff1801 100%);
        animation-delay: 1.4s;
    }

    .loading-text {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #0b0c32 0%, #ff3601 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 24px;
        font-weight: bold;
        opacity: 0;
        animation: fadeIn 0.6s ease-out 0.5s forwards;
    }

    .dots {
        display: inline-block;
        animation: dots 1.5s infinite;
    }

    @keyframes dots {
        0%, 20% { content: '.'; }
        40% { content: '..'; }
        60%, 100% { content: '...'; }
    }

    /* Animación para ocultar el preloader */
    .preloader-section.hidden {
        animation: fadeOut 0.5s ease-out forwards;
    }

    @keyframes fadeOut {
        to {
            opacity: 0;
            visibility: hidden;
        }
    }


    /* nosotros home*/

     .about-section {
            padding: 100px 20px;
            background: #0a0a0a;
            position: relative;
            overflow: hidden;
        }

        /* Background Grid */
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(100, 100, 100, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(100, 100, 100, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
        }

        /* Gradient Overlay */
        .about-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
            z-index: 2;
        }

        .about-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            z-index: 10;
        }

        .about-content {
            padding-right: 20px;
        }

        .about-label {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }

        .about-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .about-title-highlight {
            background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffffff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-description {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 50px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-item {
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 100, 100, 0.3);
            padding: 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff6b35, transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .about-item:hover::before {
            transform: translateX(100%);
        }

        .about-item:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: rgba(255, 107, 53, 0.4);
            transform: translateY(-3px);
        }

        .item-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .item-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 107, 53, 0.2);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff6b35;
            font-size: 20px;
        }

        .item-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ffffff;
        }

        .item-text {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
        }

        .about-image-side {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .about-image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 4/3;
            background: rgba(50, 50, 50, 0.4);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            color: rgba(255, 255, 255, 0.4);
            text-align: center;
            padding: 40px;
        }

        .placeholder-icon {
            font-size: 80px;
            color: rgba(255, 107, 53, 0.3);
        }

        .placeholder-text {
            font-size: 16px;
            font-weight: 600;
        }

        .about-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-highlight-box {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
        }

        .highlight-text {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .highlight-subtext {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }

        .highlight-company {
            color: #ff6b35;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-content {
                padding-right: 0;
            }

            .about-image-side {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 20px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .about-item {
                padding: 25px;
            }

            .about-image-container {
                aspect-ratio: 16/9;
            }
        }

        @media (max-width: 480px) {
            .about-description {
                font-size: 15px;
            }

            .item-text {
                font-size: 13px;
            }

            .about-highlight-box {
                padding: 25px 20px;
            }
        }



        /*logos*/

           /* ========== PARTNERS SECTION - ANCHO COMPLETO ========== */
        .partners-section {
            width: 100%;
            padding: 80px 0;
            text-align: center;
            overflow: hidden;
            background-color: #0a0a0a;
        }

        .partners-header {
            padding: 0 40px;
            margin-bottom: 60px;
        }

        .partners-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .partners-subtitle {
            font-size: 18px;
            color: #999;
        }

        .partners-carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            width: 100%;
        }

        /* Gradientes laterales para efecto fade */
        .partners-carousel-wrapper::before,
        .partners-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 200px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .partners-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #0a0a0a, transparent);
        }

        .partners-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #0a0a0a, transparent);
        }

        .partners-carousel {
            display: flex;
            gap: 60px;
            animation: partnersScroll 40s linear infinite;
            width: fit-content;
        }

        .partners-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes partnersScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .partners-logo-item {
            flex-shrink: 0;
            width: 220px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 20px;
        }

        .partners-logo-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #ff4d1a;
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 77, 26, 0.3);
        }

        /* Espacio para las imágenes */
        .partners-logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            
            transition: filter 0.3s ease;
        }

        .partners-logo-item:hover img {
            filter: grayscale(0%) brightness(1);
        }

        /* Placeholder mientras no hay imagen */
        .partners-logo-placeholder {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            letter-spacing: 2px;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .partners-section {
                padding: 60px 0;
            }

            .partners-header {
                padding: 0 20px;
            }

            .partners-title {
                font-size: 32px;
            }

            .partners-subtitle {
                font-size: 16px;
            }

            .partners-logo-item {
                width: 180px;
                height: 110px;
            }

            .partners-carousel {
                gap: 40px;
            }

            .partners-carousel-wrapper::before,
            .partners-carousel-wrapper::after {
                width: 100px;
            }
        }

        @media (max-width: 480px) {
            .partners-logo-item {
                width: 150px;
                height: 90px;
            }

            .partners-carousel {
                gap: 30px;
            }
        }