/* ============================================
   CDOA Angola - Base / Reset
   Estilos base para elementos HTML
   ============================================ */

/* ---- Google Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Box-sizing ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ---- Body ---- */
body {
  margin: 0;
  font-family: var(--cdoa-font);
  font-size: var(--cdoa-text-base);
  color: var(--cdoa-text);
  background-color: var(--cdoa-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cdoa-text);
}

h1 { font-size: 1.875rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p { margin-top: 0; }

a {
  color: var(--cdoa-primary);
  text-decoration: none;
  transition: color var(--cdoa-transition);
}

a:hover {
  color: var(--cdoa-primary-hover);
}

/* ---- Images ---- */
img {
  max-width: 100%;
  height: auto;
}

/* ---- Code ---- */
code {
  font-family: var(--cdoa-font-mono);
  font-size: 0.85em;
  padding: 0.15em 0.4em;
  background: var(--cdoa-surface-hover);
  border-radius: var(--cdoa-radius-sm);
}

/* ---- Selection ---- */
::selection {
  background: var(--cdoa-primary-100);
  color: var(--cdoa-primary-hover);
}

/* ---- Scrollbar (Webkit) ---- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--cdoa-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cdoa-text-muted);
}

/* ---- Focus ring ---- */
:focus-visible {
  outline: 2px solid var(--cdoa-primary);
  outline-offset: 2px;
}
