/*3.2 cabeçalho (com banner e sem)*/
.m-banner__item {
    position: relative;
    height: 320px;
}
.m-banner__content {
    position: absolute;
    width: 640px;
    bottom: 0;
    background: #005187;
    padding: 40px;
    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__small {
    color: white;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.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: 35px;
    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;
}

.m-banner__sub {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 25px;
    /* justify-content: space-around; */
}

.m-banner__sub .classificacao {
    width: 110px;
}

.m-banner__sub .classificacao .stars {
    display: flex;
    gap: 7px;
}

.m-banner__sub .classificacao p {
    color: white;
    font-size: 12px;
    margin-bottom: 2px;
    margin-top: 5px;
    
}

.m-banner__sub .infos {
    position: relative;
}

.m-banner__sub .infos::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 40px;
    background-color: #002a3f;
    left: -12px;
    top: 8px;
}

.m-banner__sub .infos:first-child::before {
    display: none;
}

.m-banner__sub .infos small{
    color: white;
    font-size: 12px;
    
}

.m-banner__sub .infos p{
    color: white;
    font-size: 15px;
    font-weight: 500;
}

@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;
    }   
}
