/* CSS Variables for consistent theming */
        :root {
            --primary-blue: #3b82f6;
            --primary-blue-dark: #1e40af;
            --primary-green: #10b981;
            --primary-green-dark: #047857;
            --primary-orange: #f59e0b;
            --primary-orange-dark: #d97706;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            --transition-base: all 0.3s ease;
            --transition-slow: all 0.5s ease;
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Base styles */
        * {
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 300;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Utility classes */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 400;
            text-decoration: none;
            transition: var(--transition-base);
            cursor: pointer;
            border: none;
            letter-spacing: 0.025em;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary {
            background: var(--gray-600);
            color: white;
        }

        .btn-secondary:hover {
            background: var(--gray-700);
        }

        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            border-radius: 9999px;
        }

        /* Navigation styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow-lg);
            z-index: 50;
            transition: var(--transition-base);
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
            padding: 0 1rem;
        }

        .navbar-brand img {
            height: 3rem;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .navbar-brand img:hover {
            opacity: 0.8;
        }

        .navbar-nav {
            display: none;
            align-items: center;
            justify-content: center;
            flex: 1;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .navbar-nav {
                display: flex;
            }
        }

        .nav-link {
            position: relative;
            color: var(--gray-700);
            text-decoration: none;
            padding: 0.5rem 0.75rem;
            font-weight: 300;
            transition: var(--transition-base);
            letter-spacing: 0.025em;
        }

        .nav-link:hover {
            color: var(--gray-600);
        }

        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-dark));
            border-radius: 1px;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 100%;
            margin-top: 0.5rem;
            width: 14rem;
            background: white;
            border-radius: 0.5rem;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-base);
            z-index: 50;
            border: 1px solid #e2e8f0;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--gray-700);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 300;
            letter-spacing: 0.01em;
            transition: var(--transition-base);
            border-bottom: 1px solid #f1f5f9;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background-color: var(--gray-100);
            color: var(--primary-blue);
        }

        .login-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: var(--gray-100);
            color: var(--gray-700);
            transition: var(--transition-base);
        }

        .login-btn:hover {
            background-color: #e2e8f0;
        }

        .mobile-menu-btn {
            display: block;
            color: var(--gray-700);
            cursor: pointer;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #e2e8f0;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-item {
            display: block;
            padding: 0.5rem 0.75rem;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .mobile-nav-item:hover {
            color: var(--gray-600);
        }

        .mobile-submenu {
            padding-left: 1.5rem;
        }

        .mobile-submenu.hidden {
            display: none;
        }

        /* Hero section styles */
        .hero-section {
            height: 100vh;
            background-color: var(--gray-900);
            padding-top: 4rem;
        }

        .slide-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
        }

        .slide-text {
            width: 60%;
            padding: 3rem;
            color: white;
        }

        .slide-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 200;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.025em;
        }

        .slide-description {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            font-weight: 300;
            opacity: 0.9;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }

        .slide-image-area {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-placeholder {
            text-align: center;
            color: #9ca3af;
        }

        .image-placeholder svg {
            width: 6rem;
            height: 6rem;
            margin: 0 auto 1rem;
            opacity: 0.5;
        }

        .slide-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
            z-index: 10;
        }

        .slide-indicator {
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background: white;
            opacity: 0.5;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .slide-indicator.active,
        .slide-indicator:hover {
            opacity: 1;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.75rem;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-base);
            z-index: 10;
            border: none;
        }

        .nav-button:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: 1.5rem;
        }

        .nav-button.next {
            right: 1.5rem;
        }

        /* Gradients for slides */
        .gradient-blue {
            fill: url(#gradient1);
        }

        .gradient-green {
            fill: url(#gradient2);
        }

        .gradient-orange {
            fill: url(#gradient3);
        }

        /* Section styles */
        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 4vw, 3rem);
            font-weight: 200;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.25rem;
            font-weight: 300;
            max-width: 48rem;
            margin: 0 auto;
            letter-spacing: 0.01em;
        }

        /* Services section */
        .services-section {
            background: linear-gradient(135deg, #d3d3d3, #e0e7ff);
        }

        .services-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            position: relative;
            background: white;
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
            padding: 2.5rem;
            transition: var(--transition-slow);
            transform: translateY(0);
            overflow: hidden;
            min-height: 280px;
        }

        .service-card:hover {
            box-shadow: var(--shadow-2xl);
            transform: translateY(-0.5rem);
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: var(--transition-slow);
            z-index: 1;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            opacity: 0.4;
            z-index: 1;
            transition: var(--transition-base);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            opacity: 0.25;
        }

        .service-card > * {
            position: relative;
            z-index: 2;
        }

        .service-card.hosting:hover::before {
            background: linear-gradient(135deg, var(--gray-600), var(--gray-700));
        }

        .service-card.hosting::after {
            background-image: url("data:image/svg+xml,%3Csvg fill='%2364748b' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V4zM3 10a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2zM3 16a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1v-2z'/%3E%3C/svg%3E");
        }

        .service-card.desarrollo:hover::before {
            background: linear-gradient(135deg, var(--primary-green), #059669);
        }

        .service-card.desarrollo::after {
            background-image: url("data:image/svg+xml,%3Csvg fill='%2364748b' stroke='%2364748b' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4'/%3E%3C/svg%3E");
        }

        .service-card.ecommerce:hover::before {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
        }

        .service-card.ecommerce::after {
            background-image: url("data:image/svg+xml,%3Csvg fill='%2364748b' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 1a1 1 0 000 2h1.22l.305 1.222a.997.997 0 00.01.042l1.358 5.43-.893.892C3.74 11.846 4.632 14 6.414 14H15a1 1 0 000-2H6.414l1-1H14a1 1 0 00.894-.553l3-6A1 1 0 0017 3H6.28l-.31-1.243A1 1 0 005 1H3zM16 16.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM6.5 18a1.5 1.5 0 100-3 1.5 1.5 0 000 3z'/%3E%3C/svg%3E");
        }

        .service-card.herramientas:hover::before {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
        }

        .service-card.herramientas::after {
            background-image: url("data:image/svg+xml,%3Csvg fill='%2364748b' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z' clip-rule='evenodd'/%3E%3C/svg%3E");
        }

        .service-card.asesoria:hover::before {
            background: linear-gradient(135deg, #14b8a6, #0d9488);
        }

        .service-card.asesoria::after {
            background-image: url("data:image/svg+xml,%3Csvg fill='%2364748b' stroke='%2364748b' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z'/%3E%3C/svg%3E");
        }

        .service-card.administracion:hover::before {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .service-card.administracion::after {
            background-image: url("data:image/svg+xml,%3Csvg fill='%2364748b' stroke='%2364748b' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 100 4m0-4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 100 4m0-4v2m0-6V4'/%3E%3C/svg%3E");
        }

        .service-title {
            font-size: 2.25rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            transition: var(--transition-base);
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .service-card:hover .service-title {
            color: white;
        }

        .service-description {
            font-size: 0.875rem;
            font-weight: 300;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            transition: var(--transition-base);
            opacity: 0.8;
            letter-spacing: 0.01em;
        }

        .service-card:hover .service-description {
            color: rgba(255, 255, 255, 0.9);
            opacity: 1;
        }

        .service-link {
            display: flex;
            align-items: center;
            font-weight: 400;
            transition: var(--transition-base);
            letter-spacing: 0.025em;
        }

        .service-card:hover .service-link {
            color: white;
        }

        .service-link svg {
            margin-left: 0.5rem;
            transition: var(--transition-base);
        }

        .service-card:hover .service-link svg {
            transform: translateX(0.25rem);
        }

        /* About section */
        .about-section {
            background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
        }

        .about-content {
            display: grid;
            gap: 3rem;
            align-items: center;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .about-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .about-text {
            color: white;
        }

        .about-title {
            font-size: 1.875rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .about-paragraph {
            font-size: 1.125rem;
            font-weight: 300;
            color: #d1d5db;
            margin-bottom: 1.5rem;
            letter-spacing: 0.01em;
        }

        .about-image {
            background: var(--gray-600);
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: var(--shadow-lg);
        }

        /* Clients section */
        .clients-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8fafc, #e0e7ff);
            overflow: hidden;
        }

        .clients-carousel {
            position: relative;
        }

        .clients-track {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        .clients-group {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
            flex-shrink: 0;
        }

        .client-logo {
            margin: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 10rem;
            height: 5rem;
            transition: var(--transition-base);
        }

        .client-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.2);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Contact section */
        .contact-section {
            background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .contact-info {
            color: white;
            text-align: center;
            max-width: 32rem;
        }

        .contact-info-title {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 0.01em;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
        }

        .contact-info-item svg {
            width: 1.25rem;
            height: 1.25rem;
            color: #60a5fa;
            margin-right: 0.5rem;
        }

        .contact-info-item span {
            color: #d1d5db;
            font-size: 0.875rem;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .contact-form {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: var(--shadow-xl);
            width: 100%;
            max-width: 28rem;
        }

        .form-title {
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--gray-800);
            margin-bottom: 1.25rem;
            text-align: center;
            letter-spacing: 0.01em;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-grid {
            display: grid;
            gap: 1rem;
            grid-template-columns: 1fr;
        }

        .form-label {
            display: block;
            color: var(--gray-700);
            font-size: 0.8rem;
            font-weight: 300;
            margin-bottom: 0.375rem;
            letter-spacing: 0.025em;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.625rem 0.875rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
            transition: var(--transition-base);
            font-size: 0.875rem;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-submit {
            width: 100%;
            background: var(--primary-blue);
            color: white;
            padding: 0.75rem;
            border-radius: 0.375rem;
            font-weight: 300;
            transition: var(--transition-base);
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
            letter-spacing: 0.025em;
        }

        .form-submit:hover {
            background: var(--primary-blue-dark);
            transform: translateY(-1px);
        }

        .form-note {
            font-size: 0.75rem;
            color: #9ca3af;
            text-align: center;
            margin-top: 0.75rem;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-content {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .footer-brand img {
            height: 3rem;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: #9ca3af;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 0.025em;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 0.5rem;
        }

        .footer-link {
            color: #9ca3af;
            text-decoration: none;
            transition: var(--transition-base);
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .footer-link:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: #9ca3af;
            transition: var(--transition-base);
        }

        .social-link:hover {
            color: #60a5fa;
        }

        .social-link.facebook:hover {
            color: #3b82f6;
        }

        .social-link.instagram:hover {
            color: #ec4899;
        }

        .social-link.linkedin:hover {
            color: #2563eb;
        }

        .payment-icons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .payment-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            transition: var(--transition-base);
        }

        .payment-icon:hover {
            color: #374151;
            transform: scale(1.1);
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: #9ca3af;
            margin: 0;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .slide-text {
                width: 100%;
                padding: 1.5rem;
                text-align: center;
            }

            .slide-image-area {
                display: none;
            }

            .navbar-container {
                padding: 0 1rem;
            }

            .mobile-menu-controls {
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }

            .mobile-login-btn {
                width: 2rem;
                height: 2rem;
            }

            .mobile-login-btn svg {
                width: 1.25rem;
                height: 1.25rem;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for better accessibility */
        .btn:focus,
        .nav-link:focus,
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }

        /* Print styles */
        @media print {
            .navbar,
            .nav-button,
            .slide-indicators,
            .footer {
                display: none;
            }
        }
