body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #10144a; /* cor de fundo da página */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

header {
  text-align: center;
  margin: 30px 0 10px;
}

header img {
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 30px;
  color: #fff; /* cor do texto */
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  padding: 0 10px;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Removido o estilo genérico de img do card para usar classes específicas */
.minhas-despesas-icon {
  width: 100px;   /* ajuste individual */
  height: 100px;
  border-radius: 20%;
  margin-bottom: 15px;
}

.speaker-cleaner-icon {
  width: 90px;  /* ajuste diferente do outro ícone */
  height: 90px;
  border-radius: 20%;
  margin-bottom: 15px;
}

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

.card a {
  display: inline-block;
  padding: 10px 18px;
  background: #4285F4;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.card a:hover {
  background: #2a65d7;
}
