<style>
.faq__entry {
  border-bottom: 1px solid rgba(0,0,0,.07);
  margin-bottom: 0;
}

.faq__header {
  display: flex;
  align-items: flex-start;
  padding: 20px 0 5px 0;
  font-weight: 500;
  background: none;
  cursor: default;
  line-height: 1.5;
  transition: none;
}

.faq__header span {
  margin-bottom: 0;
  font-weight: 500;
}

.faq__answer {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  display: block !important;
  transition: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.faq__inner {
  padding-bottom: 30px;
  line-height: 1.6;
}

/* Estilos para modo claro */
.faq-color-light .faq__entry {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.faq-color-light * {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .faq__header {
    padding: 15px 0 5px 0;
  }
  .faq__inner {
    padding-bottom: 20px;
  }
}
</style>