/* CONTAINER PRINCIPAL */
.slider-feat {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 480px;
  overflow: hidden;
  border-radius: 0px;
}

/* container que move os slides */
.slider-feat-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
  touch-action: pan-y;
}

/* cada slide */
.slider-feat-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* imagem REAL no lugar do background */
.slider-feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* igual ao background-size: cover */
  object-position: center;   /* igual ao background-position: center */
  display: block;
}

/* gradiente */
.slider-feat-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

/* conteúdo do slide */
.slider-feat-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 60%;
  color: #fff;
  z-index: 10;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.slider-feat-content .categoria {
  font-size: 18px;
  font-weight: bold;
}

.slider-feat-content h2 {
  font-size: 32px;
  margin-top: 10px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
}

/* setas */
.slider-feat .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.slider-feat .prev { left: 15px; }
.slider-feat .next { right: 15px; }

/* indicadores */
.slider-feat-indicators {
  position: absolute;
  bottom: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.slider-feat-indicator {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,.3);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.slider-feat-progress {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width linear;
}