.manuales-section {
    margin-block: var(--space-24);
}

.manuales-section .titles_epower h2{
    text-align: center;
    font-weight: 700;
    margin-bottom: var(--space-8);
}

.manuales-section .filtros {
    text-align: center;
    margin-bottom: var(--space-8);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.grid-manuales {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.manual {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 8px 20px 0px rgba(0, 0, 0, 0.10);
    min-height: 250px;
}

.manual img {
    width: 100%;
    height: auto;
    max-height: 280px;
    height: 280px;
    object-fit: cover;
}

.manual.oculto {
    display: none !important;
}

.manuales-section button {
    border: none;
}

.manuales-section .content-manual {
    padding: var(--space-5);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.manuales-section .content-manual .cat {
    color: var(--primary-color);
    font-size: var(--fs-12);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: var(--space-3);
}

.manuales-section .content-manual .head-manual i {
    font-size: var(--fs-50);
    color: var(--primary-color);
    margin-bottom: var(--space-3);
}

.manuales-section .content-manual h3 {
    font-size: var(--fs-18);
    font-weight: 500;
    margin-bottom: var(--space-3);
}

.manuales-section .content-manual p:not(.cat) {
    font-size: var(--fs-18);
    margin-bottom: 0;
}

.manuales-section .content-manual a {
    width: 100%;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.manuales-section .loadmore {
    margin-top: var(--space-8);
    display: flex;
    justify-content: center;
}

.manuales-section .filtros button {
    font-size: var(--fs-18);
    font-family: var(--primary-font);
    color: var(--quinary-color);
    border: 1px solid var(--quinary-color);
    border-radius: 60px;
    padding: 10px 18px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.manuales-section .filtros button.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.manuales-section .filtros button.active::after {
    content: '\F272';
    font-family: 'bootstrap-icons';
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-top: 0px;
    line-height: normal;
    top: 3px;
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .grid-manuales {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .grid-manuales {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-manuales {
        grid-template-columns: repeat(1, 1fr);
    }
}