/* typography.css - Tipografia Padronizada Asas Familiar */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&family=IBM+Plex+Serif:wght@100;200;300;400;500;600;700&display=swap');

:root {
  /* Fontes Padrão */
  --font-sans: 'IBM Plex Sans', Arial, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  --font-family: var(--font-sans);
}

/* Aplicação Global de Fonte */
html,
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Títulos com Fonte Serif */
h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.heading-h1,
.heading-h2,
.heading-h3,
.heading-h4,
.heading-h5,
.heading-h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.3;
}

/* Párrafos */
p,
body,
.body-text {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
}

/* Textos com Peso Médio */
strong,
.font-bold,
.font-600 {
  font-family: var(--font-sans);
  font-weight: 600;
}

/* Textos com Peso Leve */
.font-light,
.font-300 {
  font-family: var(--font-sans);
  font-weight: 300;
}

/* Links */
a {
  font-family: var(--font-sans);
  text-decoration: none;
}

/* Botões */
button,
.button,
.btn,
.w-button,
.primary-button,
.secondary-button {
  font-family: var(--font-sans);
  font-weight: 600;
}

/* Labels e Inputs */
label,
input,
textarea,
select {
  font-family: var(--font-sans);
}

/* Navegar */
nav,
.nav-menu,
.menu-link,
.navigation,
.menu-item {
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Dropdown */
.dropdown-menu,
.dropdown-link,
.dropdown-item {
  font-family: var(--font-sans);
  font-weight: 400;
}

/* Footer */
footer,
.footer,
.footer-text {
  font-family: var(--font-sans);
  font-weight: 400;
}

/* Pequeno Texto */
small,
.text-small,
.font-small,
.caption {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.875rem;
}

/* Listas */
ul,
ol,
li {
  font-family: var(--font-sans);
}

/* Tabelas */
table,
th,
td {
  font-family: var(--font-sans);
}
