.section-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 10vh;
}

@media (min-width: 768px) {
  .section-hero {
    margin-top: -4rem;
  }
}

.section-hero .container {
  text-align: center;
}

/* ---- Título ---- */
.section-hero h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 1.3rem;
  text-align: center;
  font-size: 1.5rem;
}

@media (min-width: 460px) {
  .section-hero h1 {
    font-size: 1.8rem;
  }
}

@media (min-width: 540px) {
  .section-hero h1 {
    font-size: 2.3rem;
  }
}

@media (min-width: 768px) {
  .section-hero h1 {
    font-size: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Minions mobile (entre título e badge) ---- */
.hero-minions {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.hero-minions .hero-minion {
  height: clamp(120px, 35vw, 200px);
  width: auto;
  object-fit: contain;
}

/* ---- Badge ---- */
.hero-badge {
  background-color: var(--bg-yellow);
  width: 100%;
  padding: 0.75rem 1.5rem;
  overflow: visible;
}

.hero-badge__caption {
  margin: 0;
  text-align: center;
  font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  color: #fff;
}

.hero-badge__caption--top { margin-top: 3rem; padding-bottom: 0.15rem; }
.hero-badge__caption--bottom { padding-top: 0.3rem; }

.hero-badge__track {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-badge__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.hero-badge__minion {
  position: absolute;
  bottom: 1rem;
  height: clamp(160px, 18vw, 240px);
  width: auto;
  object-fit: contain;
}

.hero-badge__minion--left {
  left: 0;
}

.hero-badge__minion--right {
  right: 0;
}

.hero-badge__number {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow:
    -2px -2px 0 var(--bg-green),
    0 -2px 0 var(--bg-green),
    2px -2px 0 var(--bg-green),
    2px 0 0 var(--bg-green),
    2px 2px 0 var(--bg-green),
    0 2px 0 var(--bg-green),
    -2px 2px 0 var(--bg-green),
    -2px 0 0 var(--bg-green),
    6px 6px 0 var(--bg-green);
}

.hero-badge__text {
  font-size: clamp(1.5rem, 2.8vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bg-green);
  max-width: 350px;
  line-height: 1.2;
}

/* ---- Logos ---- */
.hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
}

.hero-logos .logo {
  width: clamp(100px, 25vw, 150px);
  height: auto;
  object-fit: contain;
}

.hero-logos .logo.nagumo {
  padding-bottom: 0.5rem;
}

@media (min-width: 1920px) {
  .section-hero h1 {
    font-size: 3.5rem;
    max-width: 1000px;
  }

  .hero-logos .logo {
    width: clamp(180px, 12vw, 220px);
  }

  .hero-badge {
    margin-top: 6rem;
  }

  .hero-badge__track { max-width: 1700px; }
  .hero-badge__inner { max-width: 950px; }
  .hero-badge__text  { max-width: 500px; }

  .hero-badge__minion {
    height: clamp(280px, 18vw, 360px);
  }

  .hero-badge__number {
    font-size: clamp(7rem, 9vw, 9rem);
  }

  .hero-badge__text {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
  }

  .hero-minions .hero-minion {
    height: clamp(200px, 20vw, 300px);
  }
}
