.section {
  position: relative;
  padding: clamp(88px, 9vw, 118px) 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(32px, 5vw, 68px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.78) 0%, rgba(7, 17, 31, 0.26) 48%, rgba(7, 17, 31, 0) 100%);
  opacity: 0.66;
}

.section--alt {
  background: transparent;
  border: 0;
}

.section-heading {
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cor-texto-secundario);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.secao-titulo {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.secao-subtitulo {
  margin-top: 14px;
  max-width: 740px;
  color: var(--cor-texto-secundario);
  font-size: 1.04rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section {
    padding: clamp(72px, 10vw, 96px) 0;
  }

  .section::before {
    height: 34px;
    opacity: 0.5;
  }
}
