/* ═══════════════════════════════════════════════════════
   pages/contato.css — estilos exclusivos da página Contato
   ═══════════════════════════════════════════════════════ */

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-y) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: calc(68px + 32px);
}
.faq-sticky p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-top: 8px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item.open {
  border-color: rgba(192,57,43,0.25);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.faq-question span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
}
.faq-item.open .faq-question span { color: var(--red); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-mid);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── BOTÕES DO CTA BANNER (variantes faltando) ──────── */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-w:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }

/* ─── RESPONSIVIDADE MOBILE ──────────────────────────── */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 240px 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sticky { position: static; }
  .cta-btns .btn-white,
  .cta-btns .btn-outline-w { width: 100%; justify-content: center; }
}
