/* ==========================================================================
   RESET CSS & SMOOTH SCROLL (PERFORMANCE & OTIMIZAÇÃO CORE)
   ========================================================================== */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset para o Smart Header Fixo */
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* Otimização de Foco Visual (Acessibilidade) */
:focus-visible {
  outline: 2px solid var(--color-lima);
  outline-offset: 3px;
}

/* Suporte Naitvo & Inercial ao Lenis Smooth Scroll */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

