/* ========================================
   CRISTECH CURSOS: mentoria.css
   Extensão isolada apenas para a página de
   Mentoria. Não altera style.css nem nenhuma
   regra usada pelo site principal, reaproveita
   as mesmas variáveis, cores e componentes
   definidos em style.css.
======================================== */

/* ---- HERO MENTORIA ---- */
.mentoria-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
}
.mentoria-hero-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mentoria-hero-container .hero-badge { margin-bottom: 28px; }
.mentoria-hero-container .hero-title { margin-bottom: 20px; }
.mentoria-hero-container .hero-subtitle { max-width: 620px; margin-left: auto; margin-right: auto; }
.mentoria-hero-container .hero-ctas { justify-content: center; }

.mentoria-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

/* ---- TEXTO CENTRALIZADO (O que é / Diferencial intro) ---- */
.mentoria-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mentoria-text p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
}
.mentoria-text p strong { color: var(--light); }
.mentoria-text p:last-child { margin-bottom: 0; }

/* ---- DIFERENCIAL ---- */
.diff-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.diff-text h2 { font-size: clamp(26px, 3.5vw, 36px); color: var(--white); margin-bottom: 18px; }
.diff-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.diff-text p strong { color: var(--light); }
.diff-list {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 12px 28px;
}

/* ---- GARANTIA ---- */
.guarantee-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(153,194,29,0.08);
  border: 2px solid rgba(153,194,29,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.guarantee-seal i { font-size: 30px; color: var(--green); margin-bottom: 6px; }
.guarantee-seal strong { font-size: 24px; font-weight: 900; color: var(--white); line-height: 1; }
.guarantee-seal span { font-size: 12px; color: var(--gray); margin-top: 4px; }
.guarantee-content h2 { font-size: clamp(26px, 3.5vw, 36px); color: var(--white); margin-bottom: 14px; }
.guarantee-content p { font-size: 16px; color: var(--gray); line-height: 1.8; }
.guarantee-content p strong { color: var(--light); }

/* ---- RESPONSIVE (mentoria page only) ---- */
@media (max-width: 1024px) {
  .diff-wrapper { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .mentoria-hero { padding: 130px 0 60px; min-height: auto; }
  .guarantee-wrapper { flex-direction: column; text-align: center; gap: 28px; }
}
