.cw-faq {
  display: flex;
  width: 100%;
  padding: 1rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1.5rem;
  background: #FFF;
}

.cw-faq__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  cursor: pointer; /* Hace que el cursor indique que es un elemento interactivo */
}

.cw-faq__question {
  margin: 0px !important;
  color: #3B2A82 !important;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal;
  text-align: left;
}

.cw-faq__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.cw-faq__divider {
  width: 100%;
  height: 0.0625rem;
  background: #F2EFFB;
}

.cw-faq__body {
  background: #FFF;
}

.cw-faq__answer {
  margin: 0px !important;
  color: #7A719B;
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.cw-faq .cw-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.cw-faq.open .cw-faq__body {
  max-height: 1000px; /* Ajusta este valor según sea necesario */
  transition: max-height 0.5s ease-in;
}

.cw-faq .cw-faq__divider {
  max-height: 0;
  margin: 0rem;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.cw-faq.open .cw-faq__divider {
  margin: 0.75rem 0rem;
  max-height: 1000px; /* Ajusta este valor según sea necesario */
  transition: max-height 0.5s ease-in;
}

.cw-faq.open .cw-faq__icon {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in;
}

/* Media queries para la responsividad */
@media (max-width: 768px) {
  .cw-faq__question {
    max-width: 340px;
    font-size: 16px;
  }

  .cw-faq__answer {
    font-size: 14px;
  }

  .cw-faq__icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .cw-faq {
    padding: 0.5rem;
  }

  .cw-faq__question {
    font-size: 14px;
  }

  .cw-faq__answer {
    font-size: 12px;
  }

  .cw-faq__icon {
    width: 18px;
    height: 18px;
  }
}



/*# sourceMappingURL=cw_faq.min.css.map*/