* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.main-posto {
  background-image: url(img/posto123.jpg);
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-posto h1 {
  color: #000;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 55px;
  padding-top: 20px;
  -webkit-text-stroke: 3px #44aab9;
}
.slider-image img {
  width: 100%;
  height: 77vh;
  object-fit: cover;
}
.description-slider {
  color: #fff;
  font-family: "Gotham-Bold";
  z-index: 2;
  opacity: 1;
  width: 600px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0px 0px 60px 60px;
  text-align: justify;
}
.arrows {
  color: #fff;
  z-index: 5;
  opacity: 1;
  font-size: 30px; /* Tamanho maior para destacar */
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}
.arrows i {
  cursor: pointer;
  transition: color 0.3s;
}
.arrows i:hover {
  color: #1c1b2d;
}
.description-slider h2 {
  font-size: 40px;
  padding-bottom: 15px;
}
.description-slider p {
  font-size: 18px;
  line-height: 1.3;
}
.background-opacity {
  position: absolute; /* Garante que o fundo fique atrás do conteúdo */
  width: inherit; /* Faz com que a largura seja igual à da div pai */
  height: inherit; /* Faz com que a altura seja igual à da div pai */
  background-color: #061a23;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5; /* Reduz opacidade apenas do fundo */
  z-index: 1; /* Define que o fundo fique atrás */
}
.image-slider {
  position: relative;
  z-index: 0;
  opacity: 1;
  height: 100%;
  width: 100%;
  background-image: url(img/posto-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  transition: 0.3s;
}
.box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 77vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  #description-title {
    font-size: 25px;
  }
  #description-subtitle {
    font-size: 15px;
  }
  .description-slider {
    width: 330px;
    margin: 0px 0px 30px 30px;
  }
  .arrows i:hover {
    color: #fff;
  }
}
@media (max-width:671px) {
  .description-slider {
    width: 75%;
  }
  #description-title {
    text-align: left;
  }
}