.hero-custom {
  width: 100%;
  background: #010a18;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0 0 0;
  margin-top: 50px;
}

.hero-logo img {
  height: 38px;
  margin-bottom: 32px;
}


.hero-title {
  color: #fff;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}

.hero-graph img {
  max-width: 90vw;
  width: 900px;
  border-radius: 18px;
  margin-bottom: 48px;
  box-shadow: 0 4px 32px #00000040;

}

.hero-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-cards svg {
  margin-bottom: 16px;
}

.hero-card {
  background: #000916;
  border-radius: 18px;
  padding: 32px 24px;
  width: 260px;
  box-shadow: 0 2px 16px #00000020;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  transition: background 0.6s; /* Adiciona transição suave */
  border: 0.1px solid #222;
}

.hero-card:hover {
  background: #010113; /* Fica mais escuro ao passar o mouse */
}


.hero-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-card p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-graph img {
    width: 98vw;
  }
  .hero-cards {
    gap: 18px;
  }
  .hero-card {
    width: 90vw;
    max-width: 340px;
  }
}
