@charset "utf-8";
/* CSS Document */

.card-geral {
  font-family: Arial, sans-serif;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.card-corpo {
  max-width: 1200px;
  width: 100%;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center; /* Centraliza os cards dentro do grid */
}

.card {
  /* background-color: white;
  border-radius: 10px; */
  padding: 20px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  text-align: center; /* Centraliza o texto */
  width: 100%;
  max-width: 300px;
}

.card h2 {
  color: #1a4385;
  font-size: 1.8rem !important;
  margin-bottom: 10px;
}

.card p {
  color: #333;
  font-size: 1rem;
}