.acordeon {
  width: 100%;
  font-family: 'Century Gothic', Helvetica, Arial, sans-serif;
margin-top: -40px;
}


.acordeon-item {
  border-bottom: 7px solid #ddd;
}

.acordeon-question {
  width: auto;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.9s ease;
  color: #666;
  display: inline-flex;
  justify-content: flex-start; /* ya no separa al máximo */
  align-items: center;
  gap: 20px; /* espacio entre texto y símbolo */
}
 

.acordeon-question:hover {
  background-color: none;
  border-radius: 12px;
}

.acordeon-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease, padding 0.1s ease;
  background-color: #fff;
  border-radius: 1px;
  color: #000;
}

.acordeon-answer.open {
  padding: 1rem;
}

.acordeon-answer p {
  margin: 0;
  line-height: 1.5;
}




.acordeon-icon {
  margin-left: 0;        /* o simplemente elimina la propiedad */
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}


.acordeon-question[aria-expanded="true"] .acordeon-icon {
  content: "−";
}
