/* ═══ SECCIÓN 10 — FAQ ═══ */
.faq-section-10,
.faq-section-10 * { box-sizing: border-box !important; margin: 0; padding: 0; }

.faq-section-10 {
  font-family: system-ui, -apple-system, sans-serif !important;
  background: #fff !important;
  padding: 60px 20px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section-10 .fq10-container {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Header ── */
.faq-section-10 .fq10-header {
  text-align: center !important;
  margin-bottom: 40px;
}

.faq-section-10 .fq10-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  border: 1px solid #FFD700 !important;
  background: #F9FAFB !important;
  color: #1e293b !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.faq-section-10 .fq10-dot {
  width: 8px;
  height: 8px;
  background: #E8B923 !important;
  border-radius: 50%;
  display: inline-block;
  animation: fq10Pulse 2s infinite;
}

@keyframes fq10Pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.faq-section-10 .fq10-title {
  font-size: clamp(24px, 4vw, 32px) !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.2;
  margin-bottom: 16px;
  /* h2: respetar font-family del tema */
}

.faq-section-10 .fq10-separator {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #E8B923) !important;
  margin: 0 auto;
  border-radius: 2px;
}

/* ── Acordeón maestro ── */
.faq-section-10 .fq10-master {
  border: none !important;
  background: transparent !important;
  text-align: center !important;
}

.faq-section-10 .fq10-master-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 10px 24px !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
  background: #fff !important;
  color: #0f172a !important;
  font-family: system-ui, -apple-system, sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer;
  transition: all .3s ease !important;
  margin: 0 auto 32px !important;
  list-style: none;
  text-align: center !important;
}

.faq-section-10 .fq10-master-btn::-webkit-details-marker { display: none; }

.faq-section-10 .fq10-master-btn:hover {
  background: #0f172a !important;
  color: #fff !important;
  border-color: #0f172a !important;
  transform: translateY(-2px);
}

.faq-section-10 .fq10-master-icon {
  font-size: 10px;
  transition: transform .3s ease !important;
  color: #C9A84C !important;
}

.faq-section-10 .fq10-master[open] .fq10-master-btn {
  background: #0f172a !important;
  color: #fff !important;
  border-color: #0f172a !important;
}

.faq-section-10 .fq10-master[open] .fq10-master-icon {
  transform: rotate(180deg);
  color: #FFD700 !important;
}

.faq-section-10 .fq10-master-btn:hover .fq10-master-icon {
  color: #FFD700 !important;
}

/* ── Lista FAQ ── */
.faq-section-10 .fq10-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
}

/* ── Item ── */
.faq-section-10 .fq10-item {
  background: #fff !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all .3s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.03) !important;
}

.faq-section-10 .fq10-item:hover {
  border-color: rgba(232,185,35,.3) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.06) !important;
}

.faq-section-10 .fq10-item[open] {
  border-color: #E8B923 !important;
  box-shadow: 0 8px 24px rgba(232,185,35,.1) !important;
}

/* ── Question (summary) ── */
.faq-section-10 .fq10-question {
  display: flex !important;
  align-items: center !important;
  gap: 14px;
  padding: 18px 20px !important;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease !important;
}

.faq-section-10 .fq10-question::-webkit-details-marker { display: none; }

.faq-section-10 .fq10-question:hover {
  background: #FAFAF8 !important;
}

/* Icono de pregunta */
.faq-section-10 .fq10-q-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px;
  height: 40px;
  background: #F9FAFB !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all .3s ease !important;
  color: #C9A84C !important;
}

.faq-section-10 .fq10-item:hover .fq10-q-icon,
.faq-section-10 .fq10-item[open] .fq10-q-icon {
  background: linear-gradient(135deg, #FFD700, #E8B923) !important;
  border-color: #E8B923 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(232,185,35,.25) !important;
}

.faq-section-10 .fq10-q-icon svg {
  width: 18px;
  height: 18px;
}

/* Texto pregunta */
.faq-section-10 .fq10-q-text {
  flex: 1;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  line-height: 1.4;
}

/* Chevron */
.faq-section-10 .fq10-chevron {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px;
  height: 32px;
  background: #F9FAFB !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all .3s ease !important;
  color: #64748b !important;
}

.faq-section-10 .fq10-chevron svg {
  transition: transform .3s ease !important;
}

.faq-section-10 .fq10-item[open] .fq10-chevron {
  background: #0f172a !important;
  border-color: #0f172a !important;
  color: #fff !important;
}

.faq-section-10 .fq10-item[open] .fq10-chevron svg {
  transform: rotate(180deg);
}

/* ── Answer ── */
.faq-section-10 .fq10-answer {
  padding: 0 20px 20px 74px !important;
}

.faq-section-10 .fq10-answer p {
  font-size: 14px !important;
  color: #475569 !important;
  line-height: 1.7;
  font-weight: 400 !important;
}

.faq-section-10 .fq10-answer strong {
  color: #E8B923 !important;
  font-weight: 700 !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-section-10 .fq10-question {
    gap: 12px;
    padding: 16px 16px !important;
  }

  .faq-section-10 .fq10-q-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .faq-section-10 .fq10-q-icon svg {
    width: 16px;
    height: 16px;
  }

  .faq-section-10 .fq10-q-text {
    font-size: 14px !important;
  }

  .faq-section-10 .fq10-chevron {
    width: 28px;
    height: 28px;
  }

  .faq-section-10 .fq10-chevron svg {
    width: 14px;
    height: 14px;
  }

  .faq-section-10 .fq10-answer {
    padding: 0 16px 16px 64px !important;
  }

  .faq-section-10 .fq10-answer p {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .faq-section-10 .fq10-q-icon {
    display: none !important;
  }

  .faq-section-10 .fq10-answer {
    padding: 0 16px 16px 16px !important;
  }

  .faq-section-10 .fq10-item {
    border-radius: 12px !important;
  }
}