/* ============================================================
   HERO.CSS — Carousel Principal (Homepage)
   ============================================================ */

.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

/* ── Slides ──────────────────────────────────────────────── */
.hero__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Overlay sobre a imagem ──────────────────────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,23,20,0.72) 0%,
    rgba(26,23,20,0.15) 100%
  );
}

/* ── Conteúdo de texto do slide ──────────────────────────── */
.hero__content {
  position: absolute;
  bottom: 12%;
  left: 8%;
  color: var(--color-white);
  max-width: 520px;
}

.hero__content .eyebrow {
  color: var(--color-primary-light);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero__desc {
  font-size: var(--text-base);
  opacity: 0.8;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ── Pontos de navegação ─────────────────────────────────── */
.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  transition: background var(--transition-normal), transform var(--transition-normal);
}

.hero__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.4);
}

/* ── Contador (01 / 03) ──────────────────────────────────── */
.hero__counter {
  position: absolute;
  bottom: 2.5rem;
  left: 8%;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
}

.hero__counter-current {
  color: var(--color-white);
  font-weight: 500;
}

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero__counter {
    display: none;
  }

  .hero__content {
    left: 5%;
    right: 5%;
    bottom: 10%;
  }
}
