/* 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-card {
  transform: translateY(7em);
  /* position: absolute;
  bottom: 10px;
  left: 10px;
  right: auto; */
}

.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  {
  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);
  max-width: 500px;
  /* text-align: left; */
}

/* Indicador (01 / 06) */
/* .hb-hero-indicator {
  position: absolute;
  bottom: 32px;
  left: auto;
  right: 0;
  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;
  background-color: rgba(13, 13, 13, 0.462);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 10px 10px;
  border-radius: 3px;
} */

.hb-hero-indicator {
  position: absolute;
  bottom: 32px;
  right: 25px;
  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;
  padding: 15px 15px;
  border-radius: 3px;
  isolation: isolate; /* garante que o pseudo fique atrás */
}

.hb-hero-indicator::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(13,13,13,0.62);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transform: skew(-15deg); /* ajuste o ângulo como preferir */
  border-radius: inherit;
  z-index: -1;
}

.hb-hero-indicator > * {
  transform: skew(0deg); /* desfaz o skew para o texto ficar reto */
}

.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;
    max-height: 600px;
  }

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

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

  .hb-hero-indicator {
    bottom: 7px;
    padding: 10px 15px;
  }
  .hb-hero-card {
    transform: translateY(5em);
  }
}

.hb-hero-label, .hb-hero-copy {
  background-color: rgba(13, 13, 13, 0.621);
  padding: 5px 30px;
  border: 0px 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;
  border-radius: 3px;
}