/* =================================================
   FAQ SECCIÓN
   ================================================= */

.faq {
  background: #111;
  padding: 90px 8%;
  color: white;
}


/* título */
.faq-titulo {
  text-align: center;
  font-family: "questrial";
  font-size: 2.3rem;
  margin-bottom: 55px;
  letter-spacing: 1px;
}


/* contenedor */
.faq-lista {
  max-width: 900px;
  margin: 0 auto;
}


/* item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}


/* botón pregunta */
.faq-pregunta {
  width: 100%;
  background: none;
  border: none;
  color: white;

  text-align: left;

  font-size: 1.1rem;
  font-weight: 600;

  padding: 20px 10px;

  cursor: pointer;

  position: relative;
}


/* símbolo + */
.faq-pregunta::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  color: #c80000;
}


/* respuesta */
.faq-respuesta {
  max-height: 0;
  overflow: hidden;

  color: rgba(255,255,255,0.75);

  line-height: 1.6;
  padding: 0 10px;

  transition: all 0.35s ease;
}


/* estado activo */
.faq-item.activo .faq-respuesta {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-item.activo .faq-pregunta::after {
  content: "−";
}
