.soluciones-card {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.soluciones-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.soluciones-title {
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1;
    padding-bottom: 1.5rem;
}

.soluciones-title-small {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #5A595D;
}

.soluciones-title-light {
    font-size: 2rem;
    font-weight: 700;
    color: #5A595D;
}

/* Cards */
.soluciones-item {
    width: calc(25% - 12px);
    overflow: hidden;
    box-shadow: none !important;
    background: transparent !important;
    border: none;
}

/* Área de imagen */
.soluciones-img {
    width: 100%;
    height: 300px;
    background-color: #E8E8E8;
    object-fit: contain;
    padding: 20px;
    display: block;
}

/* Contenido */
.soluciones-body {
    background: transparent !important;
    height: auto !important;
    display: block !important;
    padding: 0.75rem !important;
}

.soluciones-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.soluciones-brand {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 !important;
    line-height: 1.2;
}

.soluciones-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 !important;
    line-height: 1.2;
}

#soluciones-pages .page-item .page-link {
    color: #111;
    background-color: #fff;
    border-color: #ddd;
}
#soluciones-pages .page-item.active .page-link {
    color: #fff;
    background-color: #DA0712;
    border-color: #DA0712;
}
#soluciones-pages .page-item:not(.active) .page-link:hover {
    color: #111;
    background-color: #f0f0f0;
    border-color: #bbb;
}
#soluciones-pages .page-item.disabled .page-link {
    color: #aaa;
    background-color: #fff;
    border-color: #ddd;
}



/* Responsive */
@media (max-width: 1199px) {
    .soluciones-item {
        width: calc(33.333% - 11px);
    }
}

@media (max-width: 991px) {
    .soluciones-item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .soluciones-item {
        width: 100%;
    }

    .soluciones-title-light {
        font-size: 2rem;
    }

    .soluciones-title-small {
        font-size: 1.3rem;
    }
}


