/* Estilo General*/
/* ---------- ESTILOS GENERALES ---------- */
body {
  background-image: url("images/fondo.png"); /* Ruta de tu imagen */
  background-attachment: fixed;              /* Fondo fijo al hacer scroll */
  background-position: center;               /* Centrado */
  background-repeat: no-repeat;              /* No repetir */
  background-size:cover;                /* Cubrir todo el fondo */
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: 'Georgia', serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ---------- ENCABEZADO ---------- */
.encabezado {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.encabezado img {
  width: 10rem;
  border-radius: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.encabezado img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #e03ba1;
}

.encabezado h1,
.encabezado h2, .text {
  margin: 0.5rem 0;
  padding: 0 10px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e03ba1;
  text-shadow: 2px 2px 5px rgb(255, 223, 248);
}

.encabezado h1 {
  font-weight: bold;
  font-size: 2rem;
}

.encabezado h2 {
  font-weight:500;
  font-size: 1.2rem;
}

.text {
font-weight: bold;
  font-size: 1.5rem;
}

/* ---------- REDES SOCIALES ---------- */
.redes {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 10px;
  flex-wrap: nowrap;
}

.redes img {
 display: inline-block;
  width: 5rem;
  height: auto;
  border-radius: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.redes img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e03ba1;
}

/* ---------- DESTACADOS ---------- */
.tienda {
  text-align: center;
  padding: 30px 20px;
  display:block
  
}

.tienda-img {
width: 100%;       /* ✅ Usa todo el ancho del contenedor .tienda */
  max-width: 830px; /* ✅ Igual al tope visual que tendrá .galeria */
  margin: 0 auto 30px auto; /* ✅ Centrado con margen inferior */
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.tienda-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #e03ba1;
}

/* ---------- GALERÍA DE PRODUCTOS ---------- */

.galeria {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background-color: #FFF7AD;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  max-width: 830px; /* igual que la tienda-img */
  box-sizing: border-box;
}

.producto {
  flex: 0 1 calc(33.33% - 13.33px); /* 3 elementos con gap de 20px */
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto img {
  width: 40px;
  height: auto;
  object-fit: contain;
  display: block;
}
.producto:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e03ba1;
}

/* ---------- BLOG ---------- */
.blog {
  background-color: transparent;
  padding: 10px 20px;
  text-align: center;
}

.blog h2 {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.enlacesblog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.enlacesblog a {
  background-color: #FFF7AD;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  color: #1a237e;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  font-size: 1rem;
  min-width: 100px;
  display: flexbox;
  align-items: center;
  justify-content: center;
}

.enlacesblog a:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(224, 59, 161, 0.3);
  background-color: #ffe5f1;
  color: #d81b60;
}

/* ---------- FOOTER ---------- */
footer {
  font-weight: bold;
  margin: 40px 0 20px;
}
