.main-page{
   display: flex;
   flex-direction: column;
}

.block{
   width: 100%;
   background-color: #413659;
}

.banner{
   margin: auto;
   display: flex;
   flex-direction: row;
   justify-content: center;
   width: 95%;
   height: 310px;
}

.novidades-banner{                                 
   width: 30%;
   padding: 1rem;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center top;
   border-right: 1px solid #fff;
   position: relative;
   cursor: pointer;
   transition: all 0.2s;
}

.novidades-banner:hover{
   transform: scale(1.02);
   box-shadow: 1px 5px 7px rgba(0, 0, 0, 0.377);
   border-radius: 5px;
   border: 1px solid #F2BB77;
   z-index: 1;
}

.novidades-img-1{
   background-image: url(https://resizing.flixster.com/f15aJekwSzIN7VSqWCRx_JQZNDY=/550x310/v1.czsxMDI4NDExNztqOzE5MDE5OzEyMDA7NjAwOzMxNA);
   width: 40%;
}

.novidades-img-2{
   background-image: url(https://resizing.flixster.com/0OUgnrATTaQ8PPaqNruOpTQ_DpE=/540x610/v1.czsxMDI4NDExMztqOzE5MDE5OzEyMDA7Mjc0OzMxMA);
   width: 30%;
}

.novidades-img-3{
   background-image: url(https://resizing.flixster.com/YqEP_98yE9t2tFz88l9kz4vuDxo=/540x610/v1.czsxMDI4NDExMjtqOzE5MDE5OzEyMDA7Mjc0OzMxMA);
   border: none;
   width: 30%;
}

.banner-msm{
   min-height: 59px;
   background-color: rgba(0, 0, 0, 0.61);
   color: #f9f9f9;
   padding: 0.4rem;
   bottom: 0.5rem;
   border-left: 3px solid #F2BB77;
   position: absolute;
}

.banner-msm > h2{
   margin-bottom: 0.4rem;
   font-size: 1.2rem;
}

.banner-msm > p{
   font-size: 0.9rem;
   font-weight: normal;
}

@media screen and (max-width: 999px){
   
   .novidades-img-2, .novidades-img-3{
      display: none;
   }

   .novidades-img-1{
      width: 100%;
      display: flex;
   }

   .novidades-banner{
      border: none;
      position: unset;
   }

   .novidades-banner:hover{
      width: 100%;
   }

   .banner-msm{
      position: unset;
      max-height: 59px;
      align-self: flex-end;
   }
}