/*
*   ROW SUB CATEGORIAS
*/
main#main .row-subcat {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap !important;
    width: 100%;
    gap: 30px;
    margin: 30px auto 0;
}
main#main .row-subcat .sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    overflow-y: hidden;
    background: #f0f0f0;
    color: #353535;
    text-decoration: none;
    flex: 0 0 288px;
    border-radius: 5px;
    padding: 0 5px 0 15px;
}
main#main .row-subcat .sub img {
    height: 90px;
    margin-top: 12px;
}
main#main .row-subcat .sub p {
    transform: translateY(-10px);
}

main#main .row-subcat .sub:hover {
    background: #4a4a4a;
    color: #fff;
}
main#main .row-subcat .sub:hover img {
    display: none;
}

/*
*   ROW LINE
*/
.row-line {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 30px auto;
}
.row-line::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #c5c5c5;
}
.row-line::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #c5c5c5;
}
.row-line p {
    border: 1px solid #c5c5c5;
    padding: 1px 30px;
    margin-bottom: 0;
    font-weight: 600;
    width: auto;
    text-align: center;
}