.borda-gradient {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
}
.borda-gradient-pequena {
  border: 2px solid;
  border-image-slice: 1;
  border-width: 2px;
}
.borda-normal {
  border: 2px solid rgb(212, 13, 13);
  border-width: 4px;
}
.borda-reegi {
  border: 4px solid;
  border-image-slice: 1;
  border-width: 4px;
  border-image-source: linear-gradient(
    to left,
    #ba0be6,
    #3307d3,
    rgb(235, 8, 57),
    yellow,
    rgb(255, 6, 201)
  );
}
.borda-gradient-roxa {
  border-image-source: linear-gradient(
    to left,
    #727272,
    #9c9c9c,
    rgb(70, 70, 70)
  );
}
.borda-gradient-azul {
  border-image-source: linear-gradient(to left, #0bdae9, #1472dd, blue);
}
.module {
  margin: auto;
  color: white;
  border-width: 5px;
  border-style: solid;
  border-image: linear-gradient(
      to top,
      rgb(214, 40, 9),
      blue,
      rgba(11, 190, 214, 0)
    )
    1 100%;
}
.gradient {
  background-image: linear-gradient(
    to bottom,
    rebeccapurple,
    steelblue,
    turquoise
  );
  color: black;
  background-clip: text;
  -webkit-background-clip: text;
  /* Adicionado: */
  -webkit-text-fill-color: transparent;
}
