 
  .item {
    display: block;
    margin-right: 00;
    margin-bottom: 10px;
    margin-left: 10%;
    padding-left: 0px;
    border-left: 0px solid black;
    font-family: helvetica neue;
    background-color: transparent;
  }
  
  .item a {
    color: black; /* texto negro por defecto */
    text-decoration: none; /* eliminar subrayado */
    position: relative; /* posición relativa para el texto desplazado */
  }
  
  .item a:hover {
    color: #000000;
    -webkit-text-stroke: 3px black;
  }
  
  .item:hover .hidden-text {
    left: 0;
  }
  
  .hidden-text {
    z-index: 5;
    display: none;
    position: absolute;
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 5px;
    pointer-events: none; /* Agregado para permitir hacer clic en el enlace */
  }
  
   
  
  /* FONT */
  /* Móvil */
  @media only screen and (max-width: 767px) {
    .container-items2 button {
       font-size: 20px;
    }
    
    .filter-items {
       font-size: 25px;
    }
    
    .item {
       font-size: 25px;
    }
    
    nav{ 
      width: 90vh;
      font-size: 0.9rem;
  
    }
  }
  
  /* Tablet */
  @media only screen and (min-width: 768px) and (max-width: 1024px) {
    .container-items2 button {
       font-size: 25px;
    }
    
    .filter-items {
       font-size: 20px;
    }
    
    .item {
       font-size: 40px;
    }
  }
  
  /* Laptop */
  @media only screen and (min-width: 1025px) {
    .container-items2 button {
       font-size: 80px;
    }

    .filter-items {
       font-size: 80px;
    }
    
    .item {
       font-size: 40px;
    }

    .hidden-text {
      font-size: 35px;
    }
  }
  
  
  /* MARGENES */
  /* Móvil */
  @media only screen and (max-width: 767px) {
    .container-items {
      margin-left: 10px;
      margin-top: 20px;
    }
  }
  
  /* Tablet */
  @media only screen and (min-width: 768px) and (max-width: 1024px) {
    .container-items {
      margin-left: 10px;
      margin-top: 20px;
    }
  }
  
  /* Laptop */
  @media only screen and (min-width: 1025px) {
    .container-items {
      margin-left: 20px;
      margin-top: 20px;
    }
  }

  
  
/*---------------------------------------------------- MENU FLOTANTE INICIO ------------------------------------------------------*/
/*---------------------------------------------------- MENU FLOTANTE INICIO ------------------------------------------------------*/
/*---------------------------------------------------- MENU FLOTANTE INICIO ------------------------------------------------------*/

/* Estilos generales */
nav {
  width: 100%;
  background-color: white;
  font-size: 0.9rem;
  position: fixed;
  top: 0;
  left: 10px;
  z-index: 50;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  display: inline-block;
}

nav a {
  font-family: Arial, sans-serif;
  display: block;
  padding: 10px 20px;
  color: #000000;
  text-decoration: none;
}

nav a:hover {
  color: #000000;
  -webkit-text-stroke: 1px black;
}

.logo {
  position: fixed;
  top: 28px;
  left: 15px;
  width: 35px;
  height: 35px;
  z-index: 100;
  cursor: pointer;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  position: fixed;
  top: 28px;
  left: 15px;
  width: 35px;
  height: 35px;
  z-index: 200;
  cursor: pointer;
}

/* Ocultar botón de cerrar (X) por defecto */
.close-btn {
  display: none;
}

/* Estilos para móviles */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 28px;
    left: 15px;
    width: 35px;
    height: 35px;
    z-index: 200;
    cursor: pointer;
  }

  nav {
    display: none;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 170px;
    padding-top: 70px;
    transform: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .close-btn {
    display: none;
    background: none;
    border: none;
    position: fixed;
    top: 20px;
    right: 15px;
    font-size: 36px;
    text-decoration: none;
    color: black;
    z-index: 1200;
    font-family: Arial, sans-serif;
    cursor: pointer;
  }
}

/* Estilos para tablets/laptops */
@media (min-width: 1024px) {
  nav {
    transform: rotate(-90deg);
    transform-origin: top left;
    top: 97%;
  }
}


/*---------------------------------------------------- MENU FLOTANTE FIN ------------------------------------------------------*/
/*---------------------------------------------------- MENU FLOTANTE FIN ------------------------------------------------------*/
/*---------------------------------------------------- MENU FLOTANTE FIN ------------------------------------------------------*/


/*-------------------------------------------------- DERECHOS Y LINKS INICIO -----------------------------------------------------*/
/*-------------------------------------------------- DERECHOS Y LINKS INICIO -----------------------------------------------------*/
/*-------------------------------------------------- DERECHOS Y LINKS INICIO -----------------------------------------------------*/

footer {
  width: 100%;
  padding: 50px 0px 0px;
  margin-bottom: 35px;
  box-sizing: border-box;
}

.footer-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-links a {
  text-decoration: none;
  color: black;
}

.footer-links a:hover {
  -webkit-text-stroke: 1px black;
}

/* Ajustes para pantallas móviles */
@media screen and (max-width: 768px) {
  .footer-links {
    flex-direction: column; /* Los enlaces se apilan uno debajo del otro */
    align-items: center; /* Centra los enlaces en el eje horizontal */
    justify-content: center; /* Centra los enlaces en el eje vertical */
  }

  .footer-links a {
    margin-bottom: 10px; /* Espacio entre los enlaces */
  }

  .footer-links a:last-child {
    margin-bottom: 0; /* El último enlace no tiene margen abajo */
  }
}
/*-------------------------------------------------- DERECHOS Y LINKS FIN -----------------------------------------------------*/
/*-------------------------------------------------- DERECHOS Y LINKS FIN -----------------------------------------------------*/
/*-------------------------------------------------- DERECHOS Y LINKS FIN -----------------------------------------------------*/