
/* ============================================= */
/* ========= SECCIÓN ACORDEÓN (FAQ) ============ */
/* ============================================= */

.faq-section {
  padding: 60px 0 80px 0;
  background-color: #fff; /* Fondo blanco para diferenciarla */
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: -30px auto 50px auto;
  color: #555;
  font-family: 'Source Code Pro', monospace;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 5px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.accordion-header:hover {
  color: #F25022;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: #F25022;
  transition: transform 0.3s ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  font-family: 'Source Code Pro', monospace;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-panel p {
  padding: 0 10px 20px 5px;
}

/* --- Estilos cuando el acordeón está activo --- */
.accordion-item.active .accordion-header {
  font-weight: 600;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}