        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1e90ff;
            --accent-color: #00d4ff;
            --dark-bg: #0a0e27;
            --text-light: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.7);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }

        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 39, 0.7);
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 400;
        }

        nav a:hover {
            color: var(--accent-color);
        }

        nav .lang-btn {
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid var(--accent-color);
            color: var(--text-light);
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.9rem;
            margin-left: 1rem;
        }

        nav .lang-btn:hover {
            background: var(--accent-color);
            color: var(--dark-bg);
        }

        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem;
            position: relative;
        }

        .container {
            max-width: 1200px;
            width: 100%;
        }

        #slide01 {
            text-align: center;
        }

        #slide01 h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        #slide01 .tagline {
            font-size: 1.4rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.6;
            color: var(--text-muted);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--text-light);
            box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent-color);
        }

        .btn-secondary:hover {
            background: rgba(0, 212, 255, 0.1);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            animation: bounce 2s infinite;
        }

        .scroll-indicator img {
            width: 30px;
            opacity: 0.6;
        }

        .scroll-indicator p {
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mission-box {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            border-left: 4px solid var(--accent-color);
        }

        .mission-box h3 {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .mission-box p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s;
        }

        .stat-item:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .content-box {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-left: 4px solid var(--accent-color);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 0 15px 15px 0;
        }

        .content-box h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .content-box p {
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .content-box ul {
            list-style: none;
            padding-left: 0;
        }

        .content-box li {
            padding: 0.7rem 0;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
            color: var(--text-muted);
        }

        .content-box li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .service-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }

        .service-card h3 {
            color: var(--accent-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .service-meta {
            font-size: 0.85rem;
            color: var(--primary-color);
            font-style: italic;
            margin-top: 1rem;
            display: block;
        }

        .pricing-highlight {
            background: rgba(30, 144, 255, 0.1);
            border: 2px solid var(--primary-color);
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
        }

        .pricing-highlight h3 {
            color: var(--accent-color);
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 1rem 0;
        }

        .price-note {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        .features-list {
            text-align: left;
            max-width: 600px;
            margin: 2rem auto;
        }

        .features-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .project-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: background 0.3s;
        }

        .carousel-btn:hover {
            background: rgba(0, 212, 255, 0.8);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        .project-card img:not(.carousel-slide img) {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .project-content {
            padding: 2rem;
        }

        .project-content h4 {
            color: var(--accent-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .project-content p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0.8rem;
        }

        .project-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .project-tag {
            background: rgba(30, 144, 255, 0.2);
            color: var(--accent-color);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .testimonial img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .testimonial p {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .testimonial h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 15px;
        }

        .contact-info h3 {
            color: var(--accent-color);
            margin-bottom: 2rem;
            font-size: 1.5rem;
        }

        .contact-item {
            margin: 2rem 0;
        }

        .contact-item strong {
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.7rem;
            font-size: 1.1rem;
        }

        .contact-item a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: var(--accent-color);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 15px;
        }

        .contact-form h3 {
            color: var(--accent-color);
            margin-bottom: 2rem;
            font-size: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: var(--text-light);
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.08);
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        @media (max-width: 768px) {
            #slide01 h1 {
                font-size: 3rem;
            }

            nav ul {
                gap: 1rem;
                font-size: 0.85rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            h2 {
                font-size: 2rem;
            }

            .pricing-plans-grid {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
            }
        }

        .full-width-section {
            width: 100%;
            max-width: 100%;
            padding: 4rem 0;
            background: rgba(10, 14, 39, 0.9);
        }

        .full-width-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .pricing-plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .pricing-plan-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .pricing-plan-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
        }

        .pricing-plan-card.featured {
            background: rgba(30, 144, 255, 0.1);
            border: 2px solid var(--primary-color);
            position: relative;
        }

        .pricing-plan-card.featured::before {
            content: "Más Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--text-light);
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        
        }.pricing-plan-card.featured.en::before {
            content: "Most Popular";
        }
        .pricing-plan-card h3 {
            color: var(--accent-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .pricing-plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 1rem 0 0.3rem;
        }

        .pricing-plan-price span {
            font-size: 1rem;
            -webkit-text-fill-color: var(--text-muted);
        }

        .pricing-plan-price-note {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .pricing-plan-features {
            text-align: left;
            margin: 1.5rem 0;
            list-style: none;
            padding: 0;
        }

        .pricing-plan-features li {
            padding: 0.6rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .pricing-plan-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: var(--text-light);
            font-size: 1.3rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

        .fa-github { font-size: 1.4rem; }