* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/**********
  SWIPER
**********/

.swiper-container {
  width: 100%;
}

.swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
}

.swiper-slide .bannerDesktop {
  width: 100%;
}

.swiper-slide .bannerMobile {
  width: 100%;
  display: none;
}

.swiper-slide .wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
}

.swiper-slide .wrapper .box {
  width: 40%;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px black;
}

.swiper-slide .wrapper .box h2 {
  margin-bottom: 15px;
}

.swiper-slide .wrapper .box p {
  margin-bottom: 15px;
}

.swiper-slide .wrapper .box button {
  width: 180px;
  height: 35px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 0 5px rgb(56, 56, 56);
  background: rgb(255, 115, 0);
  color: white;
}

.swiper-slide .wrapper .box button:hover {
  transition: background 500ms ease;
  cursor: pointer;
  background: rgb(0, 89, 255);
}

.swiper-slide .wrapper .box a {
  text-decoration: none;
  border: none;
  color: white;
}

/**********
  BANNER
**********/

.banner-container {
  width: 100%;
}

.banner-item {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
}

.banner-item .wrapper .box .logoBanner img {
  z-index: 10000000;
  width: 300px;
}

.banner-item .bannerDesktop {
  width: 100%;
}

.banner-item .bannerMobile {
  width: 100%;
  display: none;
}

.banner-item .wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
}

.banner-item .wrapper .box {
  width: 40%;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px black;
}

.banner-item .wrapper .box h2 {
  margin-bottom: 15px;
}

.banner-item .wrapper .box p {
  margin-bottom: 15px;
}

.banner-item .wrapper .box button {
  width: 180px;
  height: 35px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 0 5px rgb(56, 56, 56);
  background: #26a7eb;
  color: white;
}

.banner-item .wrapper .box button:hover {
  transition: background 500ms ease;
  cursor: pointer;
  background: rgb(0, 89, 255);
}



@media (max-width: 900px) {

  /**********
    SWIPER
  **********/

  .swiper-slide .wrapper .box {
    width: 60%;
  }

  .swiper-slide .wrapper .box h2 {
    font-size: 25px;
  }

  .swiper-slide .wrapper .box button {
    width: 150px;
    height: 30px;
    font-size: 14px;
  }

  /**********
    BANNER
  **********/

  .banner-item .wrapper .box .logoBanner img {
    width: 130px;
  }

  .banner-item .wrapper .box h2 {
    font-size: 25px;
  }

  .banner-item .wrapper .box {
    width: 60%;
  }

  .banner-item .wrapper .box button {
    width: 150px;
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {

  /**********
    SWIPER
  **********/

  .swiper-slide .bannerDesktop {
    display: none;
  }
  
  .swiper-slide .bannerMobile {
    display: block;
  }

  .swiper-slide .wrapper {
    align-items: flex-end;
    height: 100%;
    padding: 0 5px;
  }

  .swiper-slide .wrapper .box {
    width: 100%;
    margin: 15px auto;
    font-size: 14px;
  }

  /**********
    BANNER
  **********/

  .banner-item .bannerDesktop {
    display: none;
  }
  
  .banner-item .bannerMobile {
    display: block;
  }

  .banner-item .wrapper {
    align-items: flex-end;
    height: 100%;
    padding: 0 5px;
  }

  .banner-item .wrapper .box {
    width: 100%;
    margin: 15px auto;
    font-size: 14px;
  }

  .banner-item .wrapper .box button {
    width: 135px;
    height: 25px;
    font-size: 13px;
  }
  
  #tamanho {
        width: 78%;
    }
}