/* Copyright João Saidler 2022 - Atualizado 2026 */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

html {
  color: #898888;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  padding: 0;
  position: relative;
}

body {
  padding: 0;
  background-color: transparent;
}

#content {
  width: 100%;
  gap: 2.5rem;
}

.title {
  margin-bottom: 2rem;
  height: auto;
}

span.alert {
  position: absolute;
  color: darkred;
  font-size: 1.45rem;
  letter-spacing: 0;
  transform: rotate(-90deg);
  bottom: 1.45rem;
}

.blur {
  filter: blur(3px);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #252525 whitesmoke;
}

*::-webkit-scrollbar-track {
  background-color: whitesmoke;
}

*::-webkit-scrollbar {
  width: 2px;
  background-color: whitesmoke;
}

*::-webkit-scrollbar-thumb {
  background-color: #252525;
  border-radius: 1px;
}

/* SITE VERTICAL (mobile / tablet) — FLEX pra eliminar gaps de itens hidden */
@media (max-width: 1300px) {
  #content {
    display: flex;
    flex-direction: column;
  }
}

/* SITE HORIZONTAL (desktop) — GRID 2x2 */
@media (min-width: 1300px) {
  #content {
    display: grid;
    max-width: 1000px;
    grid-template-columns: auto 1fr;
    grid-template-areas: "form details""data plans";
  }
}

.button, .disable-selection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
