body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f3f4f6;
  color: #333;
}

.productos-container {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.productos-container h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #1f3a93; /* Azul del logo */
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.producto {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s;
}

.producto:hover {
  transform: translateY(-5px);
}

.producto h2 {
  font-size: 1.4em;
  color: #f39c12; /* Naranja del logo */
}

.producto img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 15px 0;
}

.producto p {
  font-size: 0.95em;
  color: #555;
}

.botones {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.boton {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: background 0.3s;
}

.boton.mercadolibre {
  background-color: #3483fa;
}

.boton.mercadolibre:hover {
  background-color: #2968c8;
}

.boton.whatsapp {
  background-color: #25d366;
}

.boton.whatsapp:hover {
  background-color: #1ebe5b;
}
/* Boton de regresar*/
.boton-regresar {
  display: inline-block;
  margin: 30px auto;
  padding: 10px 20px;
  background-color:  #007bff; /* Azul del logo */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.boton-regresar:hover {
  background-color: #15306c;
}
