/* ==========================================================
   PROJETOS DE RH (interna) — diagnóstico + estrutura (diagramação do PDF)
   ========================================================== */

.principal.interna .subtit { max-width: 760px; }
.prj__eyebrow { color: #fc6800; margin-bottom: 18px; }

/* Lead --------------------------------------------------------- */
.prj__lead {
  max-width: 1000px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  color: #2c2c2c;
  text-wrap: pretty;
  margin-bottom: 60px;
}
.prj__lead strong { color: #4a2a80; font-weight: 700; }

/* Diagnóstico — card à esq. + lista à dir. ------------------- */
.prj__diag {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.prj__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 50px 44px 40px;
  border-radius: 25px;
  background-color: #2e1381;
  box-shadow: 0 22px 45px rgba(10, 0, 52, .22);
}
.prj__card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #ff680d;
  margin-bottom: 8px;
}
.prj__card img { width: 40px; height: 40px; object-fit: contain; }
.prj__card-tit {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-wrap: pretty;
}
.prj__card p { font-size: 18px; line-height: 1.4; color: #d8d2f2; max-width: 420px; text-wrap: pretty; }
.prj__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 25px;
  background-color: #fff0e5;
  color: #2e1381;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.prj__passos { display: grid; gap: 22px; }
.prj__passos li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: #2c2c2c;
  text-wrap: pretty;
}
.prj__passos img {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 50%;
  background-color: #fff0e5;
  object-fit: contain;
}

/* Estrutura — grade 3 x 3 de cards --------------------------- */
.prj__estrutura-tit {
  max-width: 820px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #2c2c2c;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.prj__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.prj__grid li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 25px;
  background-color: #f3f1fb;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: #2c2c2c;
  text-wrap: pretty;
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s;
}
.prj__grid li:hover { transform: translateY(-6px); background-color: #fff; box-shadow: 0 22px 45px rgba(10, 0, 52, .14); }
.prj__grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(10, 0, 52, .08);
  transition: background-color .35s;
}
.prj__grid li:hover i { background-color: #f3f1fb; }
.prj__grid img { width: 32px; height: 32px; object-fit: contain; }

/* Fecho centralizado ---------------------------------------- */
.prj__fecho {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.prj__fecho p {
  max-width: 900px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  color: #2c2c2c;
  text-wrap: balance;
}
.prj__fecho strong { color: #4a2a80; font-weight: 700; }

/* Responsivo ----------------------------------------------- */
@media (max-width: 1200px) {
  .prj__diag { gap: 40px; }
  .prj__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) { .prj__diag { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .principal.interna { padding: 70px 0; }
  .principal.interna .subtit { font-size: 30px; }
  .prj__lead { font-size: 20px; margin-bottom: 44px; }
  .prj__diag { margin-bottom: 60px; }
  .prj__card { padding: 36px 26px 30px; }
  .prj__card-tit { font-size: 24px; }
  .prj__passos li { font-size: 17px; }
  .prj__estrutura-tit { font-size: 26px; margin-bottom: 28px; }
  .prj__grid { gap: 14px; margin-bottom: 44px; }
  .prj__grid li { padding: 18px 20px; font-size: 17px; }
  .prj__fecho p { font-size: 21px; }
}
@media (max-width: 480px) { .prj__grid { grid-template-columns: 1fr; } }
