/* ==========================================================
   ATUACAO — "Não chegamos com respostas prontas."
   ========================================================== */

.atuacao {
  background-color: #fcfcfc;
  padding: 100px 0;
}
.atuacao__cab {
  text-align: center;
  margin-bottom: 70px;
}
.atuacao__eyebrow { color: #ff680d; margin-bottom: 10px; }
.atuacao__titulo {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #2c2c2c;
  margin-bottom: 16px;
  text-wrap: balance;
}
.atuacao__p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #2c2c2c;
}

/* Passos ---------------------------------------------------- */
.atuacao__passos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  counter-reset: passo;
}
.atuacao__passo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
/* linha de ligação */
.atuacao__passo:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(50% + 62px);
  width: calc(100% - 124px);
  height: 5px;
  border-radius: 5px;
  background-color: #e3e3e6;
}
.atuacao__passo img {
  width: 94px;
  height: 94px;
  margin-bottom: 26px;
  border-radius: 50%;
  transition: transform .3s;
}
.atuacao__passo:hover img { transform: scale(1.06); }
.atuacao__num {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ff680d;
  margin-bottom: 12px;
}
.atuacao__nome {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #2c2c2c;
  text-wrap: balance;
}

@media (max-width: 1100px) {
  .atuacao__passos { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 50px; }
  .atuacao__passo:nth-child(3n)::after { display: none; }
}
@media (max-width: 768px) {
  .atuacao { padding: 70px 0; }
  .atuacao__cab { margin-bottom: 50px; }
  .atuacao__titulo { font-size: 30px; }
}
@media (max-width: 560px) {
  .atuacao__passos { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .atuacao__passo:nth-child(3n)::after { display: block; }
  .atuacao__passo:nth-child(2n)::after { display: none; }
  .atuacao__passo::after { left: calc(50% + 56px); width: calc(100% - 112px); }
  .atuacao__passo img { width: 80px; height: 80px; margin-bottom: 18px; }
  .atuacao__passo:not(:last-child)::after { top: 38px; }
  .atuacao__nome { font-size: 16px; }
}
