/* === BASE ORIGINAL === */
body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: #3D1185;
  margin: 0;
  padding: 0;
}

/* === ACORDEÓN === */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: #00E6FF;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
  color: #00E6FF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.faq-answer.show {
  max-height: 300px;
  opacity: 1;
  margin-top: 8px;
}

/* === CORRECCIONES === */
.faq-item, .faq-question, .faq-answer {
  text-align: left;
}
.faq-item, .faq-question, .faq-answer {
  font-size: calc(1rem * var(--mf-font-scale, 1)) !important;
  font-family: inherit;
  background: transparent;
}

body.mf-contrast .faq-item {
  background-color: #222 !important;
  color: #f5f5f5 !important;
  border-color: #555 !important;
}

body.mf-readable-font .faq-question,
body.mf-readable-font .faq-answer {
  font-family: Arial, Helvetica, sans-serif !important;
}

body.mf-underline-links .faq-answer a {
  text-decoration: underline !important;
}

/* BOTÓN VOLVER */
.mf-btn--volver {
  display: inline-block;
  text-align: center;
  background: #E43037;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 20px;
  transition: transform .25s ease, filter .25s ease;
}

.mf-btn--volver:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.mf-btn--volver:active {
  transform: translateY(0);
  filter: brightness(0.9);
}