/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2025 | 19:15:33 */
        .iw_carousel_container {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            background: #fff;
        }
        .iw_carousel_track {
            display: flex;
            animation: iw_scroll 30s linear infinite;
            width: calc(200% + 80px);
            transition: all 3s ease-in-out;
        }
        .iw_carousel_track:hover {
            animation-play-state: paused;
        }
        .iw_sponsor_item {
            min-width: 200px;
            height: 100px;
            margin: 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .iw_sponsor_logo {
            max-width: 180px;
            max-height: 80px;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: grayscale(100%) opacity(0.8) sepia(1) hue-rotate(200deg) saturate(0.1);
        }
        .iw_sponsor_item:hover .iw_sponsor_logo {
            transform: scale(1.05);
            filter: none;
        }
        @keyframes iw_scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        /* Responsivo */
        @media (max-width: 768px) {
            .iw_sponsor_item {
                min-width: 150px;
                height: 80px;
                margin: 0 10px;
            }
            
            .iw_sponsor_logo {
                max-width: 130px;
                max-height: 60px;
            }
        }
        @media (max-width: 480px) {
            .iw_sponsor_item {
                min-width: 120px;
                height: 70px;
                margin: 0 10px;
            }
            
            .iw_sponsor_logo {
                max-width: 100px;
                max-height: 50px;
            }
        }