
/* Marquee de Logos */
#streaming-container .marquee-wrapper { 
    margin: 30px 0; 
    width: 100%; 
    overflow: hidden; 
    position: relative; 
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); 
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); 
}

#streaming-container .marquee-track { 
    display: flex; 
    width: max-content; 
    align-items: center; 
    will-change: transform; 
    animation: marqueeSlide 40s linear infinite; 
}

@keyframes marqueeSlide { 
    from { transform: translate3d(0, 0, 0); } 
    to { transform: translate3d(-50%, 0, 0); } 
}

#streaming-container .streaming-track { gap: 50px; }

#streaming-container .streaming-item img { 
    height: 32px; 
    opacity: 0.9; 
    transition: all 0.3s ease; 
    mix-blend-mode: multiply; 
    filter: none; 
}

#streaming-container .streaming-item:hover img { 
    opacity: 1; 
    transform: scale(1.15); 
}

/* Créditos e Contato */
#streaming-container .music-credits { 
    margin: 30px 0; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    font-size: 1.15rem; 
}

#streaming-container .credit-name { 
    font-weight: 600; 
    color: var(--primary-green); 
}

#streaming-container .social-row { 
    display: flex; 
    gap: 12px; 
    margin: 35px 0; 
    justify-content: center; 
    flex-wrap: wrap; 
}

#streaming-container .social-link img { 
    width: 26px; 
    height: 26px; 
    opacity: 0.8; 
    transition: transform 0.3s ease; 
}

#streaming-container .social-link:hover img { 
    transform: translateY(-4px); 
    opacity: 1; 
}

#streaming-container .phoneNumber { 
    margin-top: 40px; 
    font-size: 2rem; 
    font-weight: 400; 
}

#streaming-container .phoneNumber a { 
    color: var(--text-dark); 
    text-decoration: none; 
}
