/*3.2 cabeçalho (com banner e sem)*/
.m-banner__item {
    position: relative;
    height: 320px;
}
.m-banner__content {
    position: absolute;
    width: 600px;
    bottom: 0;
    background: #005187;
    padding: 40px 30px;
    padding-left: 0;
    z-index: 1;
    animation: slideAnimation .5s ease-in-out .6s 1 both;
}
.m-banner--auto .m-banner__content {
    width: auto;
}
.m-banner__content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: #005187;
}
.m-banner__category {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

.m-banner__title {
    font-weight: 400;
    font-size: 52px;
    color: #eff2f4;
    margin-bottom: 6px;
    animation: slideAnimation .5s ease-in-out .7s 1 both;
}

.m-banner--auto .m-banner__title {
    font-size: 40px;
}

.m-banner__text {
    font-size: 16px;
    color: #ffffff;
    animation: slideAnimation .5s ease-in-out .8s 1 both;
}

.m-banner__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    animation: slideAnimation .4s ease-in-out .25s 1 both;
}

.m-banner__image img {
    width: 100%;
}
.m-banner__info {
    display: flex;
    margin-top: 30px;
}
.m-banner__info__item {
    border-right: solid 1px #002a3f;
    margin-right: 20px;
    padding-right: 20px;
    max-width: 160px;
}
.m-banner__info__item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.m-banner__rating {
    display: flex;
    margin-bottom: 8px;
}
.m-banner__rating__star {
    display: block;
    width: 16px;
    height: 16px;
    background: url("../../images/icons/ico-star.svg") no-repeat;
    margin-right: 12px;
}
.m-banner__rating__star--empty {
    background: url("../../images/icons/ico-star-empty.svg") no-repeat;
}
.m-banner__info__title {
    display: block;
    font-size: 12px;
    color: #ffffff;
}
.m-banner__info__text {
    display: block;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: #ffffff;
    white-space: nowrap;
}
@media (max-width: 576px) {
    .m-banner .container {
        padding-right: 0;
        padding-left: 0;
    }
    .m-banner__item {
        height: auto;
    }
    .m-banner--auto .m-banner__title,
    .m-banner__title {
        font-size: 32px;
    }
    .m-banner__image {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        left: auto;
    }

    .m-banner__content {
        position: relative;
        width: 100%;
        bottom: auto;
        padding: 30px 25px;
    }
    .m-banner__info {
        flex-direction: column;
    }
    .m-banner__info__item {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        max-width: none;
        margin-bottom: 5px;
    }   
}
