.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 140px;
  background-color: var(--color-dark-950);
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11, 10, 9, 0.92) 20%, rgba(11, 10, 9, 0.55) 65%, rgba(11, 10, 9, 0.25) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
  padding: var(--space-6) 0 var(--space-5);
}

.hero-title {
  font-size: var(--fs-3xl);
  margin-top: var(--space-2);
  color: var(--color-white);
}

.hero-title .highlight {
  color: var(--color-gold-400);
}

.hero-subtitle {
  margin-top: var(--space-3);
  font-size: var(--fs-lg);
  color: var(--color-text-light);
  max-width: 520px;
}

.hero-actions {
  margin-top: var(--space-4);
}

/* Faixa de destaques sobreposta ao rodapé do hero */
.hero-features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: rgba(20, 18, 16, 0.85);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feature {
  padding: var(--space-3) var(--space-4);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feature:first-child {
  border-left: none;
}

.hero-feature__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.6em;
}

.hero-feature__row {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
}

.hero-feature__icon {
  flex-shrink: 0;
  margin-top: 0.1em;
}

.hero-feature__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold-500);
  fill: none;
  stroke-width: 1.6;
}

.hero-feature__desc {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero {
    min-height: 0;
    padding-bottom: 0;
    display: block;
  }

  .hero-content {
    padding-bottom: var(--space-4);
  }

  .hero-title {
    font-size: var(--fs-2xl);
  }

  .hero-features {
    position: relative;
    grid-template-columns: 1fr;
  }

  .hero-feature {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-feature:first-child {
    border-top: none;
  }
}
