@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Remove margens, paddings e bordas padrão */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Melhora tipografia e herança */
html {
  font-size: 100%; /* 16px padrão */
  -webkit-text-size-adjust: 100%; /* Evita zoom automático no mobile */
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #fff;
  color: #111;
}

/* Remove estilos padrão de listas */
ol,
ul {
  list-style: none;
}

/* Remove decoração de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove estilos padrão de botões e inputs */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Faz imagens se ajustarem ao container */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove animações e transições para usuários com preferência */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* Define padrão para tabelas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Garante blocos sem espaçamento extra */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Remove aspas automáticas de blockquote e q */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* Torna os elementos base display block (HTML5) */
main,
header,
footer,
section,
article,
aside,
nav,
figure {
  display: block;
}

/* Variaveis de cores e fontes */

:root {
  --preto: #0d1b2b;
  --cinza-escuro: #1a1a1a;
  --laranja: #f86624;
  --laranja-escuro: #df5515;
  --cinza: #dddddd;
  --cinza-claro: #f2f2f2;
  --azul: #0650a4;

  --fonte01: "Roboto";
  --fonte02: "Oswald";
  --fonte03: "Inter";
}
