/* ── Reset & Base ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bege-claro);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
svg {
  flex-shrink: 0;
}
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}

:focus-visible {
  outline: 3px solid var(--verde-agua);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Scroll Progress Bar ────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--terracota-escuro),
    var(--terracota-medio)
  );
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}
