

.home-modulo-insights {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.insight-card {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  margin: 10px;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  --justify-content: space-between;
}

.insight-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.insight-card h2 {
  font-size: 24px;
  font-weight: 600; /* semibold */
  margin: 20px 0 10px;
  color: #000; /* texto preto */
}

.insight-card p {
  font-size: 18px;
  margin: 0 0 20px;
  color: #000; /* texto preto */
}

.insight-card a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s;
  margin-top: auto; /* ensures button is aligned at the bottom */
}

.insight-button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .insight-card {
    flex: 1 1 100%;
  }

  .insight-card h2 {
    font-size: 20px;
  }

  .insight-car
