.categoriesfundo {
        backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
}
.anuncio_vertical_cat {
    height: 100%;
    display: flex;
    align-items: stretch;
    height: 100%;
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 67px;
}
.anuncio_vertical_cat2 {
    width: 389px;
    display: flex;
    align-items: stretch;
    height: 100%;
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 67px;
}
.categories-and-posts {
    display: flex; /* Define o contêiner como Flexbox */
    gap: 20px; /* Espaçamento entre os elementos */
    margin-bottom: 20px;
    padding: 0px;
    flex-wrap: nowrap; /* Mantém os itens lado a lado em telas grandes */
}

.posts-category {
    width: 70%; /* Largura principal para o conteúdo */
    flex-grow: 1; /* Permite que cresça conforme necessário */
}

.ads-and-top5-cat {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    width: 30%;
}

@media (max-width: 768px) {
    .categories-and-posts {
        flex-direction: column; /* Empilha os itens em telas pequenas */
        gap: 15px;
    }

    .post-recomendado-diario-cat,
    .top5-section-cat {
        margin: 20px 15px;
    }

    .posts-category,
    .ads-and-top5-cat {
        width: 100%; /* Itens ocupam 100% da largura */
    }
    .anuncio_vertical_cat,
    .anuncio_vertical_cat2 {
    display: none;
}
}
h2.category-posts-title {
    margin-left: 25px;
}
@media (min-width: 1028px) {
    .content-cat {
        margin-left: 60px;
        margin-right: 60px;
    }
    .categories-and-posts {
    display: flex; /* Define o contêiner como Flexbox */
    gap: 20px; /* Espaçamento entre os elementos */
    margin-bottom: 20px;
    padding: 15px;
    flex-wrap: nowrap; /* Mantém os itens lado a lado em telas grandes */
}
.anuncio_cat {
    display: flex;
    align-items: stretch;
    height: 100%;
    margin-left: 9px;
    margin-right: 6px;
    margin-top: 14px;
    margin-bottom: 69px;
}
}
.top5-gridcat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.top5-itemcat {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.top5-linkcat {
    text-decoration: none;
    color: inherit;
    display: block;
}

.top5-thumbnailcat {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.top5-imgcat {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top5-progresscat {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 90px;
    height: 90px;
}

.progress-circlecat {
    position: relative;
    width: 90px;
    height: 90px;
}

.progress-ring-topcat {
    transform: rotate(145deg);
    transform-origin: 50% 50%;
}

.progress-ring-bg-topcat {
    stroke: #e0e0e0;
    stroke-width: 5;
    fill: transparent;
}

.progress-ring-fill-topcat {
    stroke: #f1c40f;
    stroke-width: 5;
    fill: transparent;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.6s ease;
}

.progress-textcat {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: bold;
    color: #f1c40f;
}

.top5-contentcat {
    position: absolute;
    z-index: 2;
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
}
.top5-contentcat h3 {
    font-size: 16px;
    color: #fff;
}
.top5-post-overlaycat {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 65%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.top5-titlecat {
    font-size: 16px;
    margin: 0;
    color: #fff;
    text-align: left;
}

.top5-metacat {
    font-size: 0.85rem;
    color: #777;
    display: none;
}
.no-postscat {
    text-align: center;
    color: #666;
}