/**
 * ==========================================================================
 * ARQUIVO: css/base.css
 * DESCRIÇÃO: Reset de CSS padrão, regras globais de tipografia e layout base.
 * ==========================================================================
 */

/* Reset de margens, preenchimentos e modelo de caixa */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Configurações da página como um todo */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-family-base);
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tipografia Base */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Seleção de texto personalizada com a cor verde da marca */
::selection {
  background-color: var(--accent-color);
  color: var(--text-on-accent);
}
