/* ==========================================================================
   CSS EXCLUSIVO - PÁGINA DE ARTISTAS / ELENCO
   ========================================================================== */

.artistas-page-container {
    padding: 140px 8% 80px 8%;
    min-height: 80vh;
}

/* Container do campo de busca */
.search-box-container {
    margin-bottom: 40px;
    width: 100%;
}

/* Barra de busca premium */
.search-box-container .form-group input {
    width: 100%;
    padding: 15px 25px;
    background-color: var(--bg-card);
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-box-container .form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 239, 0, 0.2);
    background-color: #151515;
}

.search-box-container .form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Grid de artistas blindado */
.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Card individual do artista */
.artist-card {
    background-color: var(--bg-card);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #151515;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Wrapper da foto redonda */
.artist-avatar-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1f1f1f;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.artist-card:hover .artist-avatar-wrapper {
    border-color: var(--accent);
}

.artist-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.artist-card .artist-role {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVIDADE DA PÁGINA */
@media (max-width: 768px) {
    .artistas-page-container {
        padding: 100px 5% 60px 5%;
    }
    
    .artistas-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .artist-card {
        padding: 20px 15px;
    }

    .artist-avatar-wrapper {
        width: 130px;
        height: 130px;
    }
}