

/* =========================
   NovoSalão – Nossos Serviços (page CSS)
   Scoped to page ID 3516
   ========================= */

body.page-id-3516 .ns-services{
  padding-top: 48px;
  padding-bottom: 2%; /* reduz espaço antes da próxima secção */
}

body.page-id-3516 .ns-services .ns-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

body.page-id-3516 .ns-services .ns-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-id-3516 .ns-services .ns-media{
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

body.page-id-3516 .ns-services .ns-media img{
  width: 100%;
  height: clamp(150px, 22vw, 285px);
  object-fit: cover;
}

body.page-id-3516 .ns-services .ns-card-title{
  margin: 8px 0 0;
  font-size: 1.1rem;
}

body.page-id-3516 .ns-services .ns-card-text{
  opacity: .78;
  max-width: 52ch;
}

body.page-id-3516 .ns-services .ns-link{
  margin-top: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #0f0f0f;
}

@media (max-width: 820px){
  body.page-id-3516 .ns-services .ns-grid{ grid-template-columns: 1fr; }
  body.page-id-3516 .ns-services .ns-media img{ height: 240px; }
}

/* Passo 3 em destaque */
body.page-id-3516 .ns-services .ns-step .ns-media{
  position: relative;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* glow/linha verde subtil */
body.page-id-3516 .ns-services .ns-step .ns-media::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(28,160,129,.85);
}

/* título com cor de marca */
body.page-id-3516 .ns-services .ns-step .ns-card-title{
  color: #1ca081;
  font-weight: 800;
}

/* micro detalhe editorial (linha curta abaixo do título) */
body.page-id-3516 .ns-services .ns-step .ns-card-title::after{
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: #1ca081;
  opacity: .9;
  margin-top: 10px;
  border-radius: 2px;
}