/* ── BASE ── */
.lch-wrap .lch-faq {
  padding: 64px 20px; background: #F8F9FA; width: 100%;
}
.lch-wrap .lch-faq .lch-only-desktop { display: none !important; }
.lch-wrap .lch-faq .lch-only-mobile  { display: block !important; }

/* ── CABECERA ── */
.lch-wrap .lch-faq-header {
  text-align: center; max-width: 640px; margin: 0 auto 48px;
  animation: lchFadeUp 0.5s 0.1s ease both !important; opacity: 0;
}
.lch-wrap .lch-faq-title {
  font-size: clamp(22px, 3.5vw, 38px) !important;
  font-weight: 900 !important; color: var(--lch-black) !important;
  line-height: 1.25 !important; margin: 0 0 16px !important;
  letter-spacing: -0.5px; text-align: center !important;
}
.lch-wrap .lch-faq-sub {
  font-size: clamp(15px, 1.3vw + 6px, 18px) !important;
  color: var(--lch-gray1) !important; line-height: 1.6 !important;
  margin: 0 !important; text-align: center !important;
}

/* ── GRID ── */
.lch-wrap .lch-faq-grid {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
  animation: lchFadeUp 0.5s 0.2s ease both !important; opacity: 0;
}

/* ── DETAILS / SUMMARY ── */
.lch-wrap .lch-faq-item {
  background: var(--lch-white); border-radius: 12px;
  border: 1.5px solid #EBEBEB; overflow: hidden;
  transition: border-color 0.2s;
}
.lch-wrap .lch-faq-item[open] { border-color: var(--lch-blue); }

.lch-wrap .lch-faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-size: 15px !important; font-weight: 700 !important;
  color: var(--lch-black) !important; line-height: 1.4 !important;
  user-select: none;
}
.lch-wrap .lch-faq-item summary::-webkit-details-marker { display: none; }
.lch-wrap .lch-faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 400;
  color: var(--lch-blue); flex-shrink: 0;
  transition: transform 0.25s ease; line-height: 1;
}
.lch-wrap .lch-faq-item[open] summary::after { transform: rotate(45deg); }

.lch-wrap .lch-faq-answer {
  padding: 0 24px 20px;
}
.lch-wrap .lch-faq-answer p {
  font-size: 14px !important; color: var(--lch-gray1) !important;
  line-height: 1.7 !important; margin: 0 !important;
}

/* ── ANIMACIONES ── */
@keyframes lchFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive tablet ── */
@media (min-width: 600px) {
  .lch-wrap .lch-faq { padding: 80px 48px; }
  .lch-wrap .lch-faq .lch-only-desktop { display: block !important; }
  .lch-wrap .lch-faq .lch-only-mobile  { display: none !important; }
}

/* ── Responsive desktop ── */
@media (min-width: 1024px) {
  .lch-wrap .lch-faq { padding: 96px 48px; }
  .lch-wrap .lch-faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; align-items: start;
  }
  .lch-wrap .lch-faq-item summary { font-size: 16px !important; }
  .lch-wrap .lch-faq-answer p { font-size: 15px !important; }
}

/* ── Accesibilidad ── */
@media (prefers-reduced-motion: reduce) {
  .lch-wrap .lch-faq-header,
  .lch-wrap .lch-faq-grid { animation: none !important; opacity: 1; transform: none; }
  .lch-wrap .lch-faq-item summary::after { transition: none; }
}
