:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1em;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;

  overflow: hidden !important;

  color-scheme: light dark;
  background-color: var(--gray-800);

  --red: #ec7063;
  --orange: #E59866;
  --yellow: #f5d142;
  --green: #52be80;
  --blue: #85C1E9;

  --gray-400: #3e3e3e;
  --gray-500: #363636;
  --gray-600: #2e2e2e;
  --gray-700: #262626;
  --gray-800: #1e1e1e;
  --gray-900: #151515;
  --gray-900-translucid: rgb(21, 21, 21, 0.6);

  --destaque: #7171e7;
  --destaque-hover: #8383ff;

}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

.button {
  border-radius: 5px;
  background-color: var(--gray-700);
  padding: 10px;
  margin: 10px;
  transition: 200ms;
  text-align: center;
  font-weight: bold;
  min-width: 150px;
  width: auto;
  align-self: center;
  padding-left: 20px;
  padding-right: 20px;
  transition: 200ms;
}

.button:hover {
  border-radius: 5;
  background-color: var(--gray-600);
  cursor: pointer;
  transition: 200ms;
}

.button-unselected {
  border-radius: 5px;
  background-color: transparent;
  padding: 10px;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  width: auto;
  align-self: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0.5;
  cursor: pointer;
  transition: 200ms;
}

.button-unselected:hover {
  opacity: 1;
  transition: 200ms;
}

.button-selected {
  border-radius: 5px;
  background-color: var(--destaque);
  padding: 10px;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  width: auto;
  align-self: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 1;
  cursor: pointer;
  transition: 200ms;
}

.button-selected:hover {
  background-color: var(--destaque-hover);
  transition: 200ms;
}

.textarea {
  color: white !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1em;
  border-radius: 5px;
  background-color: var(--gray-700);
  padding: 10px;
  margin: 10px;
  resize: none;
  outline: 0px;
  width: 50vw;
  height: 200px;
  border-style: none;
  font-weight: lighter;
  transition: 200ms;
}

.textarea:hover {
  background-color: var(--gray-600);
  transition: 200ms;
}

.textarea::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.textarea::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
}

.textarea::-webkit-scrollbar-button {
  display: none;
  cursor: pointer;
}

.textarea::-webkit-scrollbar-corner {
  display: none;
  cursor: pointer;
}

.textarea::-webkit-scrollbar-thumb {
  background-color: var(--gray-500);
  border-radius: 5px;
  cursor: pointer;
}

.textarea::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray-400);
  border-radius: 5px;
  cursor: pointer;
}

.input {
  color: white !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1em;
  border-radius: 5px;
  background-color: var(--gray-700);
  padding: 10px;
  margin: 10px;
  height: 30px;
  padding-left: 20px;
  padding-right: 20px;
  resize: none;
  outline: 0px;
  border-style: none;
  text-align: center;
  font-weight: lighter;
  transition: 200ms;
}

.input:hover {
  background-color: var(--gray-600);
  transition: 200ms;
}

.card-border {
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  border-color: white;
  padding: 5px;
  margin: 5px;
  align-self: center;
  position: relative;
  width: 100%;
  flex-grow: 1;
}

.card-border-soft {
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  border-color: var(--gray-600);
  padding: 10px;
  margin: 10px;
  margin-top: 20px;
  align-self: center;
  position: relative;
  width: 100%
}

.title {
  font-size: 1em;
  font-weight: bold;
  margin: 10px;
}

.card-topic {
  font-size: 1em;
  font-weight: bold;
  color: var(--destaque);
  margin-top: 5px;
  margin-bottom: 2.5px;
  text-align: left;
  padding: 5px;
  padding-bottom: 0px;
}

.card-content {
  font-size: 1em;
  font-weight: normal;
  text-align: left;
  padding-top: 0px;
  padding: 5px;
}

.info {
  font-size: 1em;
  font-weight: bold;
  margin: 5px;
  opacity: 0.5;
  font-weight: normal;
  max-width: 40vw;
  align-self: center;
}

.item {
  margin: 5px;
  padding: 2.5px;
  text-align: left;
}

.scroll {
  margin-right: 7.5px;
  scroll-behavior: smooth;
}

.scroll::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}

.scroll::-webkit-scrollbar-button {
  display: none;
  cursor: pointer;
}

.scroll::-webkit-scrollbar-corner {
  display: none;
  cursor: pointer;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--gray-500);
  border-radius: 5px;
  cursor: pointer;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray-400);
  border-radius: 5px;
  cursor: pointer;
}

.fundo {
  background-color: var(--gray-900);
  border-width: 0px;
  border-radius: 0;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  z-index: 100;
}

.janela {
  background-color: var(--gray-800);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-radius: 5px;
  align-self: center;
  background-color: var(--gray-800);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 5px;
  align-content: center;
  align-self: center;
  margin: 20px;
}

.grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 5px;
  align-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--gray-700);
  border-radius: 5px;
  width: 150px;
  height: 150px;
  margin: 2.5px;
  align-content: center;
  align-self: center;
  font-weight: bold;
  cursor: pointer;
  transition: 200ms;
}

.card-gravador {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--gray-700);
  border-radius: 5px;
  width: 60vw;
  min-height: 50px;
  margin: 2.5px;
  padding: 5px;
  align-content: center;
  align-self: center;
  font-weight: bold;
  cursor: pointer;
}

.card-selected {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--destaque-hover);
  border-radius: 5px;
  width: 150px;
  height: 150px;
  margin: 2.5px;
  align-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: 200ms;
}

.card:hover {
  background-color: var(--destaque-hover);
  transition: 200ms;
}

.card-new {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--gray-700);
  border-radius: 5px;
  width: 150px;
  height: 150px;
  margin: 2.5px;
  margin-left: 2px;
  align-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: 200ms;
}

.card-new:hover {
  background-color: var(--gray-600);
  transition: 200ms;
}

.card-evolucao {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  background-color: var(--gray-700);
  border-radius: 5px;
  width: 20vw;
  min-width: 20vw;
  height: 200px;
  margin: 2.5px;
  align-self: center;
  font-weight: bold;
  cursor: pointer;
  overflow-y: auto;
  transition: 200ms;
}

.card-evolucao:hover {
  background-color: var(--gray-600);
  transition: 200ms;
}

.menu {
  position: sticky;
  background-color: var(--gray-900-translucid);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 200px;
  top: 0px;
  left: 0px,
}

.image {
  opacity: 0.6;
  cursor: pointer;
  transition: 200ms;
}

.image:hover {
  opacity: 1;
  cursor: pointer;
  transition: 200ms;
}

.pulsante {
  animation-name: pulsante;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.clipboardtext {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -10;
}

@keyframes pulsante {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* CSS PARA A LANDPAGE */

.landpage-font {
  font-family: Arial, sans-serif;
}

.header {
  display: 'flex';
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--gray-900-translucid);
  backdrop-filter: blur(10px);
  z-index: 2000;
}

.btn-header {
  font-size: 1em;
  padding: 10px 20px;
  border: 1px solid #aaa;
  border-radius: 5px;
  color: white;
  margin: 10px;
  opacity: 0.8;
  text-decoration: none;
  transition: 200ms;
}

.btn-header:hover {
  opacity: 1;
  transition: 200ms;
  color: var(--destaque-hover);
  border-color: var(--destaque-hover);
}

.header-ref {
  color: white;
  font-size: 1em;
  margin: 10px;
  text-decoration: none;
  opacity: 0.5;
  align-self: center;
  transition: 200ms;
}

.header-ref:hover {
  opacity: 1;
  transition: 200ms;
}

.font1 {
  font-size: 2em;
  margin: 10px;
}

.font2 {
  font-size: 1.5em;
  width: 70vw;
  align-self: center;
}

.font3 {
  font-size: 1.2em;
  width: 70vw;
  align-self: center;
}

.font4 {
  font-size: 1em;
  align-self: center;
}

.btn-primary {
  margin: 10px;
  padding: 12px 30px;
  background: #7171e7;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: 200ms;
}

.btn-primary:hover {
  background: #8383ff;
}

.card-landpage {
  background: var(--gray-700);
  padding: 25px;
  border-radius: 5px;
  transition: 200ms;
  height: 270px;
}

.card-landpage:hover {
  background: var(--gray-600);
  transition: 200ms;
}

.grid-landpage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 20px;
}

.destaque {
  color: var(--destaque);
  font-size: 1.2em;
  font-weight: bold;
  margin: 5px;
  margin-bottom: 10px;
}

.destaque-hover {
  color: var(--destaque-hover);
}

.destaque-border {
  border-color: var(--gray-400);
  border-width: 1px;
}

li {
  text-align: left;
  margin: 5px;
  margin-left: 20px;
  list-style-type: square !important;
  font-size: 1em;
}

.footer {
  text-align: center;
  padding: 40px;
  color: #777;
  background-color: var(--gray-900-translucid);
}

.fade {
  animation-name: late;
  animation-duration: 10s;
  animation-delay: 0s;
}

@keyframes late {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 400px) {
  .scroll {
    margin-right: 0px;
    scroll-behavior: smooth;
  }

  .textarea {
    width: 80vw;
    height: 200px;
  }

  .card-landpage {
    background: var(--gray-700);
    padding: 25px;
    border-radius: 5px;
    transition: 200ms;
    height: auto;
  }

  .menu {
    position: static;
    background-color: var(--gray-900-translucid);
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    top: 0px;
    bottom: 50px;
    left: 0px;
    right: 0px;
    width: 100vw;
    z-index: 200;
    backdrop-filter: blur(10px);
  }

  .button-selected {
    border-radius: 5px;
    background-color: var(--destaque);
    padding: 10px;
    margin: 5px;
    text-align: center;
    justify-content: center;
    font-weight: bold;
    align-self: center;
    opacity: 1;
    cursor: pointer;
    width: 60vw;
    transition: 200ms;
  }

  .button-unselected {
    border-radius: 5px;
    background-color: transparent;
    padding: 10px;
    margin: 5px;
    text-align: center;
    justify-content: center;
    font-weight: bold;
    align-self: center;
    opacity: 0.5;
    cursor: pointer;
    width: 60vw;
    transition: 200ms;
  }

  .info {
    font-size: 1em;
    font-weight: bold;
    margin: 5px;
    opacity: 0.5;
    font-weight: normal;
    max-width: 80vw;
    align-self: center;
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 5px;
  }

  .grid-two {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 5px;
    align-content: center;
    align-self: center;
    margin: 5px;
  }

  .grid-three {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 5px;
    align-content: center;
  }

  .card-evolucao {
    width: 90vw;
    min-width: 70vw;
    height: 200px;
  }

  .card-evolucao:hover {
    width: 80vw;
  }

}