/* FAQ OSCURO – ESTILO CONSISTENTE CON LAS DEMÁS SECCIONES */
#faq {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  background: rgba(17, 17, 17, 0.85);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

#faq h2 {
  color: #25D366;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.2rem;
}

/* Ítems del FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

/* Pregunta */
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #25D366;
}

/* Respuesta */
.faq-answer {
  display: none;
  padding-top: 10px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

/* Código dentro de respuestas */
.faq-answer code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: #fff;
}
