        body {
            margin: 0;
            overflow-x: hidden;
            overflow-y: auto;
            background-color: transparent;
            /* Permite ver el canvas al estar en z-index -1 */
        }

        canvas {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: white;
            /* El fondo base sobre el que actúan las partículas */
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(5px);
        }

        .nav-container {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            justify-content: center;
            padding: 0 20px;
            gap: 60px;
        }

        .header-logo {
            display: flex;
            align-items: center;
        }

        .header-logo img {
            max-height: 70px;
            width: auto;
            display: block;
        }

        header nav {
            display: flex;
            gap: 40px;
        }

        header nav a {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #003366;
            font-family: sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: color 0.4s ease;
            overflow: visible;
            /* To allow particles out */
            padding-bottom: 3px;
        }

        header nav a:hover {
            color: #007bb5;
            text-shadow: 0 0 20px rgba(0, 123, 181, 0.3);
        }

        /* Mobile Menu Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            margin-left: auto;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background-color: #003366;
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            font-family: sans-serif;
            font-size: 0.85rem;
            color: #003366;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(5px);
            text-align: center;
            padding: 0 10px;
        }

        .logo-cloud {
            position: relative;
            margin: 0 auto 100px;
            width: 750px;
            max-width: 95%;
            overflow: hidden;
            padding: 20px 0;
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            z-index: 50;
        }

        .logo-cloud::before,
        .logo-cloud::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background-color: rgba(150, 150, 150, 0.4);
            z-index: 10;
        }

        .logo-cloud::before {
            top: 0;
        }

        .logo-cloud::after {
            bottom: 0;
        }

        .infinite-slider {
            display: flex;
            width: max-content;
            animation: scroll-left 30s linear infinite;
        }

        .infinite-slider:hover {
            animation-play-state: paused;
        }

        .slide-track {
            display: flex;
            gap: 80px;
            padding-right: 80px;
        }

        .slide-track img {
            height: 50px;
            object-fit: contain;
            pointer-events: auto;
            user-select: none;
            opacity: 0.7;
            transition: opacity 0.3s, transform 0.3s;
        }

        .slide-track img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            header {
                background-color: #ffffff;
                backdrop-filter: none;
            }

            .nav-container {
                justify-content: flex-start;
            }

            .header-logo {
                position: static;
                transform: none;
                margin-right: 0;
            }

            .header-logo img {
                max-height: 50px;
            }

            .menu-toggle {
                display: flex;
            }

            header nav {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #ffffff;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: 0.4s ease;
                backdrop-filter: none;
            }

            header nav.active {
                right: 0;
            }

            .logo-cloud {
                bottom: 50px;
                padding: 10px 0;
            }

            .slide-track {
                gap: 40px;
                padding-right: 40px;
            }

            .slide-track img {
                height: 35px;
            }
        }

        .workspace-container {
            padding: 120px 20px 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            min-height: calc(100vh - 120px);
            position: relative;
            z-index: 10;
        }

        .white-card {
            background-color: #ffffff;
            width: 100%;
            max-width: 1100px;
            border-radius: 40px;
            padding: 40px 60px;
            border: 1px solid #edf2f7;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            /* Center content vertically */
        }

        .card-left {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-left svg {
            width: 100%;
            height: auto;
            color: #ccc;
            /* Muted color for paths */
        }

        /* Orb animation keyframes */
        @keyframes cpu-orb-1 {
            0% {
                offset-distance: 0%;
            }

            100% {
                offset-distance: 100%;
            }
        }

        .card-right {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 20px;
        }

        .white-card h1 {
            font-family: sans-serif;
            font-size: 1.6rem;
            color: #111;
            margin: 0;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .white-card .card-desc {
            font-family: sans-serif;
            font-size: 1rem;
            color: #334155;
            margin: 0;
            font-weight: 400;
            line-height: 1.8;
            text-align: justify;
        }

        @media (max-width: 1024px) {
            .workspace-container {
                padding: 100px 20px 60px;
            }

            .white-card {
                padding: 40px 40px;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {

            .white-card,
            .card-hover-container {
                grid-template-columns: 1fr !important;
                padding: 30px 20px !important;
                gap: 30px !important;
                border-radius: 25px !important;
            }

            .workspace-container {
                padding: 100px 15px 60px;
                gap: 20px;
            }

            .white-card h1 {
                font-size: 1.3rem;
            }

            .card-left svg {
                max-height: 250px;
            }

            .logo-cloud {
                margin: 0 auto;
                width: 90%;
            }
        }

        .highlight-group {
            position: relative;
        }

        .card-hover-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            padding: 30px;
            background-color: transparent;
            transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            border: 1px solid transparent;
        }

        .card-hover-container:hover {
            box-shadow: -15px -15px 50px rgba(0, 123, 181, 0.15), 15px 15px 50px rgba(0, 51, 102, 0.15) !important;
            border-color: rgba(0, 123, 181, 0.2) !important;
        }

        .card-hover-container::before {
            content: "";
            pointer-events: none;
            position: absolute;
            left: -192px;
            top: -192px;
            width: 384px;
            height: 384px;
            transform: translate(var(--mouse-x, -999px), var(--mouse-y, -999px));
            border-radius: 50%;
            background-color: rgba(0, 123, 181, 0.4);
            /* Blue custom color */
            opacity: 0;
            filter: blur(80px);
            transition: opacity 0.5s;
            z-index: 0;
        }

        .card-hover-container:hover::before {
            opacity: 0.8;
        }

        .particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .card-hover-container:hover .particles-canvas {
            opacity: 1;
        }

        .card-content {
            position: relative;
            z-index: 10;
        }

        /* Nav Sparkle Particles */
        .nav-sparkle {
            position: absolute;
            pointer-events: none;
            border-radius: 50%;
            background: rgba(0, 123, 181, 0.4);
            box-shadow: 0 0 6px rgba(0, 123, 181, 0.4), 0 0 14px rgba(0, 123, 181, 0.2);
            z-index: 9999;
            animation: nav-sparkle-float 1.5s ease-out forwards;
        }

        @keyframes nav-sparkle-float {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }

            30% {
                opacity: 0.5;
            }

            100% {
                transform: translate(var(--sdx), var(--sdy)) scale(0);
                opacity: 0;
            }
        }