/* ====================
*MENU NERTICAL*
==================== */

ul.acorh,
ul.acorh * {
  margin: 0;
  padding: 0;
  border: 0;
}

ul.acorh {
  margin: 10px auto; /* separacion del la esquina */
  padding: 0;
  list-style: none;
  width: 60%;
  max-width: 600px;
  font-size: 18px;
  margin-left: 0;
  text-align: center; /* Texto centrado */

}

ul.acorh li {
  list-style: none;
  text-align: center; /* Texto centrado */
}

ul.acorh li a {
  margin: 1px auto;  /* separacion entre cada bloque */
  display: block;
  padding: 10px 10px; /* tamaño del espacio total */
  width: 120px;
  background: #243cd6;
  color: #03cffc;
  border-bottom: 1px solid #000;
   border-top: 1px solid #000; 
   border-left: 1px solid #000;
   border-right: 1px solid #000; 
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center; /* Texto centrado */
  margin-left: 0;
  font-weight: normal; /* Eliminado el estilo bold */
  box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 15px;

}

ul.acorh li ul {
  max-height: 0;
  margin: 0;
  /* padding: 0; */
  padding-left: 0px; /* SE ABRE EL BLOQUE un poco a la derecha */
  padding-right: 10px;
  width: 120px;
  list-style: none;
  overflow: hidden;
  transition: .3s all ease-in;
  margin-left: 0px;
  box-sizing: border-box;
  */width: 100%;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 15px;
 
}

ul.acorh li:hover ul {
  max-height: 1000px; /* Ajusta este valor según tus necesidades */
  transition: .3s all ease-in;
}

ul.acorh li li {
  display: block;
  width: 100%;
}


ul.acorh li li a {
  /* max-height: 20px; */
  margin: 0;
  /* display: block; */
  /* padding: 10px 40px; */
  padding-left: 10px;
  padding-right: 10px;
  width: 120px;
   background: #00ccff;
  color: #000;
  font-size: 16px;
  /* border: 0; */
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center; /* Texto centrado */
  margin-left: 0px;
  font-weight: normal; /* Eliminado el estilo bold */

  
}

ul.acorc li li:last-child a {
  border-bottom: 0;
}


ul.acorh li:hover ul {
  /* max-height: 1000px; */
  transition: .3s all ease-in;
}

ul.acorh li a {
  transition: background 0.5s ease; /* Añadido para la transición */
}

ul.acorh li a:hover {
  background: green;
  color: #fff;
}
ul.acorh li li a {
  max-height: 1000px;  /* ESTE ELEMENTO ES EL QUE LE DA EL HEIGHT PARA LAS COLUMNAS */
  transition: background 0.5s ease; /* Añadido para la transición */
}
  ul.acorh li li a:hover {
    background: #d11aff;
    color: black;
  }


/* ====================
* FIN MENU NERTICAL*
==================== */