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

.acordeon ul > li {
  border-bottom: 1px solid #ddd;
}

.acordeon ul > li ul li {
  padding: 20px 10px;
}

.acordeon-titulo {
  display: block;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 600;
  background: #f5f5f5;
  position: relative;
}
.acordeon-titulo h1,
.acordeon-titulo h2,
.acordeon-titulo h3,
.acordeon-titulo h4,
.acordeon-titulo h5,
.acordeon-titulo h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  text-align: left;
}

.acordeon-titulo::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.acordeon ul > li.activo .acordeon-titulo::after {
  content: "−";
}

.acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none;
  margin: 0;
  padding-left: 16px;
}