/* ============================
   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;
}

/* 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;
}

.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;
}

.home__cta-note {
  font-size: 0.8rem;
  color: rgba(156, 163, 175, 0.95);
}

/* ============================
   HERO – CARD DOS MENTORES
============================ */

.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);
}

/* 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 */
.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__mentors-names {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cor-branco);
  margin-bottom: 0.3rem;
}

.home__mentors-desc {
  font-size: 0.86rem;
  color: rgba(203, 213, 225, 0.96);
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

/* Pills */
.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 (reutiliza o estilo base, só reforça a borda) */
.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;
}

/* 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);
}

.home__info-footer strong {
  color: var(--cor-primaria);
}

/* ============================
   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;
  }

  .home__metrics {
    justify-content: flex-start;
  }

  .home__metric-item {
    width: 100%;
  }

  .home .btn--primary {
    width: 100%;
    justify-content: center;
  }
}
