
body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #fff0f6;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #ffc0cb;
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid #87cefa;
}

header h1 {
  font-size: 2.5em;
  color: #d63384;
}

header p {
  font-size: 1.2em;
  color: #555;
}

#galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.producto {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 10px;
  text-align: center;
  width: 220px;
}

.producto img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.boton-wsp {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.boton-wsp:hover {
  background-color: #1ebe5c;
}

footer {
  text-align: center;
  background-color: #ffc0cb;
  padding: 15px;
  font-size: 0.9em;
  border-top: 4px solid #87cefa;
}
