/* Shop */
.shop-wrap {
    width: 100%;
  /*  max-width: 1024px;  */
    margin: -30px auto;
}

.shop, .shop li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop {
    margin-bottom: 30px;
}

.shop > li {
    float: left;
    position: relative;
    width: 32%;
    margin-bottom: 10px;
}

.shop .thumb {
    position: relative;
    background-color: #222;
    border-radius:4px;
}

.shop .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.shop .thumb:hover img {
    opacity: 1;
}

.shop .empresa_icon {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    padding: 0px 10px;
    color:rgba(255, 255, 255, 1);
}

.name {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 5px 5px;
    line-height: 1.1;
}

.servicos_text {
    /* Ensure background color wraps around text */
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    padding: 5px;
    color: #023f6e;
    background-color: #EEEEEE;
    line-height: 1.1;
    border-radius:4px;
}

.shop .tel {
    position: absolute;
    line-height: 1.3;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    padding: 0px 10px;
    color:rgba(255, 255, 255, 1);
}
@media only screen and  (max-width: 1200px) {
.shop .tel {
    position: absolute;
    line-height: 1;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    padding: 0px 10px;
    color:rgba(255, 255, 255, 1);
}
}

@media only screen and  (max-width: 1024px) {
    .shop > li { width: 49%; }
}

@media only screen and  (max-width: 750px) {
    .shop > li { margin-right: 0!important; width: 100%; }
    .shop-wrap { width: 100%; }
}


/* UniFilter */

#filters {
    margin: 30px 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#filters .uf-filter {
    margin-top: 5px;
}

#filters .uf-filter-wrap,
#filters .uf-search-wrap,
#filters .uf-sort-wrap {
    margin-bottom: 0;
}

#filters .uf-filter-wrap  {
    margin-right: 10px;
}

#filters .uf-search-wrap,
#filters .uf-sort-wrap {
    margin-right: 10px;
    margin-bottom: 10px; /* Added margin bottom */
}

#filters .uf-search-box {
    width: 100%; /* Adjusted width for smaller screens */
}

@media only screen and (min-width: 751px) {
    #filters .uf-filter-wrap {
        float: right; /* Float to right for screens larger than 750px */
    }
}

@media only screen and  (max-width: 750px) {
    #filters .uf-filter-wrap {
        float: none; /* Remove float for screens smaller than 751px */
        margin-right: 0; /* Remove right margin */
    }
}
