html {
  overflow-x: hidden;
}

body {
  font-family: $family-primary;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;

  &._menu-opened {
    overflow: hidden;
  }
}

html._locked {
  overflow: hidden; /* Impede o scroll */
  touch-action: none; /* Previne gestos de scroll em dispositivos móveis */
}

input {
  height: 40px;
  width: 100%;
  background: transparent;
  border: none;
  font-family: $family-primary;
  transition: all 250ms ease-in-out;

  &:focus {
    outline: none;
  }
}

@-moz-document url-prefix() {
  body {
    -moz-osx-font-smoothing: grayscale;
  }
}

// Tipografia
p {
  line-height: 1.55;
}

a {
  color: $green;
  text-decoration: none;

  &:hover {
    color: lighteen($green, 10%);
  }
}

// Icons
[class^="icon-"]:before,
[class*=" icon-"]:before {
  margin-left: 0;
  margin-right: 0;
}

.acf-flexible-content .layout.-modal {
  height: 100vh !important;
}

@media (max-width: $md) {
  .wow {
    animation-name: none !important;
    visibility: visible !important;
  }
}
