.banner {
  height: calc(100vh - 210px);
  background-color: #333;
  background-size: cover;
  background-position: bottom;
  position: relative;
  overflow: hidden;
}

.slider {
  display: block;
  height: 100%;
  width: 100%;
  margin: auto;
  //margin-top: 20px;
  position: relative;
}

.slider li {
  list-style: none;
  position: absolute;
  height: 100%;
  width: 100%;
}

.slider img {
  margin: auto;
  height: 100%;
  width: 100%;
  vertical-align: top;
}

.slider input {
  display: none;
}

.slider label {
  position: absolute;
  width: 20px;
  background-color: #b7b463;
  bottom: 20px;
  cursor: pointer;
  display: block;
  height: 20px;
  border-radius: 10px;
  border: solid 3px;
}

.slider li:nth-child(1) label {
  left: 20px;
}

.slider li:nth-child(2) label {
  left: 50px;
}

.slider li:nth-child(3) label {
  left: 80px;
}

.slider li:nth-child(4) label {
  left: 110px;
}

.slider li:nth-child(5) label {
  left: 140px;
}

.slider li:nth-child(6) label {
  left: 170px;
}

.slider a {
  opacity: 0;
  visibility: hidden;
}

.slider li input:checked ~ a {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slider a img {
  position: absolute; /* Posiciona a imagem absolutamente dentro do contêiner */
  z-index: 100; /* Coloca link na imagem */
}

.banner .sliders-pointers {
  width: 100vw;
  height: 20px;
  position: absolute;
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
}
.banner .pointer {
  width: 20px;
  height: 20px;
  border: 2px solid #000000;
  border-radius: 10px;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}
.banner .pointer.active {
  background-color: #b28756;
}

/*
TABLET
*/
@media (min-width: 450px) and (max-width: 800px) {
  .banner {
    height: 200px;
  }
}

/*
MOBILE
*/
@media (max-width: 450px) {
  .banner {
    height: 200px;
  }
}