:root {
            --primary: #3AB2ED;
            --primary-rgb: 58, 178, 237;
            --secondary: #FF6B35;
            --accent: #8B5CF6;
            --bg-base: #FAFAFA;
            --bg-elevated: #FFFFFF;
            --bg-surface: #F1F5F9;
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --text-muted: #64748B;
            --border-subtle: rgba(0, 0, 0, 0.06);
            --border-active: rgba(58, 178, 237, 0.5);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 24px;
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 32px;
            --space-lg: 64px;
            --space-xl: 128px;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: var(--space-sm) 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        
        .logo img {
            height: 56px;
            width: auto;
            object-fit: contain;
        }

        nav {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            flex-shrink: 0;
        }

        .menu-toggle {
            display: none;
        }

        .about {
            background: var(--bg-surface);
            position: relative;
            padding: var(--space-xl) 0;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03) 0%, transparent 100%);
            pointer-events: none;
        }

        .about-video {
            margin-bottom: var(--space-lg);
        }

        .video-player {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #000;
            aspect-ratio: 16 / 9;
            cursor: pointer;
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-player:hover .video-thumbnail {
            transform: scale(1.02);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .video-player:hover .video-overlay {
            background: rgba(0, 0, 0, 0.4);
        }

        .video-play-btn {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .video-player:hover .video-play-btn {
            transform: scale(1.1);
            background: var(--accent);
        }

        .video-play-btn i {
            font-size: 2rem;
            color: #fff;
            margin-left: 4px;
        }

        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: var(--space-sm);
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-player:hover .video-controls {
            opacity: 1;
        }

        .video-progress {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            overflow: hidden;
        }

        .video-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.1s linear;
        }

        .video-time {
            font-size: 0.75rem;
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
        }

        .video-iframe-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
        }

        .video-iframe-container.active {
            display: block;
        }

        .video-iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .about-mission {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        .mission-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-sm);
            text-align: center;
            transition: all 0.3s ease;
        }

        .mission-card:hover {
            border-color: var(--border-active);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .mission-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .mission-card h4 {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .mission-card p {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .timeline {
            position: relative;
            padding: var(--space-md) 0;
            margin-bottom: var(--space-lg);
        }

        .timeline-track {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
            border-radius: 2px;
            transform: translateY(-50%);
        }

        .timeline-items {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: var(--space-sm);
            position: relative;
        }

        .timeline-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            order: -1;
            margin-bottom: var(--space-sm);
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-top: var(--space-sm);
        }

        .timeline-dot {
            width: 16px;
            height: 16px;
            background: var(--bg-elevated);
            border: 3px solid var(--primary);
            border-radius: 50%;
            z-index: 1;
            flex-shrink: 0;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            order: -1;
        }

        .timeline-content {
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-sm);
            width: 100%;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            border-color: var(--border-active);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .timeline-year {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .timeline-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .timeline-desc {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .about-certifications {
            margin-top: var(--space-lg);
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-md);
        }

        .certification-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .certification-card:hover {
            border-color: var(--border-active);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .cert-header {
            margin-bottom: var(--space-sm);
            padding-bottom: var(--space-sm);
            border-bottom: 1px solid var(--border-subtle);
            width: 100%;
        }

        .cert-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-xs);
        }

        .cert-logo img {
            height: 90px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .certification-card:hover .cert-logo img {
            transform: scale(1.03);
        }

        .cert-logo-placeholder {
            width: 80px;
            height: 60px;
            background: var(--bg-surface);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cert-logo-placeholder i {
            font-size: 2rem;
            color: var(--primary);
        }

        .cert-badge-type {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cert-content h3 {
            font-size: 1.15rem;
            margin-bottom: var(--space-xs);
            color: var(--text-primary);
        }

        .cert-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: var(--space-sm);
        }

        .cert-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
            justify-content: center;
        }

        .cert-highlights span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: var(--bg-surface);
            border-radius: 100px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .cert-highlights span i {
            color: var(--primary);
            font-size: 0.7rem;
        }

        @media (max-width: 1200px) {
            .about-mission {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-items {
                grid-template-columns: repeat(3, 1fr);
            }

            .timeline-track {
                display: none;
            }

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

        @media (max-width: 900px) {
            .about-mission {
                grid-template-columns: 1fr;
            }

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

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

        @media (max-width: 600px) {
            .timeline-items {
                grid-template-columns: 1fr;
            }

            .timeline-track {
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 16px;
                width: 4px;
                height: 100%;
                transform: none;
                background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
            }

            .timeline {
                position: relative;
                padding-left: 40px;
            }

            .timeline-item {
                flex-direction: row;
                align-items: flex-start;
                gap: var(--space-sm);
                text-align: left;
                position: relative;
            }

            .timeline-item .timeline-dot {
                position: absolute;
                left: -32px;
                top: 0;
                flex-shrink: 0;
                z-index: 2;
            }

            .timeline-item .timeline-content {
                flex: 1;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                order: 0;
                margin: 0;
            }

            .timeline-item:nth-child(even) .timeline-dot {
                order: 0;
            }

            .timeline-year {
                font-size: 1.25rem;
            }

            .mission-card i {
                font-size: 1.5rem;
            }

            .about-mission {
                gap: var(--space-sm);
            }

            .cert-logo img {
                height: 70px;
            }

            .cert-content h3 {
                font-size: 1rem;
            }

            .cert-content p {
                font-size: 0.85rem;
            }

            .cert-highlights {
                gap: 6px;
            }

            .cert-highlights span {
                font-size: 0.7rem;
                padding: 3px 8px;
            }
        }

        @media (max-width: 400px) {
            .section-title {
                font-size: 1.75rem;
            }

            .timeline-year {
                font-size: 1.1rem;
            }

            .timeline-title {
                font-size: 0.85rem;
            }

            .mission-card {
                padding: var(--space-xs);
            }

            .mission-card h4 {
                font-size: 0.9rem;
            }

            .mission-card p {
                font-size: 0.75rem;
            }

            .about {
                padding: var(--space-md) 0;
            }

            .about::before {
                height: 100px;
            }

            .video-play-btn {
                width: 60px;
                height: 60px;
            }

            .video-play-btn i {
                font-size: 1.5rem;
            }
        }

        /* Sidebar - global */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            display: none;
            overflow-x: hidden;
        }

        .sidebar-overlay.active {
            display: block;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: var(--bg-elevated);
            z-index: 9999;
            transition: transform 0.3s ease;
            transform: translateX(100%);
            display: flex;
            flex-direction: column;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
            overflow-x: hidden;
        }

        .sidebar.active {
            transform: translateX(0);
        }

        .sidebar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-sm);
            border-bottom: 1px solid var(--border-subtle);
        }

        .sidebar-header img {
            height: 40px;
        }

        .sidebar-close {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-primary);
        }

        .sidebar-nav {
            flex: 1;
            overflow-y: auto;
            padding: var(--space-sm);
        }

        .sidebar-nav .nav-link {
            display: block;
            padding: 12px;
            color: var(--text-primary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .sidebar-nav .dropdown-menu {
            display: none;
            padding-left: 10px;
        }

        .sidebar-nav .nav-dropdown.expanded .dropdown-menu {
            display: block;
        }

        .sidebar-nav .nav-dropdown.expanded > a .fa-chevron-down {
            transform: rotate(180deg) !important;
        }

        .sidebar-nav .nav-dropdown > a .fa-chevron-down {
            transform: rotate(0deg) !important;
            transition: transform 0.2s ease !important;
        }

        .sidebar-nav .dropdown-menu a {
            padding: 10px 12px 10px 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            border-bottom: none;
        }

        .sidebar-nav .dropdown-menu img {
            width: 20px;
            height: auto;
        }

        .sidebar-footer {
            padding: var(--space-sm);
            border-top: 1px solid var(--border-subtle);
        }

        .sidebar-footer .btn {
            width: 100%;
            justify-content: center;
        }

        .desktop-only {
            display: inline-flex;
        }

        nav a {
            font-size: 0.9rem;
            font-weight: 500;
            color: #1e293b;
            transition: color 0.2s;
            position: relative;
        }

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

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #1e293b;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }

        .nav-link i.fa-chevron-down {
            font-size: 0.65rem;
            transition: transform 0.2s ease;
        }

        .nav-dropdown:hover .nav-link i.fa-chevron-down {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: var(--radius-md);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 9999;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            color: #334155;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.15s ease;
        }

        .dropdown-menu a:hover {
            background: rgba(var(--primary-rgb), 0.08);
            color: #0f172a;
        }

        .dropdown-menu a i {
            width: 20px;
            text-align: center;
            color: var(--primary);
        }

        .licenses-menu a img {
            width: 20px;
            height: auto;
            margin-right: 8px;
            vertical-align: middle;
            object-fit: contain;
        }

        .licenses-menu a i.fab.fa-microsoft {
            font-size: 18px;
            margin-right: 8px;
            color: #00A4EF;
        }

        .products-menu a img {
            width: 20px;
            height: auto;
            margin-right: 8px;
            vertical-align: middle;
            object-fit: contain;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            flex-shrink: 0;
        }

        .theme-toggle {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: transparent;
            color: #1e293b;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .theme-toggle:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--bg-base);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid #25D366;
            background: transparent;
            color: #25D366;
            margin-left: 12px;
        }

        .btn-whatsapp:hover {
            background: #25D366;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--border-active);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--bg-base);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 640px;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(var(--primary-rgb), 0.1);
            border: 1px solid var(--border-subtle);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-md);
        }

        .hero-tag i {
            font-size: 0.7rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: var(--space-sm);
            letter-spacing: -2px;
        }

        .hero h1 .highlight {
            color: var(--primary);
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
            max-width: 520px;
        }

        .hero-cta {
            display: flex;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
        }

        .hero-stats {
            display: flex;
            gap: var(--space-lg);
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .hero-visual {
            position: relative;
            height: 500px;
        }

        .orbital-system {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
        }

        .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            border: 1px solid var(--border-subtle);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .orbit-1 {
            width: 200px;
            height: 200px;
            animation: orbit 20s linear infinite;
        }

        .orbit-2 {
            width: 320px;
            height: 320px;
            animation: orbit 30s linear infinite reverse;
        }

        .orbit-3 {
            width: 440px;
            height: 440px;
            animation: orbit 40s linear infinite;
        }

        @keyframes orbit {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .orbit::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px var(--primary);
        }

        .orbit-2::before {
            background: var(--accent);
            box-shadow: 0 0 20px var(--accent);
        }

        .orbit-3::before {
            background: var(--secondary);
            box-shadow: 0 0 20px var(--secondary);
        }

        .center-hub {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: var(--bg-elevated);
            border: 2px solid var(--border-active);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.2);
        }

        .center-hub i {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .floating-card {
            position: absolute;
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-sm);
            backdrop-filter: blur(10px);
            animation: float 4s ease-in-out infinite;
        }

        .floating-card.card-1 {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 20%;
            left: 5%;
            animation-delay: 1s;
        }

        .floating-card.card-3 {
            bottom: 10%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-card i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .floating-card span {
            display: block;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .floating-card strong {
            display: block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        section {
            padding: var(--space-xl) 0;
            position: relative;
        }

        .section-header {
            margin-bottom: var(--space-lg);
            text-align: left;
        }

        .section-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-sm);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -1px;
            margin-bottom: var(--space-sm);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
        }

        .services {
            background: var(--bg-elevated);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
        }

        .service-card {
            background: var(--bg-base);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--border-active);
            transform: translateY(-4px);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-sm);
        }

        .service-icon i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: var(--space-sm);
        }

        .service-card p:first-of-type {
            font-style: italic;
            font-size: 0.8rem;
            color: var(--text-muted);
            border-left: 3px solid var(--primary);
            padding-left: 12px;
            margin-bottom: 12px;
        }

        .service-card p:first-of-type::before {
            content: '"';
            font-size: 1.2rem;
            color: var(--primary);
        }

        .service-card p:first-of-type::after {
            content: '"';
            font-size: 1.2rem;
            color: var(--primary);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            transition: gap 0.2s;
        }

        .service-link:hover {
            gap: 10px;
        }

        .product-content .service-link {
            margin-top: 14px;
        }

        .brand-card .service-link {
            margin-top: 14px;
        }

        .brand-card .service-link i {
            font-size: 0.85rem;
            margin-bottom: 0;
            color: var(--primary) !important;
        }

        .products {
            position: relative;
        }

        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(var(--primary-rgb), 0.03) 50%, transparent 100%);
            pointer-events: none;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
        }

        .product-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            align-items: start;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            border-color: var(--border-active);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .product-icon {
            width: 64px;
            height: 48px;
            background: transparent;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 1.75rem;
            color: var(--primary);
        }

        .product-icon img {
            width: auto;
            height: 100%;
            max-width: 64px;
            object-fit: contain;
        }

        .product-content h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        .product-content p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: var(--space-sm);
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .product-feature {
            padding: 3px 8px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 100px;
            font-size: 0.65rem;
            color: var(--primary);
            white-space: nowrap;
        }

        .licenses {
            background: var(--bg-elevated);
        }

        .licenses-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-lg);
            align-items: center;
        }

        .licenses-info h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: var(--space-sm);
            letter-spacing: -1px;
        }

        .licenses-info > p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: var(--space-md);
        }

        .license-benefits {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .benefit-text h4 {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .benefit-text p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .licenses-brands {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
        }

        .brand-card {
            background: var(--bg-base);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            text-align: center;
            transition: all 0.3s ease;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .brand-card:hover {
            border-color: var(--border-active);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .brand-card i {
            font-size: 2.5rem;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .brand-card img {
            width: auto;
            height: 48px;
            max-width: 100%;
            margin-bottom: 12px;
            object-fit: contain;
        }
        .brand-card.veritas img,
        .brand-card.zoom img {
            height: 20px;
        }

        .brand-card.goto img {
            height: 30px;
            margin-bottom: 0;
        }

        .brand-card.adobe img {
            margin-bottom: 0;
        }

        .brand-card.veeam img {
            height: 40px;
        }

        .brand-card.microsoft i { color: #00A4EF; }
        .brand-card.acronis i { color: #00B4E6; }
        .brand-card.adobe i { color: #FF0000; }
        .brand-card.veeam i { color: #00A4EF; }
        .brand-card.kaspersky i { color: #00A88E; }
        .brand-card.veritas i { color: #B7BF10; }
        .brand-card.zoom i { color: #2D8CFF; }
        .brand-card.goto i { color: #FF6B35; }
        .brand-card.microsoft img {
            height: 30px;
        }

        .brand-card.aws img,
        .brand-card.google img,
        .brand-card.autodesk img,
        .brand-card.eset img {
            height: 40px;
        }

        .brand-card.kaspersky img
         {
            height: 20px;
        }
        
        .brand-card.acronis img {
            height: 30px;
        }

        .brand-card h4 {
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .brand-card p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .contact {
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg, transparent 0%, var(--bg-elevated) 100%);
            pointer-events: none;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: var(--space-lg);
            position: relative;
            z-index: 1;
        }

        .contact-info h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: var(--space-sm);
            letter-spacing: -1px;
        }

        .contact-info > p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: var(--space-md);
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .contact-item-icon {
            width: 48px;
            height: 48px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .contact-item-text h4 {
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .contact-item-text p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .contact-social {
            display: flex;
            gap: var(--space-xs);
        }

        .contact-social a {
            width: 44px;
            height: 44px;
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .contact-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--bg-base);
        }

        .contact-form-wrapper {
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
        }

        .contact-form-wrapper h3 {
            font-size: 1.5rem;
            margin-bottom: 4px;
        }

        .contact-form-wrapper > p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: var(--space-sm);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-sm);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 500;
        }

        .form-group label span {
            color: var(--secondary);
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-base);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .form-control::placeholder {
            color: var(--text-muted);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
            cursor: pointer;
        }

        .form-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px;
            background: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            color: var(--bg-base);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
        }

        .form-privacy {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: center;
        }

        .form-privacy a {
            color: var(--primary);
            text-decoration: underline;
        }

        footer {
            background: #3BB2EE;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding: var(--space-lg) 0 var(--space-md);
            color: #FFFFFF;
        }

        .footer-col a {
            color: #FFFFFF;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: #FFFFFF;
        }

        .footer-brand p {
            color: #FFFFFF;
            font-size: 0.9rem;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 0.9rem;
            margin-bottom: var(--space-sm);
            color: #FFFFFF;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--space-lg);
            margin-bottom: var(--space-md);
        }

        .footer-brand .logo {
            margin-bottom: var(--space-sm);
        }

        .footer-brand .logo img {
            height: 64px;
        }

        .footer-brand p {
            color: #FFFFFF;
            font-size: 0.9rem;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 0.9rem;
            margin-bottom: var(--space-sm);
            color: #FFFFFF;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
            list-style: none;
        }

        .footer-col a {
            color: #FFFFFF;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: #FFFFFF;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-md);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .social-links {
            display: flex;
            gap: var(--space-xs);
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            transition: all 0.2s;
        }

        .social-links a:hover {
            background: #FFFFFF;
            border-color: #FFFFFF;
            color: #3BB2EE;
        }

        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }

            .hero-visual {
                height: 400px;
            }

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

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

            .licenses-content {
                grid-template-columns: 1fr;
            }

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

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

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

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .section-header {
                text-align: center;
            }

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

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

            .licenses-brands {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: var(--space-sm);
            }

            .hero-visual {
                display: none;
            }

            .hero {
                padding-bottom: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-md);
                text-align: center;
            }

            .footer-brand {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-brand .logo {
                justify-content: center;
            }

            .footer-brand p {
                margin-left: auto;
                margin-right: auto;
            }

            .footer-col {
                text-align: center;
            }

            .footer-col ul {
                align-items: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: var(--space-sm);
                text-align: center;
                align-items: center;
            }

            .licenses-brands {
                grid-template-columns: 1fr;
            }

            .licenses-brands .brand-card h4 {
                font-size: 1.1rem;
            }

            .licenses-brands .brand-card p {
                font-size: 0.9rem;
            }

            .brand-card.adobe img {
                margin-bottom: 12px;
            }

            .brand-card.goto img {
                margin-bottom: 12px;
            }

            .hero-cta {
                flex-direction: column;
                gap: var(--space-sm);
            }

            .hero-cta .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-content {
                text-align: center;
            }

            .hero h1 {
                text-align: center;
            }

            .hero-tag {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
                text-align: center;
            }

            section:not(.hero) {
                padding: var(--space-md) 0;
            }

            section.licenses .btn,
            section.licenses .btn-whatsapp {
                display: block;
                width: 100%;
                margin: 8px 0;
                text-align: center;
                justify-content: center;
            }

            .menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                background: transparent;
                border: none;
                cursor: pointer;
                font-size: 1.5rem;
                color: var(--text-primary);
            }

            .desktop-only {
                display: none;
            }

            .mobile-nav-trigger {
                display: none;
            }
        }
