/* ===================================================== */
/* ================= MORUS RESET ======================= */
/* ===================================================== */

/* Box sizing padrão moderno */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove margens padrão */
* {
  margin: 0;
  padding: 0;
}

/* ===================================================== */
/* ================= HTML & BODY ======================= */
/* ===================================================== */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================================== */
/* ================= TIPOGRAFIA ======================== */
/* ===================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

p {
  line-height: 1.6;
}

small {
  font-size: 0.8em;
}

/* ===================================================== */
/* ================= LISTAS ============================ */
/* ===================================================== */

ul, ol {
  list-style: none;
}

/* ===================================================== */
/* ================= LINKS ============================= */
/* ===================================================== */

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

/* ===================================================== */
/* ================= IMAGENS & MEDIA =================== */
/* ===================================================== */

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

/* ===================================================== */
/* ================= FORM ELEMENTS ===================== */
/* ===================================================== */

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

button {
  cursor: pointer;
}

textarea {
  resize: none;
}

/* Remove aparência iOS */
input,
textarea {
  appearance: none;
  -webkit-appearance: none;
}

/* ===================================================== */
/* ================= TABELAS =========================== */
/* ===================================================== */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===================================================== */
/* ================= SELEÇÃO DE TEXTO ================== */
/* ===================================================== */

::selection {
  background: rgba(200,169,95,0.35);
  color: #111;
}

/* ===================================================== */
/* ================= SCROLLBAR ========================= */
/* ===================================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0e0e11;
}

::-webkit-scrollbar-thumb {
  background: rgba(200,169,95,.5);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(200,169,95,.8);
}

/* ===================================================== */
/* ================= FOCUS ACESSÍVEL =================== */
/* ===================================================== */

:focus-visible {
  outline: 2px solid rgba(200,169,95,.8);
  outline-offset: 3px;
}

/* ===================================================== */
/* ================= UTILIDADES BASE =================== */
/* ===================================================== */

html, body {
  overflow-x: hidden;
}
