/* HERO */
.hero {
  background: var(--bg-main);
  padding: 140px 0 100px;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-normal);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-strong);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
}

.hero-buttons .btn {
  margin-right: 10px;
}

.hero-img {
  max-width: 100%;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* ========================= */
/* HERO RESPONSIVO MOBILE   */
/* ========================= */

@media (max-width: 768px) {

  .hero {
    padding: 100px 0 70px;
    text-align: center;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tag {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-proof {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    align-items: center;
  }

  .hero-img {
    padding-top: 50px;
  }

  .hero::before {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -120px;
  }
}