/* CSS */

.banner-responsivo {
  display: block;
  width: 375px;
  margin: -18px;
  max-width: 1000px;
  height: 475px;
  background-image: url("/imgs/banner-desk.png");
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 60px;
  cursor: pointer;
}

@media (max-width: 770px) and (min-width: 670px) {
  .banner-responsivo-mobile {
    width: 100%;
    height: 350px;
    background-image: url("/imgs/banner-horizontal.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 30px;
  }

  .banner-responsivo {
    display: none;
  }
}

@media (max-width: 670px) {
  .banner-responsivo-mobile {
    width: 100%;
    height: 350px;
    margin-top: 30px;
    background-image: url("/imgs/banner-mobile.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .banner-responsivo {
    display: none;
  }
}
