/* Hero Section - Banner Rotativo e Carrossel de Lives */
.hero-section {
    margin-bottom: 3rem;
}

/* Banner Rotativo (quando NÃO há lives) */
.featured-banner {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    background-size: cover;
    background-position: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.banner-badge {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.banner-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.banner-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-meta-item i {
    color: #ff0000;
}

.banner-actions {
    display: flex;
    gap: 1rem;
}

.banner-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-btn-primary {
    background: #ff0000;
    color: #fff;
}

.banner-btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,0,0,0.4);
}

.banner-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.banner-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.banner-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.banner-prev,
.banner-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: #ff0000;
    width: 30px;
    border-radius: 6px;
}

/* Carrossel de Lives (quando HÁ lives) */
.live-carousel {
    width: 100%;
}

.carousel-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-dot {
    color: #ff0000;
    animation: pulse 2s infinite;
}

.live-carousel-container {
    position: relative;
    padding: 0 60px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.live-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.live-carousel-track::-webkit-scrollbar {
    display: none;
}

.live-card {
    flex: 0 0 350px;
    background: #212121;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.live-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,0,0,0.3);
}

.live-card-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.live-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.live-card:hover .live-card-thumbnail img {
    transform: scale(1.1);
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff0000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
}

.live-viewers {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-card-info {
    padding: 16px;
}

.live-card-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.live-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ff0000;
    object-fit: cover;
}

.live-card-channel-info {
    flex: 1;
}

.live-card-channel-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.live-card-subscribers {
    font-size: 0.85rem;
    color: #aaa;
}

.live-card-subscribe {
    padding: 8px 16px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.live-card-subscribe:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.live-card-subscribe.subscribed {
    background: #303030;
}

.live-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-card-category {
    font-size: 0.85rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Animações */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Responsivo */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-actions {
        flex-direction: column;
    }
    
    .banner-btn {
        width: 100%;
        justify-content: center;
    }
    
    .live-card {
        flex: 0 0 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .live-carousel-container {
        padding: 0 50px;
    }
}
