.link--white--effect {
  display: block;
  width: fit-content;
  padding: 10px 0 0 0;
  text-decoration: none;
  position: relative;
  color: var(--color-contrast);
  font-size: 1em;
}

.link--white--effect[href="mailto:suporte@rantool.com"] {
  word-wrap: break-word;
}

.link--white--effect::before {
  background-color: var(--color-contrast);
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s;
}

.link--white--effect:hover::before {
  width: 100%;
  transition: 0.2s;
  transition: 0.2s;
}

.link--white {
  color: var(--color-007);
}

.link--white::before {
  background-color: var(--color-007);
}
