.card-loading {
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.card-loading-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton {
    background: linear-gradient(90deg, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: loading 1.2s infinite;
    border-radius: 3px;
}

.skeleton-img {
    width: 100%;
    height: 140px;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.skeleton-title {
    width: 70%;
    height: 16px;
}

.skeleton-text {
    width: 100%;
    height: 12px;
}

.skeleton-text.short {
    width: 50%;
}

.skeleton-h1 {
    width: 100%;
    height: 36px;
    margin-bottom: 7px;
}

p.skeleton.skeleton-text {
    height: 21px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.filtro-ativo {
    background-color: var(--cor-borda);
    border-radius: 3px;
    padding: 5px;
    color: #000;
}

.filtro-ativo span {
    font-size: 28px;
    position: relative;
    top: 1px;
    color: #000;
     font-weight: 600;
}

.dist{
    color: var(--cor-principal-2);
}