/* =========================
   FAQs Acordeón (Estilo custom)
   ========================= */
.faqs {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
}

.faqs h4 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.faqs h6 {
  font-size: 14px;
  font-weight: 400;
  color: #d8e6da;
  text-align: center;
  margin-bottom: 40px;
}

.faq-accordion {
  border-top: 1px solid rgba(255,255,255,0.2);
}

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

.faq-question {
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #a7d692; /* verde del theme */
}

.faq-icon {
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #e5e5e5;
  line-height: 1.6;
  font-size: 14px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* suficiente para el contenido */
  padding: 10px 0 20px 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* cambia + a una X */
}
