html {
  /* Reserva o espaco da scrollbar mesmo quando overflow: hidden, evitando
     deslocamento horizontal do conteudo quando modals travam o scroll. */
  scrollbar-gutter: stable;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #878787;
  cursor: default;
  font-family: "Nunito Sans", arial, sans-serif;
  font-weight: normal;
  font-size: 10px;
  line-height: 1;
  overflow-x: hidden;
}

#home-baixio {
  position: relative;
  z-index: 1;
}

.transition {
  transition: all 0.3s ease-in-out;
}

#loader {
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  display: none;
}
#loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input,
button,
textarea,
select {
  font-family: "Nunito", arial, sans-serif;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: 0;
}

input, textarea {
  transition: all 0.3s ease-in-out;
}

a {
  transition: all 0.3s ease-in-out;
  color: #000;
}
a:hover {
  text-decoration: none;
}

.container {
  padding: 90px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
