
  /* Estilos del encabezado */
  header {
    background-color: #f5f5f5;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    width: 100%;
    z-index: 1000; /* Esto asegura que el encabezado estÃ© por encima de todo */
    padding: 0px
  }

  .header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 77px; /* Ajusta esto al tamaÃ±o que prefieras */
    padding: 22px;
}

  .menu-toggle {
    display: none; /* Oculta el botÃ³n de menÃº por defecto */
    padding: 25px;

}
  .cart-toggle {
    display: none; /* Oculta el botÃ³n de menÃº por defecto */
    padding: 25px;

}

   nav{
    margin-right: 30px;
   }

  /* Estilos del menÃº de navegaciÃ³n */
  nav ul {
    list-style: none;
    padding: 0;
    
  }
  
  nav ul li {
    display: inline;
  }
  
  nav ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #007bff;
  }
  
 
  
  /* Estilos del pie de pÃ¡gina */
  footer {
    background-color: #f5f5f5;
    color:rgb(0, 0, 0);
    padding: 20px;
    font-size: 14px;
  }
  .social-icons {
    margin: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem; /* Separación por defecto para móvil */
} 

.social-icons .iconify {
  width: 32px !important;
  height: 32px !important;
  font-size: 32px !important;
}

/* Tablet y Desktop - menos separación */
@media (min-width: 768px) {
  .social-icons {
    gap: 1rem; /* Menos separación en tablet y desktop */
  }
}

a{
  color :rgb(0, 0, 0);
  text-decoration: none;
}
footer img{
  height: 77px;
}

.footer-container {
  display: flex;
  text-align: center;

}
.footer-bottom {
text-align: center;
}

.footer-divider {
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
  border: none;
}

@media only screen and (max-width: 600px) {
.footer-container{
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin:20px;
    text-align:start;
}
.soporte, .legal, .enlaces {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.terminos-link {
  word-break: break-word;
  line-height: 1.2;
  max-width: 100px;
}
}

@media only screen and (min-width: 601px) {
.footer-container{
  display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr))
}
.footer-links {
  display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
    margin:20px;
    text-align:start;
}
.soporte, .legal, .enlaces {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

}



  /* Estilos para mÃ³viles */
@media only screen and (max-width: 600px) {
    header {
      align-items: center;
      justify-content: center;
      display: flex;

    }

    .header-icon {
        margin: 0 auto; /* Esto centra el icono */
        
      }
  
    .menu-toggle {
      display: block; /* Mostrar el icono de menÃº */
      font-size: 32px;
    }
    .cart-toggle {
      display: block; /* Oculta el botÃ³n de menÃº por defecto */
      font-size: 32px;

  }
    
  
    nav {
      display: none; /* Ocultar el menÃº de navegaciÃ³n en mÃ³viles */
    }
  
    nav.active {
      display: block; /* Mostrar el menÃº cuando se activa en mÃ³viles */
    }
  
    nav ul li {
      display: block;
      margin: 10px 0;
    }
  }

  #web-nav {
    text-align: right;
    

}
#web-nav a{
  margin-left: 10px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

#web-nav a:hover {
  color: #007bff;
}

#web-nav ul{
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(7, minmax(0, 1fr))


}



  #mobile-nav {
    display: none;
    position: fixed;
    top: 120px; /* Ajusta este valor segÃºn la altura de tu encabezado */
    width: 100%;
    z-index: 3; /* Esto asegura que el menÃº estÃ© por encima de la portada */
    background-color: rgb(238, 241, 255);    
    border-top: 1px solid #5e76e3ff;
    border-bottom: 1px solid #5e76e3ff;        
    text-align: center;
}

.mobile-nav-image {
    display: none;
    position: fixed;
    top: 130px; /* Encima del mobile-nav */
    right: 20px;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9999;
}

.mobile-nav-image-2 {
    display: none;
    position: fixed;
    top: 180px; /* Encima del mobile-nav */
    left: 50px; /* Al lado izquierdo de la primera imagen */
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9998;
}

#mobile-nav.open + .mobile-nav-image,
.mobile-nav-image.show-with-menu,
.mobile-nav-image-2.show-with-menu {
    display: block;
}

#mobile-nav.open {
    display: block;
}
  
#mobile-nav-cart {
  display: none;
  position: fixed;
  top: 120px; /* Ajusta este valor segÃºn la altura de tu encabezado */
  width: 100%;
  z-index: 2; /* Esto asegura que el menÃº estÃ© por encima de la portada */
    background-color: rgb(238, 241, 255);    
  border-top: 1px solid #5e76e3ff;
  border-bottom: 1px solid #5e76e3ff;
  text-align: center;
}

#mobile-nav-cart.open {
  display: block;
}



/* Estilos para separar los iconos en el menú móvil */
.dm-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin: 15px 0;
}

.dm-contact a {
  display: inline-block;
  padding: 10px;
  transition: transform 0.3s ease;
}

.dm-contact a:hover {
  transform: scale(1.1);
}

/* Estilos para el modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.modal-content h3 {
  margin-bottom: 25px;
  color: #333;
  font-size: 18px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #333;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.contact-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  min-width: 100px;
}

.contact-button.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-button.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.contact-button span {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media only screen and (max-width: 600px) {
  .contact-icons {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-button {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  
  .contact-button span {
    margin-top: 0;
  }
}


