.faq-page {
  background: linear-gradient(180deg, #f5f7fb, #eef2f7);
  padding: 180px 20px 60px;
  display: flex;
  justify-content: center;
}

.faq-card {
  background: #fff;
  max-width: 900px;
  width: 100%;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.faq-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 35px;
  color: #111;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #eee;
}

/* BOTÓN */
.faq-question {
  width: 100%;
  padding: 18px 10px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
}

/* ICONO */
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: #e11d48;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

/* RESPUESTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 10px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 10px 10px 18px;
}

@media (max-width: 1024px) {
  .faq-page {
  padding: 130px 20px 60px;
  }
}