.categorias-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  position: relative;
  flex-direction: row;
}
.categorias-grid > h2 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.categoria-card {
  width: 140px;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 16px;
  transition: transform 0.2s ease;
}

.categoria-card:hover {
  transform: scale(1.05);
}

.categoria-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.categoria-card {
  text-decoration: none;
  color: #648a4c;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, color 0.3s ease;
}

.categoria-card:hover {
  transform: scale(1.05);
  color: #4f703b;
}
