/* Reset y básicos */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover,
.menu .activo {
  color: #e58cbf;
}

/* Logo */
.logo {
  max-width: 180px;
  height: auto;
  margin: 1rem auto;
  display: block;
}

/* Menú */
.menu {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.menu a {
  font-weight: bold;
  font-size: 1.1rem;
}

/* Hero */
.hero-banner {
  background-color: #ffe8f0;
  padding: 3rem 1rem;
}

.hero-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.btn-principal {
  background-color: #e58cbf;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
}

/* Productos */
.productos-destacados h2 {
  text-align: center;
  margin: 3rem 0 2rem;
}

.producto {
  max-width: 300px;
}

.producto img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.producto img:hover {
  transform: scale(1.05);
}

/* Testimonios */
.testimonios {
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff7fa;
  border-left: 5px solid #e58cbf;
}

.testimonios blockquote {
  font-style: italic;
  font-size: 1.2rem;
}

/* Cómo comprar */
.como-comprar {
  margin: 3rem auto;
  line-height: 1.6;
}

.como-comprar h2 {
  margin-top: 2rem;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
}

.redes-sociales img {
  transition: transform 0.3s ease;
}

.redes-sociales img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    max-width: 140px;
  }

  .producto {
    width: 90%;
    margin: auto;
  }

  .menu a {
    font-size: 1rem;
  }

  .hero-banner h2 {
    font-size: 1.6rem;
  }
}
.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.grid-galeria figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.grid-galeria figure:hover {
  transform: scale(1.03);
}

.grid-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

#btnArriba {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: none;
  background-color: #e58cbf;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  cursor: pointer;
}
a {
  transition: color 0.3s ease;
}

a:hover {
  color: #e58cbf;
}

button:hover, .btn:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
