        :root {
            --gradient-start: #00b4d8;
            --gradient-end: #2563eb;
            --purple: #a855f7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        /* ===== VIDEO FONDO ===== */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            object-fit: cover;
            z-index: -2;
            opacity: 0.3;
            transition: opacity 0.6s ease-out;
            pointer-events: none;
        }

        .video-background.hidden {
            opacity: 0;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            z-index: -3;
            opacity: 0;
            transition: opacity 0.6s ease-out;
        }

        body.video-hidden::before {
            opacity: 1;
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 15px 0;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        header.scrolled .nav-links a {
            color: #7fa0d4;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo-easy {
            height: 55px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo-color {
            filter: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
            z-index: 1001;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            overflow: hidden;
            padding: 7% 1% 1% 1%;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(180deg, #00010e00,#05162979,#173757, #17293a);
            overflow: hidden;
        }

        .grid-teamviewer {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 40px;
            align-items: center;
            width: 100%;
        }

        .grid-teamviewer img:first-child {
            width: 70%;
            margin-bottom: 20px;
        }

        .grid-teamviewer h2 {
            font-size: 2rem;
            color: white;
            line-height: 1.2;
        }

        .grid-teamviewer .light {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end), var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .part2-teamviewer {
            text-align: center;
        }

        .part2-teamviewer img {
            width: 80%;
            margin-bottom: 20px;
        }

        /* ===== BOTONES ===== */
        .btn-primary {
            display: inline-block;
            background: transparent;
            border: 2px solid var(--gradient-start);
            padding: 12px 35px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,180,216,0.4);
        }

        .hero-btns {
            text-align: center;
            margin-top: 20px;
        }

        /* ===== RESTO DEL CONTENIDO ===== */
        .rest-content {
            position: relative;
            z-index: 5;
            background-color: #17293a;
        }

        /* ===== SECCIÓN DOS COLUMNAS ===== */
        .two-columns-section {
            padding: 60px 0;
        }

        .grid-two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .left-column h1 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
        }

        .left-column p {
            font-size: 1.4rem;
            color: #0779c5;
            line-height: 1.6;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .right-column h2 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 25px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            color: white;
            font-size: 1rem;
            padding: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            transform: translateX(5px);
            background: rgba(0,180,216,0.1);
            border-color: var(--gradient-start);
        }

        .feature-list li i {
            color: var(--gradient-start);
            font-size: 1.2rem;
            width: 25px;
        }

        .img-teamviewer {
            background: linear-gradient(135deg, #1e3a5f, #0f2740);
            border-radius: 30px;
            padding: 40px;
            text-align: center;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0,180,216,0.3);
        }

        .img-teamviewer::before {
            content: "🖥️";
            font-size: 5rem;
            opacity: 0.5;
        }

        .img-team{
            background-color: #00b4d8;
            width: 60%;
            height: 200px;
            margin: auto;
            border-radius: 25px;
        }

        .img-team img{
            width: 100%;
        }

        /* ===== SECCIÓN FINAL ===== */
        .final-section {
            text-align: center;
            padding: 60px 0;
        }

        .final-section h1 {
            font-size: 4.5rem;
            color: white;
            margin-bottom: 20px;
        }

        .final-section .light {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end), var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            font-weight: 700;
             letter-spacing: -2px;
            color: transparent;
        }

        .final-section p {
             line-height: 0.1;
            font-size: 2.5rem;
             letter-spacing: -3px;
            color: #cbd5e1;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .button-container {
            text-align: center;
            margin: 30px 0;
        }

        .contact-btn {
            background: transparent;
            border: 1px solid white;
            padding: 14px 50px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,180,216,0.4);
        }

     

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .grid-teamviewer {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .grid-two-columns {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .feature-list li {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 280px;
                height: 100vh;
                background: linear-gradient(135deg, #0f172a, #1e293b);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
                transition: 0.4s;
                z-index: 1000;
                box-shadow: -5px 0 30px rgba(0,0,0,0.5);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                color: white !important;
                font-size: 1.2rem;
            }
            
            .grid-teamviewer h2 {
                font-size: 1.5rem;
            }
            
            .grid-teamviewer .light {
                font-size: 1.8rem;
            }
            
            .left-column h1 {
                font-size: 2rem;
            }
            
            .final-section h1 {
                font-size: 2rem;
            }
            
            .final-section .light {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .logo-easy {
                height: 40px;
            }
            
            .grid-teamviewer h2 {
                font-size: 1.2rem;
            }
            
            .grid-teamviewer .light {
                font-size: 1.4rem;
            }
            
            .contact-btn {
                padding: 10px 30px;
                font-size: 0.9rem;
            }
        }

        /* ===== ANIMACIONES ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .grid-two-columns, .final-section {
            animation: fadeInUp 0.6s ease-out;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1e293b;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 10px;
        }