/* FAQ + contato */
.faq {
  padding: 64px 40px;
  background: white;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.faq-inner .eyebrow-line { justify-content: center; }
.faq h2 {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: -1.5px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
}
.faq h2 em { color: var(--green); font-style: italic; font-weight: 700; }
.faq-sub {
  font-size: 14.5px;
  color: var(--ink2);
  margin: 12px auto 28px;
  line-height: 1.5;
  max-width: 520px;
}
.faq #faqList {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fq {
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.fq:hover { border-color: rgba(0,169,79,.25); }
.fq[open] {
  background: white;
  border-color: rgba(0,169,79,.4);
}

.fq .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  transition: color var(--transition-fast);
}
.fq .q::-webkit-details-marker { display: none; }
.fq .q:hover { color: var(--green); }

.fq .q-txt {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: color var(--transition-fast);
}
.fq .q:hover .q-txt { color: var(--green); }

.fq .q-ic { color: var(--green); flex-shrink: 0; }
.fq .q-ic .minus { display: none; }
.fq[open] .q-ic .plus { display: none; }
.fq[open] .q-ic .minus { display: block; }

.fq .a {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 10px;
  line-height: 1.55;
  display: none;
}
.fq .a a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}
.fq .a a:hover { color: var(--green-hover); }

/* CTA dentro da resposta — Tier 1 amarelo sticker, versão compacta
   exclusiva do FAQ (não afeta outros botões amarelos do site) */
.fq .a .fq-cta-wrap { margin-top: 14px; }
.fq .a a.fq-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 0 0 var(--ink);
  transition: background .15s ease, box-shadow .12s ease, transform .12s ease;
}
.fq .a a.fq-cta:hover {
  background: var(--yellow-hover);
  color: var(--ink);
  box-shadow: 0 2px 0 0 var(--ink);
  transform: translateY(2px);
}
.fq .a a.fq-cta:active {
  box-shadow: 0 0 0 0 var(--ink);
  transform: translateY(4px);
}
.fq[open] .a { display: block; animation: fq-fade-in 0.25s ease; }

@keyframes fq-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-contact {
  margin-top: 32px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.faq-contact > .rainbow { position: absolute; top: 0; left: 0; right: 0; height: 3px; }

.faq-contact .t1 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--ink);
  line-height: 1.2;
}
.faq-contact .t2 {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 6px;
  line-height: 1.5;
}

.faq-contact a {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: var(--lime-soft);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,169,79,.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background var(--transition-fast);
}
.faq-contact a:hover { background: rgba(0,169,79,.18); }

.faq-cta-wrap {
  margin-top: 32px;
  text-align: center;
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-lg);
}
.faq-cta-wrap .t {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.faq-cta-wrap .d {
  font-size: 13.5px;
  color: var(--ink2);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta-wrap .btn-white {
  margin-top: 22px;
}
