/* ══ FAQ MODULE ═══════════════════════ */
#s-faq {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

/* ── Parallax background ──────────────── */
.faq-bg {
  position: absolute;
  inset: 0;
  background-image: url('../minas com vesperata capa02.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.faq-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22,58,115,.97) 0%,
    rgba(31,76,148,.93) 50%,
    rgba(22,58,115,.97) 100%
  );
}

#s-faq .wrap { position: relative; z-index: 2; }

/* ── Layout ───────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Títulos e labels ─────────────────── */
.info-h {
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ── Lista de dados da viagem ─────────── */
.info-list { list-style: none; }

.info-li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.info-li:first-child { border-top: 1px solid rgba(255,255,255,.12); }

.info-li-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  min-width: 88px;
  padding-top: 2px;
}

.info-li-val {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Accordion FAQ ────────────────────── */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.12); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: color .2s ease;
}

.faq-q:hover { color: var(--white); }

.faq-tog {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.55);
  transition: transform .3s ease, background .2s ease, border-color .2s ease;
}

.faq-item.open .faq-tog {
  transform: rotate(45deg);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.faq-ans {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.58);
  max-height: 0;
  overflow: hidden;
  font-weight: 300;
  transition: max-height .4s ease, padding .3s ease;
}

.faq-item.open .faq-ans { max-height: 200px; padding-bottom: 20px; }
