.catalogo-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.catalogo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.catalogo-card:hover {
  transform: translateY(-5px);
}

.catalogo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.catalogo-body {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalogo-body h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.catalogo-body p {
  flex-grow: 1;
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.catalogo-price {
  color: #007bff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.catalogo-btn {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 2px solid #007bff;
  color: #007bff;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
}

.catalogo-btn:hover {
  background-color: #007bff;
  color: white;
}

#catalogo .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

#catalogo .card:hover {
  transform: translateY(-5px);
}

#catalogo img {
  height: 200px;
  object-fit: cover;
}
