/* Tipografia profissional – padronização de tamanho médio e hierarquia consistente */

:root {
  --font-size-base: 16px;
  --font-size-heading1: 24px;
  --font-size-heading2: 20px;
  --font-size-heading3: 18px;
  --font-size-heading4: 16px;
}

/* Família base para todo o site */
html, body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--font-size-base);
}

/* Texto padrão: legibilidade elevada */
p, li, a, label, .text-body,
input, textarea, select, button {
  font-weight: 400;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--muted-text);
}

/* Títulos – pesos e tamanhos padronizados */
h1 {
  font-weight: 600;
  font-size: var(--font-size-heading1);
  line-height: 1.3;
  color: var(--text-color);
}

h2, .section-title, .hero-title {
  font-weight: 600;
  font-size: var(--font-size-heading2);
  line-height: 1.3;
  color: var(--text-color);
}

h3, .card-title, .service-card h3, .product-card h3 {
  font-weight: 500;
  font-size: var(--font-size-heading3);
  line-height: 1.35;
  color: var(--text-color);
}

h4 {
  font-weight: 500;
  font-size: var(--font-size-heading4);
  line-height: 1.35;
  color: var(--text-color);
}

/* Botões: manter legibilidade com peso 500 */
.btn, .btn-primary, button {
  font-weight: 500;
  font-size: var(--font-size-base);
}

/* Tópico 37.1 — Cores da Tipografia na Hero sobre vídeo */
.page-hero.video-hero h1 { color: #C0A062 !important; }
.page-hero.video-hero p { color: #F5F5F5 !important; }