/* ==========================================================
   DESENVOLVIMENTO DE LIDERANÇAS (interna) — grade de cards (diagramação do PDF)
   ========================================================== */

.principal.interna .subtit { max-width: 860px; margin-bottom: 50px; }
.lid__eyebrow { color: #fc6800; margin-bottom: 14px; }

/* Grade 4 x 2 ----------------------------------------------- */
.lid__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.lid__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 36px 24px 32px;
  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;
}
.lid__grid li:hover {
  transform: translateY(-6px);
  background-color: #fff;
  box-shadow: 0 22px 45px rgba(10, 0, 52, .14);
}
.lid__grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(10, 0, 52, .08);
  transition: background-color .35s;
}
.lid__grid li:hover i { background-color: #f3f1fb; }
.lid__grid img { width: 40px; height: 40px; object-fit: contain; }

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

/* Responsivo ----------------------------------------------- */
@media (max-width: 1200px) { .lid__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) {
  .principal.interna { padding: 70px 0; }
  .principal.interna .subtit { font-size: 30px; margin-bottom: 0; }
  .lid__grid { gap: 14px; margin-bottom: 44px; }
  .lid__grid li { padding: 28px 18px 26px; font-size: 17px; }
  .lid__fecho p { font-size: 21px; }
}
@media (max-width: 480px) { .lid__grid { grid-template-columns: 1fr; } }
