
.carousel8-container {
            width: 100%;
            max-width: 1400px;
            position: relative;
            padding: 40px 0;
        }

        .carousel8-title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-weight: bold;
        }

        .carousel8-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 60px;
        }

        .carousel8-track {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.3) transparent;
            padding: 20px 0;
            -webkit-overflow-scrolling: touch;
        }

        .carousel8-track::-webkit-scrollbar {
            height: 8px;
        }

        .carousel8-track::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }

        .carousel8-track::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.3);
            border-radius: 10px;
        }

        .carousel8-track::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,0.5);
        }

        .brand-card {
            min-width: 200px;
            height: 150px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            cursor: pointer;
            position: relative;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
        }

        .brand-card img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transition: all 0.5s ease;
            filter: grayscale(20%);
        }

        /* Efectos espectaculares en hover */
        .brand-card:hover {
            transform: scale(1.2) translateY(-20px) rotate(5deg);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4), 
                        0 0 40px rgba(255,255,255,0.3),
                        inset 0 0 20px rgba(255,255,255,0.2);
            z-index: 10;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        }

        .brand-card:hover::before {
            left: 100%;
        }

        .brand-card:hover img {
            transform: scale(1.1) rotate(-5deg);
            filter: grayscale(0%) drop-shadow(0 5px 15px rgba(0,0,0,0.3));
        }

        /* Efecto de partículas al hacer hover */
        .brand-card::after {
            content: '✨';
            position: absolute;
            font-size: 30px;
            opacity: 0;
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .brand-card:hover::after {
            opacity: 1;
            animation: sparkle 1s infinite;
        }

        @keyframes sparkle {
            0%, 100% { 
                transform: translate(0, 0) scale(0.8); 
                opacity: 0;
            }
            50% { 
                transform: translate(10px, -10px) scale(1.2); 
                opacity: 1;
            }
        }

        /* Botones de navegación */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 5;
        }

        .nav-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .nav-button.prev {
            left: 0;
        }

        .nav-button.next {
            right: 0;
        }

        /* Indicadores de scroll */
        .scroll-indicator {
            text-align: center;
            margin-top: 20px;
            color: white;
            font-size: 14px;
            opacity: 0.7;
        }

        .scroll-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .carousel8-title {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .carousel8-wrapper {
                padding: 20px 40px;
            }

            .brand-card {
                min-width: 150px;
                height: 120px;
            }

            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .brand-card:hover {
                transform: scale(1.15) translateY(-15px) rotate(3deg);
            }
        }

        @media (max-width: 480px) {
            .carousel8-title {
                font-size: 1.4rem;
            }

            .carousel8-wrapper {
                padding: 20px 35px;
            }

            .brand-card {
                min-width: 130px;
                height: 100px;
            }

            .carousel8-track {
                gap: 15px;
            }

            .nav-button {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        /* Animación de entrada */
        .brand-card {
            animation: fadeInUp 0.6s ease backwards;
        }

        .brand-card:nth-child(1) { animation-delay: 0.1s; }
        .brand-card:nth-child(2) { animation-delay: 0.2s; }
        .brand-card:nth-child(3) { animation-delay: 0.3s; }
        .brand-card:nth-child(4) { animation-delay: 0.4s; }
        .brand-card:nth-child(5) { animation-delay: 0.5s; }
        .brand-card:nth-child(6) { animation-delay: 0.6s; }
        .brand-card:nth-child(7) { animation-delay: 0.7s; }
        .brand-card:nth-child(8) { animation-delay: 0.8s; }
        .brand-card:nth-child(9) { animation-delay: 0.9s; }
        .brand-card:nth-child(10) { animation-delay: 1s; }
        .brand-card:nth-child(11) { animation-delay: 1.1s; }
        .brand-card:nth-child(12) { animation-delay: 1.2s; }
        .brand-card:nth-child(13) { animation-delay: 1.3s; }
        .brand-card:nth-child(14) { animation-delay: 1.4s; }
        .brand-card:nth-child(15) { animation-delay: 1.5s; }
        .brand-card:nth-child(16) { animation-delay: 1.6s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
       

     

       

        