.hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  min-height: clamp(30rem, 80vh, 46rem);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.95) 0%, rgba(5, 7, 10, 0.72) 38%, rgba(5, 7, 10, 0.42) 68%, rgba(5, 7, 10, 0.55) 100%),
    radial-gradient(circle at 22% 18%, rgba(37, 215, 255, 0.18), transparent 38%),
    url("../../assets/images/fundo-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  gap: clamp(1.8rem, 3vw, 3rem);
  align-items: center;
  min-height: inherit;
}

.hero-content {
  max-width: 38rem;
  padding-block: clamp(1.2rem, 3.5vw, 2.4rem);
}

.hero-kicker {
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}

.highlight {
  color: var(--accent);
}

.hero-subtitle {
  max-width: 34rem;
  
}

.hero-totalpass {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(101, 255, 91, 0.12);
  border: 1px solid rgba(101, 255, 91, 0.38);
  color: #e7ffe5;
  font-weight: 700;
  transition: all 0.3s ease;
  
}

.hero-totalpass:hover {
  background: rgba(101, 255, 91, 0.18);
  border-color: rgba(101, 255, 91, 0.5);
  transform: translateY(-2px);
}

.hero-totalpass i {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
  max-width: 34rem;
}

.stat {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: all 0.3s ease;
  cursor: default;
}

.stat:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(101, 255, 91, 0.3);
  transform: translateY(-4px);
}

.stat dt {
  color: #95a2af;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat dd {
  margin-top: 0.4rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-main);
}

.star {
  color: #ffd36f;
}

@media (max-width: 40rem) {
  .hero {
    min-height: 85vh;
    padding-top: 1.5rem;
  }

  .hero-grid {
    gap: 1rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding-block: 1rem;
  }

  .hero-kicker {
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 0.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .hero-totalpass {
    margin-top: 0.8rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-top: 0.4rem;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    display: flex;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 2.5rem;
    max-width: 100%;
  }

  .stat {
    padding: 0.8rem;
  }

  .stat dt {
    font-size: 0.7rem;
  }

  .stat dd {
    margin-top: 0.3rem;
    font-size: 1rem;
  }
}

@media (max-width: 50rem) {
  .hero {
    background-position: 64% center;
    background-image:
      linear-gradient(180deg, rgba(5, 7, 10, 0.9) 0%, rgba(5, 7, 10, 0.72) 48%, rgba(5, 7, 10, 0.86) 100%),
      radial-gradient(circle at 22% 14%, rgba(37, 215, 255, 0.16), transparent 34%),
      url("../../assets/images/fundo-hero.png");
  }
}
