/* ESTILO GENERAL*/
body {
  margin: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif; 
  background-color: #fff;
}

/*  MENÚ */
#menu {
  background-color: #ffb6c1;
  padding: 10px 0;
  text-align: center;
}

#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu li {
  display: inline-block;
  margin: 0 15px;
}

#menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
#menu a:hover {
  color: #ffd1dc;
  text-shadow: 0 0 8px rgba(255, 182, 193, 0.9);
}
#menu a i.fa-circle-info {
  display: inline-block;
  transition: transform 0.6s ease-in-out;
  transform: rotate(0deg);
}

#menu a:hover i.fa-circle-info {
  transform: rotate(360deg);
}

/* ===== SECCIÓN PRINCIPAL ===== */
#inicio {
  padding: 50px 10%;
  text-align: center;
}

/* Contenedor con línea rosada */
.linea-rosa {
  border: 3px solid #ffb6c1;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.linea-rosa h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ff69b4;
  text-align: center;
  margin-bottom: 20px;
}

.linea-rosa p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Imagen del inicio */
#imagen-responsiva {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
  object-fit: contain;
  box-sizing: border-box;
}

/* ===== PRODUCTOS ===== */
.lista-productos {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lista-productos li {
  background-color: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 120px;
}

/* Números celestes */
.numero {
  color: #6ec5ff;
  font-size: 22px;
  font-weight: 700;
  margin-right: 10px;
  width: 25px;
  text-align: center;
}

/* Línea divisora */
.linea-divisora {
  width: 3px;
  height: 60px;
  background-color: #6ec5ff;
  margin-right: 15px;
  border-radius: 10px;
}

/* Contenido */
.contenido {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

.texto {
  flex: 1;
  z-index: 2;
}

/* Subtítulos con icono al lado derecho */
.texto h3 {
  color: #ff69b4;
  font-size: 19px;
  margin: 0 0 5px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px; 
}

.texto h3 i {
  font-size: 18px;
  color: #ff69b4;
}

/* Descripción */
.texto p {
  color: #444;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

/* Imagen centrada */
.contenido img {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  opacity: 0.6;
  z-index: 0;
}

/* Hover producto */
.lista-productos li:hover {
  background-color: #f8fbff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Contacto */
.contacto {
  text-align: left;
  max-width: 900px;
  margin: 20px auto 0 auto;
  font-size: 15px;
}

.contacto a {
  color: #6ec5ff;
  text-decoration: none;
}

.contacto a:hover {
  text-decoration: underline;
}

/* Pie */
#pie {
  background-color: #ffb6c1;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
  .lista-productos li {
    flex-direction: column;
    text-align: center;
    min-height: 120px;
  }

  .contenido img {
    width: 80px;
  }

  .texto {
    text-align: center;
  }

  .texto h3 {
    justify-content: center;
  }
}

/* Desplazamiento */
html {
  scroll-behavior: smooth;
}
