/* Contenedor de categoría */
.categoria {
  margin: 2rem auto;
  padding: 1rem;
  max-width: 1000px;
  width: 100%;
}

/* Contenedor de productos en grid */
#productos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Tarjeta de producto */
.producto {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Imagen */
.producto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

/* Texto */
.producto p {
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #333;
}

.producto p:first-of-type {
  font-weight: 600;
  font-size: 1.05rem;
}

.producto p:last-of-type {
  color: #007b5e;
  font-weight: bold;
}

/* Botón */
.form-buton button {
  margin-top: 0.8rem;
  background: #007b5e;
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.form-buton button:hover {
  background: #005f47;
}
