/* Filters Styling */
.wpp-filters {
    margin: 20px 0;
    font-family: inherit;
}

.wpp-search-input, .wpp-country-select {
    border: 1px solid var(--wpp-border-color, #ccc);
    transition: border-color 0.3s ease;
}

.wpp-search-input:focus, .wpp-country-select:focus {
    outline: none;
    border-color: var(--wpp-text-color, #e4fc03);
}

.ocultar {
    display: none !important;
}

/* Base Grid Layout */
.wpp-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
    margin: 20px 0;
}

.item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--wpp-item-bg, #1f1b18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 199px;
    height: 199px;
    border: 1px solid #333;
    border-radius: var(--wpp-radius, 12px);
}

.item:hover {
    transform: scale(var(--wpp-hover-scale, 1.04));
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: var(--wpp-text-color, #e4fc03);
}

.item img {
    max-width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

/* Overlay Effect */
.sobre {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wpp-overlay-bg, rgba(1, 2, 252, 0.4));
    color: var(--wpp-text-color, #e4fc03);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
}

.nombre {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    color: var(--wpp-text-color, #e4fc03);
}

/* Profile Styling */
.wpp-profile-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.wpp-profile-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wpp-profile-country {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.wpp-profile-main-img, .wpp-slider-wrap {
    margin-bottom: 30px;
    border-radius: var(--wpp-radius, 12px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.wpp-profile-main-img img, .wpp-slider-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.wpp-profile-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.wpp-profile-info {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Social Media - Divi Inspired */
.wpp-social-wrap {
    margin: 30px 0;
}

.et_pb_social_media_follow {
    list-style: none !important;
    padding: 0 !important;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.et_pb_social_icon {
    display: inline-block;
}

.et_pb_social_icon a.icon.p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--wpp-profile-accent, #e4fc03);
    border-radius: 50%;
    color: var(--wpp-profile-accent, #e4fc03);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.et_pb_social_icon a.icon.p:hover {
    background: var(--wpp-profile-accent, #e4fc03);
    color: #000;
}

.et_pb_social_media_follow_network_name {
    display: none; /* Hide 'Follow' text as per user design */
}

/* Multimedia */
.wpp-production-title {
    margin-top: 50px;
    font-size: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.audio, .video {
    margin-bottom: 20px;
}

/* Represented Artists Grid */
.artistas_titulo {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 40px 0 20px;
    text-align: center;
}

.wpp-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.list_artist {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.list_artist:hover {
    transform: translateY(-5px);
}

.list_artist a {
    text-decoration: none;
    color: inherit;
}

.list_artist .img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.list_artist .name {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Delegate info */
.list_delegate {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
}

.list_delegate .img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Responsiveness */
@media (max-width: 768px) {
    .wpp-profile-title {
        font-size: 2rem;
    }
    .wpp-artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

@media (max-width: 600px) {
    .item, .sobre {
        width: 145px !important;
        height: 145px !important;
    }
}

@media (max-width: 400px) {
    .item, .sobre {
        width: 100% !important;
        height: 280px !important;
    }
}


