html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--c05);
}

/* Efeitos de fade-in */
.fadeinTop,
.fadeinMiddle,
.fadeinBottom {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 500ms ease-in-out, opacity 500ms ease-in-out;
}

.fadeinTop.visible,
.fadeinMiddle.visible,
.fadeinBottom.visible {
  opacity: 1;
  transform: translateY(0);
}

p,
input,
label,
textarea,
select,
option {
  color: var(--c70);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  text-transform: none;
  word-spacing: normal;
}

h2 {
  color: var(--c90);
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1em;
  text-transform: normal;
  word-spacing: normal;
}

h3 {
  color: var(--c90);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  text-transform: uppercase;
  word-spacing: normal;
}

h4 {
  color: var(--c30);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1em;
  text-transform: uppercase;
  word-spacing: normal;
}

p,
input,
label,
textarea,
select,
option {
  color: var(--c70);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  text-transform: none;
  word-spacing: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
figure {
  margin: 0;
  padding: 0;
  font-display: swap;
  background-color: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/*Altera seleção de texto*/
::-moz-selection {
  color: var(--c02);
  background: var(--c90);
}

::selection {
  color: var(--c02);
  background: var(--c90);
}

hr {
  width: 40px;
  height: 1px;
  border-width: 0 0 1px 0;
  border-color: var(--c30);
  margin: 20px 0;
}

/*Desabilita barra de rolagem vertical*/
::-webkit-scrollbar {
  width: 0px;
}

/*Desabilita efeitos de clique*/
*,
button,
textarea,
input,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

i {
  font-style: italic;
}

u {
  text-decoration: underline;
  -webkit-text-decoration: underline;
  text-underline-position: under;
  -webkit-text-underline-position: under;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--c30);
  text-underline-offset: 0.05em;
  font-weight: 400;
  color: var(--c90);
}

b {
  font-weight: 500;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover,
button:hover,
.btn:hover,
.btn_black:hover,
.btn_white:hover {
  transition: 0.2s;
  opacity: 80%;
}
a:active,
button:active,
.btn:active,
.btn_black:active,
.btn_white:active {
  opacity: 60%;
}

.desativar-hover a:hover,
.desativar-hover button:hover {
  opacity: 100%;
}

.btn_black {
  cursor: pointer;
  border: none;
  height: 40px;
  min-width: 160px;
  color: var(--c02);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 40px;
  text-transform: uppercase;
  word-spacing: normal;
  text-align: center;
  background-color: var(--c90);
}
