/* ===== FAQ ===== */

.faq {
  padding: 80px 0;
  background: #111;
}

.faq__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.faq__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 10px;
}

.faq__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin: 0 0 12px;
}

.faq__subtitle {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: background .18s ease;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--brand);
  transition: transform .2s ease;
}

.faq__item[open] {
  background: #2a2a2a;
  border-color: rgba(255,255,255,.2);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 20px 18px;
  color: #e0e0e0;
  line-height: 1.65;
  font-size: 14px;
}

/* ===== CIDADES ===== */

.cities {
  padding: 64px 0;
  background: var(--brand);
}

.cities__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cities__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}

.cities__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
}

.cities__text {
  color: rgba(255,255,255,.9);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 24px;
}

.cities__cta {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  font-weight: 900;
}

.cities__cta:hover {
  filter: brightness(.95);
}

.cities__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  flex-shrink: 0;
}

.cities__list li {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  text-align: center;
}

@media (max-width: 768px) {
  .cities__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
