/* =========================
   HOME – HERO
========================= */

.bt-home .bt-home-hero {
  background-color: #131519;
  padding: 56px 20px;
  text-align: center;
}

/* Container central */
.bt-home .bt-home-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Título */
.bt-home .bt-home-hero h1 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Descrição */
.bt-home .bt-home-hero-desc {
  color: #cfcfcf;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 20px;
}

/* Botão */
.bt-home .bt-btn-primary {
  background-color: #FFDF00;
  color: #131519;
  padding: 10px 50px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.bt-home .bt-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

/* Divisor */
.bt-home .bt-home-divider {
  width: 100%;
  height: 0.1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 32px 0;
}

/* Stats */
.bt-home .bt-home-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.bt-home .bt-home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bt-home .bt-home-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFDF00;
  line-height: 1.2;
}

.bt-home .bt-home-stat span {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #b5b5b5;
}

/* =========================
   HOME – FEATURES
========================= */

.bt-home .bt-home-features {
  background-color: #1A1D23;
  padding: 56px 20px;
  border-top: 1px solid #2B303B;
  border-bottom: 1px solid #2B303B;
}

.bt-home .bt-home-features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Caixa */
.bt-home .bt-home-feature {
  background-color: #16181D;
  border: 1px solid #2B303B;
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}

/* Fundo dos ícones das features */
.bt-home .bt-home-feature i {
  background-color: #2B303B;
  border-radius: 10px;
  padding: 10px;
  line-height: 1;
}

/* Ícone */
.bt-home .bt-home-feature i {
  font-size: 30px;
  color: #FFDF00;
  margin-bottom: 14px;
  display: inline-block;
}

/* Título */
.bt-home .bt-home-feature h3 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Texto */
.bt-home .bt-home-feature p {
  color: #b5b5b5;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  .bt-home .bt-home-features-inner {
    grid-template-columns: 1fr;
  }
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .bt-home .bt-home-hero {
    padding: 44px 16px;
  }

  .bt-home .bt-home-hero h1 {
    font-size: 1.6rem;
  }

  .bt-home .bt-home-stats {
    gap: 28px;
  }

}
