/* HERO DA PÁGINA SERVIÇOS */
.page-hero {
  background: transparent;
  border-bottom: 1px solid rgba(142, 148, 146, 0.14);
}

.page-hero::after {
  display: none;
}

.page-hero-inner {
  min-height: 420px;
  display: block;
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

.page-hero-inner .badge {
  display: inline-flex;
  margin-bottom: 36px;
}

.page-hero-inner h1 {
  max-width: 1024px;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero-inner .lead {
  max-width: 900px;
  margin-top: 24px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
}


/* =========================
   INTRO DA SEÇÃO SERVIÇOS
   ========================= */
.services-intro {
  background: transparent;
}

.services-intro .section-head {
  max-width: 980px;
  margin-top: 48px;
  margin-bottom: 34px;
}

/* Badge estilo pílula, como no bloco "Sobre Nós" */
.services-intro .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(22, 112, 214, 0.08);
  border: 1px solid rgba(22, 112, 214, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22, 112, 214, 0.05);
}

/* Título principal da introdução */
.services-intro .section-head h2 {
  max-width: 1024px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0;
}

/* Texto de apoio abaixo do título */
.services-intro .section-desc {
  margin-top: 24px;
  max-width: 900px;
  color: var(--text-soft);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
}


/* =========================
   RESPONSIVO - TABLET
   ========================= */
@media (max-width: 980px) {
  .page-hero-inner {
    min-height: auto;
    padding: 46px 0;
  }

  .page-hero-inner h1 {
    max-width: 100%;
  }

  .page-hero-inner .lead {
    max-width: 100%;
  }

  .services-intro .section-head h2 {
    max-width: 100%;
  }

  .services-intro .section-desc {
    max-width: 100%;
  }
}

/* =========================
   RESPONSIVO - CELULAR
   ========================= */
@media (max-width: 760px) {
  .page-hero-inner {
    padding: 38px 0;
  }

  .page-hero-inner .badge {
    margin-bottom: 18px;
  }

  .page-hero-inner h1 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.1;
  }

  .page-hero-inner .lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .services-intro .section-tag {
    margin-bottom: 18px;
    padding: 8px 16px;
  }

  .services-intro .section-head h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .services-intro .section-desc {
    margin-top: 18px;
  }
}