*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fonte);
  font-size: var(--tamanho-texto);
  font-weight: var(--peso-fonte-normal);
  line-height: var(--altura-linha-paragrafo);
  color: var(--cor-texto);
  background: var(--cor-fundo);
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--altura-linha-compacta);
  font-weight: var(--peso-fonte-seminegrito);
  color: var(--cor-titulo);
}

.container {
  width: 100%;
  max-width: var(--largura-conteudo);
  margin-inline: auto;
  padding-inline: var(--padding-conteudo);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.placeholder {
  background: linear-gradient(135deg, var(--cor-menta) 0%, #d9ebe8 100%);
  border-radius: var(--border-radius-lg);
  width: 100%;
  display: block;
  object-fit: cover;
}

.placeholder--video {
  aspect-ratio: 16 / 10;
}

.placeholder--portrait {
  aspect-ratio: 4 / 5;
}

.container--largo {
  max-width: 1386px;
}