/* ── FaqSection ───────────────────────────────────── */
.faq-section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
}

/* Layout dos columnas */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-image-col { order: 2; }
  .faq-content-col { order: 1; }
}

/* Imagen */
.faq-img-wrap {
  overflow: hidden;
}
.faq-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Cabecera — igual que ServiceSection / PostsSection */
.faq-section .react-heading.style9 {
  margin-bottom: 36px;
}
.faq-section .react-heading .image-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.faq-section .react-heading .title-img.top img {
  width: 28px;
  height: 28px;
}
.faq-section .react-heading .sub-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C4A28;
}
.faq-section .react-heading .title {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a1a;
  line-height: 1.2;
  margin: 0;
}

/* Acordeón */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #dde8dd;
}

.faq-item:first-child {
  border-top: 1px solid #dde8dd;
}

/* Botón pregunta */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1a3a1a;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #2C4A28;
    background-color: #d4e8ce !important;
}

.faq-question:hover .faq-icon {
  background-color: #d4e8ce !important;
}

.faq-item--open .faq-question {
  color: #2C4A28;
}

/* Icono +/- */
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #eef5eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #2C4A28;
  transition: background-color 0.25s, color 0.25s;
}

.faq-icon i {
  transition: transform 0.3s ease;
  display: block;
  line-height: 1;
}

.faq-item--open .faq-icon {
  background-color: #2C4A28;
  color: #ffffff;
}

.faq-item--open .faq-icon i {
  transform: rotate(45deg);
}

/* Respuesta */
.faq-answer {
  overflow: hidden;
}

.faq-answer__inner {
  padding: 0 48px 22px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

