/* ===========================================================================
   BLOQUE FAQ (faq + faqitem)
   =========================================================================== */

.baq {
  margin: 2rem 0;
}

.baq-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Cada pregunta */
.baq-item {
  border: 1px solid rgba(128, 128, 128, 0.45);
  border-radius: 0.6rem;
  padding: 0.6rem 0.9rem;
  margin-bottom: 0.75rem;
  background: rgba(128, 128, 128, 0.08);
}

/* Cabecera clickable (pregunta + icono) */
.baq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

/* Quitar marcador por defecto del summary en algunos navegadores */
.baq-summary::-webkit-details-marker {
  display: none;
}

.baq-q {
  font-weight: 500;
  margin-right: 0.75rem;
}

/* Icono (triángulo) — tamaño pequeño y alineado */
.baq-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  fill: currentColor;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

/* Cuando el <details> está abierto, giramos el icono */
.baq-item[open] .baq-icon {
  transform: rotate(180deg);
}

/* Respuesta */
.baq-a {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Un poco de espacio entre párrafos dentro de la respuesta */
.baq-a p {
  margin: 0 0 0.4rem;
}
