/* ============================
   HOME – VISUAL PRINCIPAL
   Azul marinho, cinza escuro,
   laranja de destaque e fonte branca
============================ */

.home {
  padding: 2.75rem 0 3.25rem;
  position: relative;
}

/* Fundo com gradiente em azul marinho + brilho laranja */
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 147, 30, 0.13), transparent 60%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.7), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Card principal da home */
.home__shell {
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(6, 27, 52, 0.96),
    rgba(3, 12, 28, 0.98)
  );
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
  padding: 1.8rem 1.7rem 2.1rem;
}

/* ============================
   HERO – TOPO
============================ */

.home__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
}

/* Lado esquerdo (texto) */
.home__hero-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-self: flex-start; /* fica alinhado no topo (não centraliza) */
}

/* Tagline / frase de impacto */
.home__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(3, 12, 28, 0.98);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
}

.home__tagline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7931e, #f15a24);
  box-shadow: 0 0 12px rgba(247, 147, 30, 0.9);
}

/* Título principal */
.home__title {
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cor-branco);
  line-height: 1.25;
}

.home__title span {
  color: var(--cor-primaria);
}

/* Subtítulo */
.home__subtitle {
  font-size: 0.98rem;
  max-width: 34rem;
  color: var(--cor-texto);
  line-height: 1.7;
}

/* Lista de benefícios */
.home__benefits {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0.9rem 0;
  display: grid;
  gap: 0.45rem;
}

.home__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.96);
}

.home__benefits-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 147, 30, 0.9);
  font-size: 0.8rem;
  line-height: 1;
  color: var(--cor-primaria);
  background: rgba(3, 12, 28, 0.98);
}

/* CTA row */
.home__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
  margin-top: 0.3rem;
}

/* Botão (mantém identidade; só garante centralização do texto) */
.home .btn--primary {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  padding: 0.75rem 2.1rem;
  background: linear-gradient(135deg, #f7931e, #facc15);
  color: #04101f;
  text-align: center;
  justify-content: center;
}

.home__cta-note {
  font-size: 0.8rem;
  color: rgba(156, 163, 175, 0.95);
}

/* ============================
   HERO – CARD DOS MENTORES (DIREITA)
============================ */

.home__hero-right {
  display: flex;
  justify-content: flex-end;
}

.home__mentors-card {
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, #0b1e3a, #040b18);
  border: 1px solid rgba(31, 41, 55, 0.95);
  padding: 1.1rem 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.7);
  max-width: 440px; /* um pouco maior para caber melhor as descrições */
  width: 100%;
}

/* Aura de fundo laranja suave */
.home__mentors-card::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  left: -40%;
  top: -80%;
  background: radial-gradient(
    circle at 20% 0,
    rgba(247, 147, 30, 0.16),
    transparent 55%
  );
  opacity: 0.9;
  pointer-events: none;
}

/* Foto circular */
.home__mentors-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.home__photo-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 147, 30, 0.4), transparent 60%);
  opacity: 0.65;
  filter: blur(2px);
  top: 12px;
}

.home__mentors-photo {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(4, 10, 20, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

/* Chips em volta da foto (mantido, caso use no futuro) */
.home__photo-chip {
  position: absolute;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  white-space: nowrap;
  background: rgba(4, 10, 20, 0.95);
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.home__photo-chip--top { top: 12px; right: 10px; }
.home__photo-chip--bottom { bottom: 8px; left: 18px; }

.home__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cor-primaria);
}

/* Texto dentro do cartão */
.home__mentors-text {
  position: relative;
  z-index: 1;
}

.home__mentors-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(148, 163, 184, 0.98);
  margin-bottom: 0.15rem;
}

.home__mentor-bios {
  display: grid;
  gap: 0.75rem;
}

.home__mentor-bio {
  padding: 0.65rem 0.65rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.65);
  background: rgba(3, 12, 28, 0.45);
}

.home__mentors-names {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cor-branco);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.home__mentors-desc {
  font-size: 0.86rem;
  color: rgba(203, 213, 225, 0.96);
  line-height: 1.6;
  margin: 0;
}

/* Pills (mantido, caso use no futuro) */
.home__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.home__pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.95);
  color: rgba(229, 231, 235, 0.95);
  background: rgba(4, 12, 26, 0.98);
}

/* ============================
   FAIXA DE MÉTRICAS
============================ */

.home__metrics {
  margin-top: 1.7rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: linear-gradient(
    90deg,
    rgba(4, 12, 26, 0.96),
    rgba(6, 23, 49, 0.98)
  );
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.2rem;
  justify-content: center;
}

.home__metric-item {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.home__metric-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cor-primaria);
}

.home__metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(203, 213, 225, 0.96);
}

/* ============================
   BLOCO INFERIOR – VÍDEO + INFO
============================ */

.home__bottom-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.6rem;
}

/* Coluna do vídeo */
.home__video-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home__video-header { text-align: left; }

.home__video-title {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cor-branco);
  margin-bottom: 0.2rem;
}

.home__video-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 0.3rem;
  background: linear-gradient(90deg, var(--cor-primaria), transparent);
}

.home__video-subtitle {
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.96);
}

/* Frame do vídeo */
.home__video-frame { margin-top: 0.4rem; }

.video-responsive {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding-bottom: 56.25%;
  height: 0;
  background-color: #000;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.95);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.75);
}

.video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA Diagnóstico */
.home__diagnostic-cta {
  margin-top: 0.85rem;
}

.home__diagnostic-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0.9rem 1rem;
  border-radius: 0.95rem;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;

  background: rgba(3, 12, 28, 0.98);
  border: 1px solid rgba(247, 147, 30, 0.55);
  color: rgba(226, 232, 240, 0.98);

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.home__diagnostic-btn:hover {
  transform: translateY(-1px);
  background: rgba(6, 27, 52, 0.78);
  border-color: rgba(247, 147, 30, 0.95);
}

/* Coluna de informações */
.home__info-col {
  display: flex;
  align-items: stretch;
}

.home__info-card {
  border-radius: 1rem;
  background: radial-gradient(circle at top left, #071a34, #020817);
  border: 1px solid rgba(31, 41, 55, 0.95);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home__info-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--cor-branco);
}

.home__info-text {
  font-size: 0.88rem;
  color: var(--cor-texto);
  line-height: 1.7;
}

/* Lista interna */
.home__info-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.5rem 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.86rem;
}

.home__info-list li {
  display: flex;
  gap: 0.45rem;
  color: rgba(226, 232, 240, 0.96);
}

.home__info-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cor-primaria);
  box-shadow: 0 0 10px rgba(247, 147, 30, 0.8);
  margin-top: 0.3rem;
}

.home__info-footer {
  font-size: 0.84rem;
  color: rgba(209, 213, 219, 0.96);
}

/* Link discreto para Painel do Aluno */
.home__footer-link {
  color: var(--cor-primaria);
  text-decoration: none;
  font-weight: 800;
}

.home__footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home__footer-link:focus-visible {
  outline: 2px solid rgba(247, 147, 30, 0.65);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================
   PERFIS DOS MENTORES (FINAL DA HOME)
============================ */

.home__mentors-section {
  margin-top: 1.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(31, 41, 55, 0.75);
}

.home__mentors-header { margin-bottom: 1rem; }

.home__mentors-title {
  margin: 0 0 0.25rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cor-branco);
}

.home__mentors-subtitle {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.96);
  line-height: 1.6;
}

.home__mentors-list {
  display: grid;
  gap: 1rem;
}

/* Card full width (esquerda foto | direita texto) */
.home__mentor-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;

  border-radius: 1rem;
  background: radial-gradient(circle at top left, #071a34, #020817);
  border: 1px solid rgba(31, 41, 55, 0.95);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
}

.home__mentor-photo-col {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.home__mentor-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(4, 10, 20, 0.95);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.75);
}

.home__mentor-content {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home__mentor-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cor-branco);
}

.home__mentor-summary {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--cor-texto);
}

.home__mentor-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

/* Ícones: quadrado elegante, cantos arredondados, “contidos” */
.home__social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  border-radius: 14px;

  background: rgba(3, 12, 28, 0.98);
  border: 1px solid rgba(247, 147, 30, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);

  overflow: hidden;
  padding: 0;
  text-decoration: none;

  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.home__social-icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(6, 27, 52, 0.78);
  border-color: rgba(247, 147, 30, 0.95);
}

/* Ícone maior (reduz sensação de “espaço vazio” em PNG com padding) */
.home__social-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: cover;
  transform: scale(1.06);
}

/* ============================
   RESPONSIVO
============================ */

@media (max-width: 960px) {
  .home__hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .home__hero-right {
    justify-content: center;
  }

  .home__mentors-photo {
    width: 200px;
    height: 200px;
  }

  .home__bottom-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .home__shell {
    padding: 1.4rem 1.1rem 1.8rem;
  }

  .home__title {
    font-size: 1.7rem;
  }

  /* remove o dot laranja da tagline no mobile (evita desalinhamento) */
  .home__tagline-dot {
    display: none;
  }

  .home__tagline {
    gap: 0;
    letter-spacing: 0.10em;
  }

  .home__metrics {
    justify-content: flex-start;
  }

  .home__metric-item {
    width: 100%;
  }

  .home .btn--primary {
    width: 100%;
    justify-content: center;
  }

  /* Perfis: empilha foto em cima e texto embaixo */
  .home__mentor-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem 1rem;
  }

  .home__mentor-photo {
    width: 120px;
    height: 120px;
  }
}
