.streaming-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.streaming-card {
    background: #111;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 300px;
    flex: 1 1 300px;
    transition: transform 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.streaming-card:hover {
    transform: scale(1.05);
}

.streaming-img {
    width: 100%;
    display: block;
}

.logo-img {
    width: 150px;
    max-height: 100px;
    object-fit: contain;
    display: block;
    margin: 20px auto 10px auto;
}


.streaming-info {
    padding: 15px;
    text-align: center;
}

.streaming-info h3 {
    margin-bottom: 10px;
}

.streaming-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-streaming {
    background-color: #E50914;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-streaming:hover {
    background-color: #b20710;
}

/* Área do vídeo */
.streaming-video {
    flex: 1 1 500px;
    max-width: 600px;
    aspect-ratio: 16 / 9;
}


.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
}

/* Carrossel mais estreito no desktop */
#clubeCarousel {
    width: 100%;
    max-width: 530px;
    padding: 0 15px;
    margin: 0 auto;
}
/* Garante que a imagem se ajuste bem dentro do espaço */
#clubeCarousel .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
