.banner__img--info {
    display: flex;
    align-items: flex-end;
    position: relative;
}
.info__title {
    color: #fffefe;
    font-size: 5.5rem;
    text-transform: capitalize;
    font-family: Bold;
    display: flex;
    align-items: flex-end;
    position: relative;
    line-height: 8rem;
}
.info__title::before {
    content: '';
    display: block;
    background-color: #c3261f;
    width: 320px;
    height: 6.5rem;
    margin-right: 10px;
}

@media only screen and (max-width: 800px) {
    .info__title::before {
        width: 4rem;
    }
}
@media only screen and (max-width: 800px) {
    .info__title {
        font-size: 4rem;
    }
}

/* Alto contraste */
.high-contrast .info__title::before {
    background-color: #fff;
}