body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Galería de imágenes */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}
.gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Menú superior */
nav#menuSuperior {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #34495e;
  padding: 10px 0;
  flex-wrap: wrap;
}
nav#menuSuperior a {
  color: white;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
  border-radius: 8px;
}
nav#menuSuperior a:hover {
  background-color: #2c3e50;
}
nav#menuSuperior .icon {
  display: none;
}

/* Producto */
.producto {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fafafa;
  margin: 14px auto;
  padding: 12px;
  width: 300px;
  box-shadow: 0 0 10px #e4e4e4;
  display: inline-block;
  vertical-align: top;
}
.producto h3 {
  margin-top: 0;
  color: #34495e;
}
.producto img {
  width: 100%;
  border-radius: 8px;
}
.producto p {
  margin: 10px 0 0 0;
  font-size: 16px;
}

button {
  padding: 10px 20px;
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: #27ae60;
}

/* Responsivo para móviles */
@media (max-width: 750px) {
  .gallery img, .producto {
    width: 95vw;
    height: auto;
  }
  nav#menuSuperior {
    flex-direction: column;
    align-items: flex-start;
  }
  nav#menuSuperior .icon {
    display: inline-block;
    cursor: pointer;
    font-size: 26px;
    margin-left: auto;
  }
}

/* Otros estilos útiles */
.main-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
.form-container {
  max-width: 450px;
  margin: 0 auto 30px auto;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(44,62,80,0.1);
  border-radius: 16px;
}
input, textarea {
  width: 92%;
  padding: 10px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: #fafafa;
}
