/* Container geral do hero */
.hb-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background-color: #0c0c0c; /* fallback */
}

/* Cada slide ocupa a tela inteira */
.hb-hero-slide {
  position: absolute;
  inset: 0;
  background-color: #050505;
  overflow: hidden;
  opacity: 0;
  transform: translateX(0) scale(1);
  pointer-events: none;
}

.hb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hb-hero-bg picture,
.hb-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide ativo (após animação) */
.hb-hero-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 24px;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}

.hb-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Overlay sutil pra melhorar legibilidade */
/* .hb-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
              rgba(0,0,0,0.35) 0%,
              rgba(0,0,0,0.7) 65%,
              rgba(0,0,0,0.9) 100%);
  pointer-events: none;
  z-index: 1;
} */

/* Centro do slide: textos delicados */
.hb-hero-label {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 400 !important;
  letter-spacing: 0.18em;
  text-transform: unset !important;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0px;
}

.hb-hero-copy {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.11em;
  color: rgba(255,255,255,0.9);
}

.hb-hero-copy  {
    font-family: 'Karu Light', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: unset !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.9);
}

/* Indicador (01 / 06) */
.hb-hero-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  z-index: 5;
}

.hb-hero-separator {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

/* Responsivo */
@media (max-width: 768px) {
  .hb-hero-slider {
    min-height: 480px;
  }

  .hb-hero-copy {
    font-size: 14px;
    max-width: 340px;
  }

  .hb-hero-link {
    padding: 0 16px;
  }

  .hb-hero-indicator {
    bottom: 24px;
  }
}

.hb-hero-label, .hb-hero-copy {
  background-color: rgba(13, 13, 13, 0.88);
  padding: 5px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: #fefefe !important;
}