/************* SET VARIAVEIS *************/
:root {
  /* colors set */
  --hue: 0;
}

/****************** BASE *****************/
html {
  scroll-behavior: smooth;
}

.divider-footer {
  margin-top: 0;
  margin-bottom: 0;
  height: 1px;
  background: linear-gradient(
    270deg,
    hsla(var(--hue), 36%, 57%, 1),
    hsla(var(--hue), 65%, 88%, 0.34)
  );
}

.divider-1 {
  margin-top: 0;
  margin-bottom: 3rem;
  height: 1px;
  background: linear-gradient(
    270deg,
    hsla(var(--hue), 36%, 57%, 1),
    hsla(var(--hue), 65%, 88%, 0.34)
  );
}

.divider-2 {
  margin-top: 0;
  margin-bottom: 0;
  height: 1px;
  background: linear-gradient(
    360deg,
    hsla(var(--hue), 65%, 88%, 0.34),
    hsla(var(--hue), 36%, 57%, 1)
  );
}

.divider-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  height: 1px;
  background: linear-gradient(
    270deg,
    hsla(var(--hue), 65%, 88%, 0.34),
    hsla(var(--hue), 36%, 57%, 1)
  );
}

/* section: vantagens conv */

::selection {
  color: #f3ca5a;
  background-color: #7f1d1d;
}

/* scroll */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #7f1d1d;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #7f1d1d;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;

  background-color: #d62929;
}
