/* ESTILS PER A FAQS */
.faq-categoria {
  margin: 35px 0 10px;
}
.faq-categoria h2 {
  display: inline-block;
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
  color: #444;
  font-weight: 600;
}

.faq-categoria h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #85b420;
}

.faq-item {
  margin: 0;
  border-bottom: 1px solid #ddd;
}

.faq-item summary {
  position: relative;
  padding: 16px 42px 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #444;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #8bbe1e;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary:hover {
  color: #8bbe1e;
}
.faq-respuesta {
  padding: 0 42px 16px 0;
}
.faq-respuesta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 767px) {
  .faq-categoria {
    margin-top: 25px;
  }
  .faq-categoria h3 {
    font-size: 20px;
  }
  .faq-item summary {
    padding: 14px 38px 14px 0;
    font-size: 15px;
  }
  .faq-respuesta {
    padding: 0 38px 14px 0;
  }
  .faq-respuesta p {
    font-size: 14px;
  }
}
