.fundos-investimento {
  padding: 60px 0;
  background-color: #E9E9E9;
}

.fundos-investimento .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.fundos-investimento h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.fundos-investimento p {
  font-size: 18px;
  margin-bottom: 40px;
}

.fundos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.fundo-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 30%;
  text-align: left;
  transition: transform 0.3s;
}

.fundo-item:hover {
  transform: scale(1.05);
}

.fundo-item img {
  max-width: 100%;
  height: auto;
}

.fundo-item h3 {
  font-size: 24px;
  margin: 20px 0 10px;
}

.fundo-item p {
  font-size: 16px;
  margin-bottom: 20px;
}

.fundo-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.fundo-item ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.fundo-botao {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.fundo-botao:hover {
  background-color: #0056b3;
}

/* Responsividade */

@media (max-width: 768px) {
  .fundo-item {
    max-width: 100%;
    flex: 100%;
  }
}

