.bloque-faqs {
  max-width: 850px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: left;
}
.bloque-faqs__titulo {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #e59eaf;
  font-weight: 700;
}
.bloque-faqs__lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bloque-faqs__item {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}
.bloque-faqs__pregunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border: none;
  padding: 15px 18px;
  cursor: pointer;
  text-align: left;
}
.bloque-faqs__pregunta h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.bloque-faqs__icono {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  position: relative;
}
.bloque-faqs__icono::before, .bloque-faqs__icono::after {
  content: "";
  position: absolute;
  background: #e59eaf;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bloque-faqs__icono::before {
  width: 12px;
  height: 2px;
}
.bloque-faqs__icono::after {
  width: 2px;
  height: 12px;
}
.bloque-faqs__pregunta[aria-expanded=true] .bloque-faqs__icono::after {
  display: none;
}
.bloque-faqs__respuesta {
  padding: 0 18px 18px;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}
.bloque-faqs__respuesta p {
  margin: 0;
}
