/* ================================================================
   MyChordFlow — suporte.css  |  Páginas internas (contato, ajuda, termos, privacidade)
   ================================================================ */

/* ── PAGE HERO (mini) ── */
.page-hero {
  padding-top: calc(66px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── CONTEÚDO PRINCIPAL ── */
.page-content {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
}

.page-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.page-content li {
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: text-decoration-color 0.2s;
}

.page-content a:hover {
  text-decoration-color: var(--white);
}

.page-content strong {
  color: var(--white);
  font-weight: 600;
}

.page-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ── DATA LEGAL ── */
.legal-date {
  font-size: 0.85rem;
  color: var(--gray);
  opacity: 0.7;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ── CONTATO — CARDS ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--b2);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  transition: background 0.28s;
}

.contact-card:hover {
  background: var(--b3);
}

.contact-card i {
  font-size: 1.6rem;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-card a:hover {
  opacity: 0.75;
}

/* ── AJUDA — CATEGORIAS ── */
.help-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.help-card {
  background: var(--b2);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: background 0.28s;
}

.help-card:hover {
  background: var(--b3);
}

.help-card i {
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.help-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.help-card p {
  font-size: 0.88rem;
  line-height: 1.72;
}

/* ── SOCIAL NO FOOTER ── */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-social a {
  font-size: 1.2rem;
  color: var(--gray);
  transition: color 0.18s;
}

.footer-social a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .help-categories {
    grid-template-columns: 1fr;
  }
}
