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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f5f5f5;
            padding: 0;
        }

        .container8 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Estilos del Título */
        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 48px;
            font-weight: bold;
            color: #222;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .header h1 .highlight {
            color: #0066cc;
        }

        .header p {
            font-size: 18px;
            color: #666;
        }

        /* Contenedor del Carrusel */
        .carousel-container {
            overflow: hidden;
            position: relative;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px 0;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Track del carrusel */
        .carousel-track {
            display: flex;
            width: max-content;
            animation: scroll 60s linear infinite;
        }

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

        .carousel-container:hover .carousel-track {
            animation-play-state: paused;
        }

        /* Contenedor de logos */
        .logos-wrapper {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 0 40px;
        }

        /* Elemento del logo */
        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            height: 120px;
            flex-shrink: 0;
        }

        /* Imagen del logo */
        .logo-image {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%) brightness(1.2);
            opacity: 0.7;
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .logo-item:hover .logo-image {
            filter: grayscale(0%) brightness(1);
            opacity: 1;
            transform: scale(1.08);
        }

        /* Gradientes laterales */
        .carousel-gradient-left {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 150px;
            background: linear-gradient(to right, #f5f5f5, transparent);
            z-index: 10;
            pointer-events: none;
        }

        .carousel-gradient-right {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 150px;
            background: linear-gradient(to left, #f5f5f5, transparent);
            z-index: 10;
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 40px 15px;
            }

            .header h1 {
                font-size: 32px;
            }

            .header p {
                font-size: 16px;
            }

            .carousel-container {
                padding: 20px 0;
            }

            .logos-wrapper {
                gap: 30px;
                padding: 0 20px;
            }

            .logo-item {
                min-width: 150px;
                height: 100px;
            }

            .carousel-gradient-left,
            .carousel-gradient-right {
                width: 100px;
            }
        }