.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-icon {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    content: '–';
}




.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.accordion-item.active .accordion-content {
    opacity: 1;
}

.accordion-widget {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.accordion-header {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  background-color: #f7f7f7;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* Puedes ajustar o usar JS para auto */
  padding: 10px;
}
