/* ========================= */
/* ARTISTAS PAGE - ESTRUTURA CATÁLOGO */
/* ========================= */

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 30px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #9E7C53;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 0.8rem;
    color: #C9A961;
}

/* Catalog Section */
.catalog-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar de Filtros */
.catalog-sidebar {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-label {
    display: block;
    font-family: "titulo";
    font-size: 0.95rem;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-select-box,
.filter-input-box {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.filter-select-box {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.filter-input-box:focus,
.filter-select-box:focus {
    outline: none;
    border-color: #C9A961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    background: #fff;
}

.results-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), rgba(201, 169, 97, 0.1));
    border-radius: 12px;
    border-left: 4px solid #C9A961;
}

.results-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.results-info strong {
    color: #C9A961;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Catalog Content */
.catalog-content {
    min-height: 500px;
}

.catalog-header {
    margin-bottom: 3rem;
}

.catalog-title {
    font-family: "titulo";
    font-size: 3rem;
    letter-spacing: 8px;
    color: #2b2b2b;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.catalog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C9A961, transparent);
}

/* Artistas Grid */
.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

/* Artista Card Full */
.artista-card-full {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.artista-card-full.visible {
    opacity: 1;
    transform: translateY(0);
}

.artista-card-full:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(201, 169, 97, 0.2);
}

.artista-image-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: linear-gradient(135deg, #C9A961 0%, #b89440 100%);
}

.artista-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.artista-card-full:hover .artista-image {
    transform: scale(1.08);
}

.artista-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #b89440 50%, #9E7C53 100%);
    position: relative;
    overflow: hidden;
}

.artista-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.placeholder-initial {
    font-size: 8rem;
    color: white;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.artista-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(43, 43, 43, 0.95) 0%,
        rgba(43, 43, 43, 0.6) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artista-card-full:hover .artista-overlay {
    opacity: 1;
}

.overlay-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #C9A961;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.overlay-link:hover {
    gap: 20px;
    color: #fff;
}

.overlay-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.overlay-link:hover .overlay-icon {
    transform: translateX(5px);
}

/* Artista Content */
.artista-content {
    padding: 2.5rem;
}

.artista-name {
    font-family: "titulo";
    font-size: 2rem;
    color: #2b2b2b;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.artista-card-full:hover .artista-name {
    color: #C9A961;
}

.artista-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C9A961, transparent);
    margin-bottom: 1.5rem;
    transition: width 0.5s ease;
}

.artista-card-full:hover .artista-divider {
    width: 100px;
}

.artista-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.artista-bio {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-left: 3px solid #C9A961;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.bio-preview {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.artista-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C9A961;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.artista-link:hover {
    gap: 15px;
    color: #9E7C53;
}

.link-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.artista-link:hover .link-arrow {
    transform: translateX(5px);
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: "titulo";
    font-size: 2rem;
    color: #2b2b2b;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #C9A961, #b89440);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #b89440, #9E7C53);
}

/* CTA Section */


/* Responsive Design */
@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 250px 1fr;
        gap: 35px;
    }
    
    .catalog-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    
    .artistas-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .catalog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .results-info {
        grid-column: 1 / -1;
    }
    
    .catalog-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .artistas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .artista-image-wrapper {
        height: 350px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .breadcrumb-section {
        padding: 20px 20px 15px;
    }
    
    .catalog-section {
        padding: 40px 20px;
    }
    
    .catalog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .catalog-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
    
    .artista-name {
        font-size: 1.6rem;
    }
    
    .artista-content {
        padding: 2rem;
    }
    
    .artista-image-wrapper {
        height: 300px;
    }
    
    .placeholder-initial {
        font-size: 6rem;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}