/* Quality Shows Grid v3.7.4 - Final simplificado */

* {
    box-sizing: border-box;
}

.quality-shows-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
}

.quality-shows-search {
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
}

.quality-shows-search input[type="text"] {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #dee2e6;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.quality-shows-search input[type="text"]:focus {
    border-color: #13B100;
    box-shadow: 0 0 0 3px rgba(19, 177, 0, 0.1);
}

.quality-shows-search input[type="text"]::placeholder {
    color: #999;
}

.quality-shows-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.quality-shows-filter-toggle:hover {
    border-color: #adb5bd;
    color: #333;
}

.quality-shows-filter-toggle.active {
    background: #13B100;
    color: white;
    border-color: #13B100;
}

.quality-shows-filter-toggle svg {
    width: 16px;
    height: 16px;
}

.quality-shows-filters {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    user-select: none;
}

.filter-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #13B100;
}

.quality-shows-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .quality-shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (min-width: 1200px) {
    .quality-shows-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1600px) {
    .quality-shows-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 45px;
        max-width: 1800px;
        margin: 0 auto;
    }
}

.show-card {
    background: transparent;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
}

.show-card:hover {
    transform: translateY(-8px);
}

.show-image {
    position: relative;
    width: 100%;
    padding-top: 41.67%;
    overflow: hidden;
    background: transparent;
    border-radius: 12px;
    margin: 0 0 15px 0;
}

.show-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.show-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.show-card:hover .show-image img {
    transform: scale(1.03);
}

.show-image .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    font-weight: 600;
    background: #f0f0f0;
    border-radius: 12px;
}

.show-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.show-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

.show-badge-premium {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
}

.show-badge-vip {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
}

.show-info {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.show-info-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.show-buttons {
    flex-shrink: 0;
}

.show-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-date {
    font-size: 14px;
    color: #666666;
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-button {
    background: #13B100;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.show-button:hover {
    background: #0f9500;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(19, 177, 0, 0.4);
}

@media (max-width: 767px) {
    .quality-shows-wrapper {
        padding: 0 10px;
    }

    .show-info {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px;
    }

    .show-title {
        font-size: 16px;
    }

    .show-date {
        font-size: 12px;
        max-width: 60%;
    }

    .show-button {
        font-size: 10px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .show-title {
        font-size: 14px;
    }

    .show-date {
        font-size: 11px;
        max-width: 55%;
    }

    .show-button {
        font-size: 9px;
        padding: 5px 12px;
    }
}
