/* ==========================================================
   KONECTA TALENTOS (interna) — processo + diferencial (diagramação do PDF)
   ========================================================== */

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

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

/* Processo — lista em 2 colunas + card do time --------------- */
.tal__processo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 90px;
}
.tal__lista {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 40px;
  padding-top: 15px;
}
.tal__lista li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #2c2c2c;
  text-wrap: pretty;
}
.tal__lista img {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 50%;
  background-color: #fff0e5;
  object-fit: contain;
}
.tal__time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 44px 36px;
  border-radius: 25px;
  background-color: #2e1381;
  color: #fff;
  box-shadow: 0 22px 45px rgba(10, 0, 52, .22);
}
.tal__time img {
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 50%;
  background-color: #ff680d;
  object-fit: contain;
  margin-bottom: 12px;
}
.tal__time strong { font-size: 22px; font-weight: 700; line-height: 1.2; text-wrap: pretty; }
.tal__time span { font-size: 17px; line-height: 1.4; color: #d8d2f2; text-wrap: pretty; }

/* Diferencial ------------------------------------------------ */
.tal__dif-tit {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #2c2c2c;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.tal__dif-p { font-size: 19px; line-height: 1.4; color: #2c2c2c; margin-bottom: 26px; }
.tal__perguntas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.tal__perguntas li {
  position: relative;
  padding: 30px 28px 30px 62px;
  border-radius: 25px;
  background-color: #fff0e5;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: #2c2c2c;
  text-wrap: pretty;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tal__perguntas li:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(10, 0, 52, .14); }
.tal__perguntas li::before {
  content: "\201C";
  position: absolute;
  left: 24px;
  top: 18px;
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  color: #fc6800;
}
.tal__construcao {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}
.tal__construcao li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 32px 20px 28px;
  border-radius: 25px;
  background-color: #f3f1fb;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: #2c2c2c;
  text-wrap: pretty;
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s;
}
.tal__construcao li:hover { transform: translateY(-6px); background-color: #fff; box-shadow: 0 22px 45px rgba(10, 0, 52, .14); }
.tal__construcao i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(10, 0, 52, .08);
  transition: background-color .35s;
}
.tal__construcao li:hover i { background-color: #f3f1fb; }
.tal__construcao img { width: 38px; height: 38px; object-fit: contain; }

/* Responsivo ----------------------------------------------- */
@media (max-width: 1200px) {
  .tal__processo { grid-template-columns: minmax(0, 1fr) 300px; gap: 30px; }
  .tal__construcao { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .tal__processo { grid-template-columns: 1fr; }
  .tal__perguntas { grid-template-columns: 1fr; }
  .tal__construcao { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .principal.interna { padding: 70px 0; }
  .principal.interna .subtit { font-size: 30px; }
  .tal__lead { font-size: 20px; margin-bottom: 44px; }
  .tal__processo { margin-bottom: 60px; }
  .tal__lista { grid-template-columns: 1fr; gap: 18px; }
  .tal__time { padding: 34px 26px; }
  .tal__dif-tit { font-size: 26px; }
  .tal__dif-p { font-size: 17px; }
  .tal__perguntas li { font-size: 17px; padding: 26px 22px 26px 56px; }
  .tal__construcao { gap: 14px; }
}
@media (max-width: 480px) { .tal__construcao { grid-template-columns: 1fr; } }
