body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #343a40;
}

.page-header {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.page-header h1 { font-size: 2.8em; margin: 10px 0; }
.page-header p { font-size: 1.2em; max-width: 600px; margin: 0 auto; color: #ced4da; }
.back-home-link { position: absolute; top: 20px; left: 20px; color: #fff; text-decoration: none; }

.filter-nav {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 999;
    white-space: nowrap;
    overflow-x: auto;
}
.filter-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.filter-nav a:hover { color: #007bff; background-color: #e9ecef; }
.filter-nav a.active { background-color: #007bff; color: white; }

.artists-container { max-width: 1280px; margin: 40px auto; padding: 0 20px; }
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.no-artists { grid-column: 1 / -1; text-align: center; font-size: 1.2em; color: #6c757d; padding: 50px; }

.artist-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artist-card:hover { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
.artist-card-image img { width: 100%; height: 250px; object-fit: cover; display: block; }
.artist-card-info { padding: 20px; }
.artist-card-info h3 { margin: 0 0 10px 0; font-size: 1.3em; }
.artist-card-info .artist-areas {
    font-size: 0.9em;
    color: #6c757d;
    height: 3.6em; /* Limita a 2 o 3 líneas de texto */
    line-height: 1.8em;
    overflow: hidden;
}