/* Clear geral */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  color: black;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

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

/* Comentários 

Tamanho do menu: 3.7rem


*/


/* Root de variação de Cores  */

:root {
  /* Original EQP */
  --verde: #034745;
  /* Variações */
  --verdeEscuro: #042524;
  --verdeClaro: #036969;
  /* Original EQP */
  --gold: #BD833B;
  /* Variações */
  --goldClaro: #ee9f3f;
  --goldEscuro: #865418;
  /* Bases */
  --cinzaTextoClaro: #f2f2f2;
  --cinzaTextoEscuro: #5a5a5a;
  --cinzaClaro: #eeeeee;
  --cinzaMedio: #bdbdbd;
  --cinzaEscuro: #a7a7a7;
  --branco: #ffffff;
}

/* Modelos de fontes */

html * {
  font-size: 16px;
  font-family: 'Mulish', sans-serif;
  font-family: "ABeeZee", sans-serif;
  color: var(--cinzaTextoEscuro);

  max-width: 100vw;
}

.titulo {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5px;
  text-align: center;
}

/* Cores dos textos  */

.verde {
  color: var(--verde);
}

.branco {
  color: var(--branco);
}

.gold {
  color: var(--gold);
}

/* Animação */
/* para cima */
.animacao {
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s ease;
}

.animacao.ativo {
  transform: translateY(0px);
  opacity: 1;
}


/* Espaços e espaçamentos */

.espaco-top-3rem {
  padding-top: 3rem;
}

.espaco-top-5rem {
  padding-top: 5rem;
}
.espaco-top-7rem {
  padding-top: 7rem;
}

.espaco-bot-3rem {
  padding-bottom: 3rem;
}

.espaco-top-bot-3rem {
  padding: 3rem 0rem;
}
.espaco-top-bot-5rem {
  padding: 5rem 0rem;
}