.categorias ul {
  list-style:none; 
  padding:0;
  margin:0;
}
.categorias li {
  border-bottom:1px solid #666363;
}

.categorias a:hover {
  background:#e2f1ff;
}
.categorias .nombre i {
    margin-right:4px;
    color:#043a87;
    font-size:17px; 
    
}
.subcategorias {
  display:none; 
  padding-left:20px; 
  background:#fafafa;
}
.subcategorias li a {
  font-size:14px; 
  color:#555;
}
.subcategorias li a:hover {
  background:#e6f2ff;
}
.categorias a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  position: relative;
letter-spacing: -0.5px;
font-size: 14px;
text-transform: uppercase;
}

.categorias a::after {
  content: "\f105"; /* Font Awesome flecha derecha */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  color: #023277;
  transition: transform 0.3s ease;
}

.categorias a.open::after {
  transform: rotate(90deg); /* gira la flecha cuando se abre */
  color: #023277;
}

.titulo_cat{
    font-size: 19px;
    font-weight: 800;
    color: #043a87;
}
