/* Florescer Chique - Catálogo CSS */

.filtros {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  align-items: center;
}

label {
  margin-right: 0.5rem;
  font-weight: bold;

}

.section-catalogo {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card-body button {
  background-color: #b86874;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.card-body button:hover {
  background-color: #814a52;
}

/* Filtros */
select {
  padding: 0.5rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
select:focus {
  outline: none;
  border-color: #e29786;
}

/* Celulares pequenos */
@media (max-width: 768px) {
  .filtros {
    flex-direction: column;
  }
  select {
    margin: 0.5rem 0;
  }
}
