body {
  background: #f1f9ff;
  padding-top: 80px;
}

/* Buscador */
.buscador {
  text-align: center;
}

#buscador {
   margin-top: 5%;
  width: 80%;
  max-width: 400px;
  padding: 10px 15px;
  border: 2px solid #00b4d8;
  border-radius: 20px;
  outline: none;
  font-size: 1em;
}

/* Contenedor de productos */
.productos-container {
   margin-top: 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 20px 40px;
}

/* Tarjeta de producto */
.producto {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 15px;
  transition: transform 0.2s ease;
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.producto h3 {
  margin: 10px 0 5px;
  font-size: 1.1em;
  color: #023e8a;
}

.producto p {
  color: #0077b6;
  font-weight: 600;
  margin-bottom: 10px;
}

.producto a {
  display: inline-block;
  background: #05ca26;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
}

.producto a:hover {
  background: #00b66a;
}

