/* Banner hero com slides */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: var(--c-white);
}

.hero__title {
  font-size: var(--f-size-xl);
  font-weight: var(--f-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-8);
}

.hero__subtitle {
  font-size: var(--f-size-md);
  font-weight: var(--f-weight-regular);
  margin-bottom: var(--s-24);
}

.hero__cta {
  display: inline-block;
  padding: var(--s-12) var(--s-32);
  background: var(--c-white);
  color: var(--c-text);
  font-size: var(--f-size-sm);
  font-weight: var(--f-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition);
}

.hero__cta:hover {
  background: var(--c-accent);
  color: var(--c-white);
}

/* Dots / indicadores */
.hero__dots {
  position: absolute;
  bottom: var(--s-24);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--s-8);
  z-index: 3;
}

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

.hero__dot.is-active {
  background: var(--c-white);
}

/* Hero neutro (sem imagem configurada) — paleta clara minimalista da marca */
.hero__slide--neutral {
  background: linear-gradient(135deg, #FAFAF8 0%, #EFEDE8 100%);
}
.hero__slide--neutral::after { display: none; }
.hero__slide--neutral .hero__content,
.hero__slide--neutral .hero__title,
.hero__slide--neutral .hero__subtitle { color: #3F3F3F; }
.hero__slide--neutral .hero__cta {
  background: #3F3F3F;
  color: #FFFFFF;
  border: 1px solid #3F3F3F;
}
.hero__slide--neutral .hero__cta:hover {
  background: transparent;
  color: #3F3F3F;
}
