/* styles.css moderno para Bliss & Bloom */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #e6c9c9;
  color: #2c2c2c;
  line-height: 1.6;
}

nav {
  background-color: #fff5f7;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e2e2e2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav .logo img {
  height: 60px;
  border-radius: 50%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #4a2e2a;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #d6336c;
}

.seccion {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.seccion h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0;
  margin-top: 2rem;
}

.productos li {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 1rem;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.productos li:hover {
  transform: translateY(-5px);
}

.productos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.precio {
  font-weight: bold;
  color: #d6336c;
  margin-top: 0.5rem;
}

blockquote {
  background-color: #fff;
  border-left: 5px solid #ffc2d1;
  margin: 1.5rem auto;
  padding: 1rem;
  border-radius: 12px;
  font-style: italic;
  max-width: 700px;
}

.qr {
  max-width: 160px;
  margin-top: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  background-color: #fff0f3;
  color: #333;
  margin-top: 2rem;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .productos img {
    height: 250px;
  }
}

  /* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
