.page-hero__bg.feiras {
    background-image: url('../../imagens/bg-feiras.png');
}

.list-feiras {
    padding: 80px 0;
}

.list-feiras .container {
    display: flex;
    flex-wrap: wrap;
}

.feiras_page {
    width: 350px;
    height: 450px;
    text-align: center;
    position: relative;
    border: 1px solid #F5F5F5;
    overflow: hidden;
    transition: 0.3s;
    margin: 0 18px 45px;
}

.feiras_page .img_feiras {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.feiras_page:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.feiras_page:hover .img_feiras {
    transform: scale(1.05);
}

.feiras_page__title {
    margin: 15px auto;
    color: var(--color-gold);
    font-size: 20px;
    font-weight: bold;
    width: 100%;
}

.feiras_page__description {
    font-size: 14px;
    color: #707070;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    height: auto;
}

.feiras_page__hour {
    position: absolute;
    width: 115px;
    height: 40px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    line-height: 20px;
    top: 130px;
    right: 15px;
    display: flex;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.feiras_page__hour img {
    width: 15px;
    height: 15px;
    margin: 13px 4px auto auto;
    object-fit: contain;
    filter: invert(63%) sepia(11%) saturate(1681%) hue-rotate(1deg) brightness(103%) contrast(89%);
}

.feiras_page__hour p {
    color: var(--color-gold) !important;
    font-size: 13px !important;
    margin: auto auto auto 0 !important;
    width: auto !important;
}

.feiras_page hr {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: var(--color-gold);
    margin-bottom: 0;
}