/* Estilos para a página de bandas */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6));
    border-radius: 1rem;
    margin: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-color), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Seção de destaque */
.featured-collab {
    margin: 2rem;
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.collab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.collab-header h2 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--accent-color), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-filters {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    background: transparent;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: var(--background-color);
}

.nav-btn.active {
    background: var(--accent-color);
    color: var(--background-color);
    border: none;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.featured-cover {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.featured-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--background-color);
}

.featured-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-info h3 {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.featured-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.artists-collab {
    display: flex;
    gap: 1rem;
}

.artist-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.artist-avatar img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.artist-avatar span {
    color: var(--text-color);
    font-weight: 500;
}

.collab-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.collab-stats span {
    color: rgba(255, 255, 255, 0.8);
}

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

.play-btn, .share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.play-btn {
    background: var(--accent-color);
    color: var(--background-color);
    border: none;
}

.share-btn {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.play-btn:hover, .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Grid de colaborações */
.collabs-grid {
    margin: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--accent-color), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.8rem;
    border-radius: 8px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--accent-color);
    color: var(--background-color);
}

.view-btn.active {
    background: var(--accent-color);
    color: var(--background-color);
    border: none;
}

.collabs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .featured-cover {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .collab-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .collab-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .time-filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .collabs-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .featured-collab,
    .collabs-grid {
        margin: 1rem;
    }
    
    .featured-cover {
        height: 200px;
    }
    
    .collabs-container {
        grid-template-columns: 1fr;
    }
    
    .play-btn, .share-btn {
        padding: 0.8rem 1rem;
        font-size: 0.875rem;
    }
}

/* Seção de Funções */
.band-functions {
    margin: 2rem;
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.functions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.functions-header h2 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--accent-color), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.function-filters {
    display: flex;
    gap: 1rem;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.function-card {
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.function-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.function-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.function-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.function-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.function-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--background-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.function-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsividade para Funções */
@media (max-width: 768px) {
    .functions-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .function-filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
    }
    
    .function-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .band-functions {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .functions-header h2 {
        font-size: 1.75rem;
    }
    
    .function-btn {
        padding: 0.8rem 1rem;
        font-size: 0.875rem;
    }
}

/* Seção de Colaborações Recentes */
.recent-collabs {
    margin: 2rem;
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-color), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.view-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
}

.view-more:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: translateX(4px);
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.recent-card {
    background: var(--card-background);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.recent-cover {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.recent-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-card:hover .recent-cover img {
    transform: scale(1.1);
}

.recent-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--background-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.recent-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.recent-title {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.recent-artists {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.artist-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.artist-mini:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.artist-mini img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    object-fit: cover;
}

.artist-mini span {
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.recent-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Responsividade para Colaborações Recentes */
@media (max-width: 1024px) {
    .recent-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .recent-cover {
        height: 220px;
    }
    
    .recent-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .recent-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .recent-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .recent-cover {
        height: 200px;
    }
    
    .recent-info {
        padding: 1.25rem;
    }
    
    .artist-mini {
        padding: 0.4rem 0.6rem;
    }
    
    .artist-mini img {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 480px) {
    .recent-collabs {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .recent-header h2 {
        font-size: 1.75rem;
    }
    
    .recent-grid {
        grid-template-columns: 1fr;
    }
    
    .recent-cover {
        height: 220px;
    }
    
    .recent-title {
        font-size: 1.25rem;
    }
    
    .artist-mini {
        padding: 0.3rem 0.5rem;
    }
    
    .artist-mini img {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .stat-item {
        padding: 0.4rem 0.6rem;
    }
}

/* Seção de Destaque da Semana */
.featured-week {
    margin: 2rem;
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-week-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-color), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    gap: 2rem;
    padding: 1rem;
}

.slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-image {
    flex: 1;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slide-artist {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.slide-artist:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.slide-artist img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    object-fit: cover;
}

.slide-artist span {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

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

.slide-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

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

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Responsividade para o Slider */
@media (max-width: 1024px) {
    .slider-container {
        height: 350px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-artist img {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 500px;
    }
    
    .slide {
        flex-direction: column;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-image {
        height: 200px;
    }
    
    .slide-actions {
        flex-direction: column;
    }
    
    .slide-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .featured-week {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .slider-container {
        height: 450px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-artist {
        padding: 0.5rem 0.75rem;
    }
    
    .slide-artist img {
        width: 2rem;
        height: 2rem;
    }
    
    .nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
} 