body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #444;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #c5a23e, #fff);
}

header h2 {
  color: #444;
  font-size: 2em;
  margin-bottom: 10px;
}

header p {
  color: #555;
}

/* Productos */
#productos {
  text-align: center;
  padding: 40px 20px;
}

.producto {
  margin: 30px auto;
  max-width: 800px;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.producto h3 {
  color: #c5a23e;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.galeria img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-contenido {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Botón WhatsApp */
.boton {
  background-color: #c5a23e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.boton:hover {
  background-color: #a88e36;
}

/* Recomendaciones */
#recomendaciones {
  background-color: #eee;
  padding: 40px;
  text-align: center;
}

.testimonios p {
  margin: 10px 0;
}

/* Pie de página */
footer {
  background-color: #444;
  color: #ddd;
  text-align: center;
  padding: 20px;
}

/* Pantalla de bienvenida */
.bienvenida {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeOut 2s ease 2.5s forwards;
}

.bienvenida img {
  width: 120px;
  margin-bottom: 20px;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
