.pagina__produtos {
    padding: 70px 0;
}
.pagina__produtos .row.principal {
    align-items: center;
    margin-bottom: 50px;
}

.pagina__produtos .row.principal > div:last-child {
    padding-left: 40px;
}

.pagina__produtos .row.principal h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pagina__produtos .row.principal p {
    margin-bottom: 30px;
    color:#333;
    line-height: 30px;
    text-align: justify;
    font-size: 13px;
}

.categoria__block {
    display: flex;
    min-width: 100%;   
    min-height: 400px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--azul);
    transition: all .5s;
    border-radius: 3px;
}

.categoria__block * {
    position: relative;
    z-index: 9;
}

.categoria__block .background {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
    filter: brightness(0.3);
    outline: 1px var(--azul) solid;
    outline-offset: -10px;
    transition: all .5s;
}

.categoria__block:hover .background {
    filter: brightness(0.7);
}

.categoria__block .categoria__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.categoria__block .icone__categoria {
    background: #fff;
    width:120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.categoria__block .icone__categoria img {
    width:80px;
}

.categoria__block span {
    color:#fff;
    font-weight: bold;
    font-size: 18px;
}


.pagina__produtos table thead {
    background: #f1f1f1;
    font-weight: bold;
}



#table-produtos {
    border: 1px #dedede solid !important;
}

.tabulator .tabulator-header .tabulator-col {
    background: #fff !important;
    border-right: 1px #fff solid !important;
}

.tabulator .tabulator-header {
    border-bottom: 1px #fff solid !important;
    background-color: #fff!important;
}

.tabulator-header-filter input {
    padding: 8px!important;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter input[type=search] {
    border: 1px #dedede solid;
    background: #f5f5f5;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
    text-transform: uppercase;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {
    padding: 10px 5px!important;
}

.tabulator-row.tabulator-selectable:hover {
    background-color: #bbbbbb5e!important;
}

.tabulator-col .tabulator-sortable .tabulator-col-sorter-element {
    height: 80px!important;
}

.tabulator-row .tabulator-cell {
    border-right: 0 !important;
}

.tabulator-row.tabulator-row-even {
    background-color: #efefef5c!important;
}