/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff6f9;
  color: #5c3a3a;
  line-height: 1.6;
}

/* Encabezado */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffe3ec;
  flex-wrap: wrap;
  border-bottom: 2px solid #d48ca6;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  max-height: 100px;
}

.logo h1 {
  font-size: 1.8em;
  color: #c94f7c;
}

.logo p {
  font-size: 1em;
  color: #a85c7a;
}

/* Hero */
.hero {
  background-color: #fff0f5;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content img {
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 2em;
  color: #c94f7c;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2em;
  color: #a85c7a;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #d94f8c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b03b6d;
}

/* Productos */
.productos-destacados {
  background-color: #fff6f9;
  padding: 40px 20px;
  text-align: center;
}

.productos-destacados h3 {
  font-size: 1.6em;
  color: #c94f7c;
  margin-bottom: 30px;
}

.productos-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.productos-grid div {
  width: 150px;
  text-align: center;
}

.productos-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.productos-grid p {
  margin-top: 10px;
  color: #a85c7a;
  font-weight: bold;
}

/* Formulario */
.formulario-pedido {
  padding: 40px 20px;
  background-color: #ffe3ec;
}

.formulario-pedido h2 {
  text-align: center;
  font-size: 1.8em;
  color: #c94f7c;
  margin-bottom: 30px;
}

.formulario-whatsapp {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario-whatsapp input,
.formulario-whatsapp select,
.formulario-whatsapp textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1em;
}

.formulario-whatsapp input:invalid,
.formulario-whatsapp select:invalid,
.formulario-whatsapp textarea:invalid {
  border: 2px solid red;
}

.formulario-whatsapp button {
  background-color: #d94f8c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.formulario-whatsapp button:hover {
  background-color: #b03b6d;
}

/* Footer */
footer {
  background-color: #ffe3ec;
  color: #5c3a3a;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-top: 2px solid #d48ca6;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar,
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content img,
  .hero-text {
    max-width: 100%;
  }

  .productos-grid {
    flex-direction: column;
    align-items: center;
  }
}
