/* ===== FAQ estilo editorial tipo bpulse ===== */

.faq-wrap {
  background: #faf7f3;
  padding: 80px 0;
}

.faq-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-row {
  border-bottom: 1px solid #222;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  padding-bottom: 24px;
  display: none;
}

.faq-row.active .faq-answer {
  display: block;
}

.faq-row.active .faq-icon {
  transform: rotate(180deg);
}

.faq-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #faf7f3;
  padding: 80px 0;
}

/* RESET TOTAL FAQ */
.faq-wrap * {
  background: transparent !important;
  box-shadow: none !important;
}

/* Pregunta */
.faq-question {
  font-weight: 600;
  color: #111;
  padding: 28px 0;
}

/* Línea divisoria */
.faq-row {
  border-bottom: 1px solid #222;
}

/* ===============================
   FAQ estilo editorial limpio
   =============================== */

/* Sección completa */
.faq-wrap {
  background-color: #faf7f3;
  padding: 120px 0 100px; /* aire real debajo del header */
}

/* Contenedor centrado tipo bpulse */
.faq-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Cada bloque */
.faq-row {
  border-bottom: 1px solid #222;
}

/* Pregunta */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  cursor: pointer;

  /* 🔥 matar cualquier herencia */
  background: transparent !important;
  border-radius: 0 !important;
}

/* Flecha */
.faq-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Respuesta */
.faq-answer {
  display: none;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  padding-bottom: 24px;
}

/* Estado activo */
.faq-row.active .faq-answer {
  display: block;
}

.faq-row.active .faq-icon {
  transform: rotate(180deg);
}
