/* =============================================================
   Hero — Central do Timão
   ============================================================= */

.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero__link {
  display: block;
  position: relative;
  text-decoration: none;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: justify;
  width: 50%;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #ECD7A5;
  margin: 0;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .hero__image {
    max-height: 280px;
  }

  .hero__content {
    padding: 20px 24px;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.875rem;
  }
}

/* =============================================================
   Hero Slider
   ============================================================= */

.hero--slider {
  position: relative;
}

.hero__track {
  position: relative;
  width: 100%;
}

.hero__slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero__slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.hero__controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero__prev,
.hero__next {
  background-color: #F14629;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.hero__prev:hover,
.hero__next:hover {
  background-color: #c73a20;
}

@media (max-width: 768px) {
  .hero__controls {
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .hero__prev,
  .hero__next {
    padding: 6px 10px;
    font-size: 1rem;
  }
}
