
        .nube-marquee-container {
            width: 100%;
            overflow: hidden;
            padding: 7px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .nube-marquee-inner {
            display: flex;
            animation: nube-marquee-scroll 25s linear infinite;
            white-space: nowrap;
        }
        
        .nube-marquee-duplicate {
            display: flex;
            white-space: nowrap;
        }
        
        .nube-marquee-item {
            display: flex;
            align-items: center;
            padding: 0 10px;
            font-size: 1.2rem;
            white-space: nowrap;
            overflow: hidden;
        }
        
        .nube-marquee-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: #a6c441 !important;
        }


        
        @keyframes nube-marquee-scroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }
    