body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  padding: 30px;
}

h1 {
  margin-bottom: 40px;
  color: #333;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.card h2 {
  margin: 15px 0;
  font-size: 20px;
  color: #444;
}

.botao {
  display: inline-block;
  padding: 10px 20px;
  background: #2d89ef;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.botao:hover {
  background: #1b5fa7;
}
