/* Home page styles */
/* Fonte normal (não itálica) */
@font-face {
  font-family: 'Inter';
  src: url('../font/Inter-VariableFont.ttf') format('truetype');
  font-weight: 100 900;
  /* Inter variável suporta de 100 a 900 */
  font-style: normal;
  font-display: swap;
}

/* Fonte itálica */
@font-face {
  font-family: 'Inter';
  src: url('../font/Inter-Italic-VariableFont.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}



@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


:root {
  --white: #ffffff;
  --gray-dark: #373434;
  --black: #0d0d0d;

  --blue-light: #16a6ff;
  --blue-dark: #004f99;

  --blue-mid: #1e61e2;
  --blue-deep: #0a267c;

  --blue-darker: #0e2757;

  --banner-blue: #004AAD;

  --red-bright: #ff0000;
  --red-mid: #A30303;
  --red-dark: #7c0404;

  --pink: #ee405f;
  --yellow: #fec32b;

  --delay-default: 500ms;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif !important;
}

::selection {
  background: var(--blue-light);
  color: var(--white);
}

.os-theme-dark,
.os-theme-light {
  --os-size: 20px;
  --os-handle-bg: rgb(66, 66, 66) !important;
  --os-handle-bg-hover: rgba(0, 0, 0, .9) !important;
  --os-handle-bg-active: rgba(0, 0, 0, 1) !important;
}

.os-scrollbar-handle {
  border: 1px solid rgb(221, 221, 221) !important;
}

#botaoVoltarAoTopo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;

  width: 40px;
  height: 40px;

  border: 1px solid white;
  border-radius: 50%;
  outline: none;

  background: #0E0E0E;

  color: white;
  font-size: 20px;

  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: 250ms;

  &.mostrar-botao-voltar-ao-topo {
    pointer-events: auto;
    opacity: 1;
  }
}


hr {
  border-bottom: 1px solid #e7e7e7;
  border-top: 0;
  margin-bottom: 35px;
}

.text-center {
  text-align: center;
}

.links a {
  margin-right: 10px;
}

.release-name {
  color: #D33C43;
  font-weight: 400;
  font-style: italic;
}

.bullet:before {
  font-size: 18px;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: -1px;
}

.success:before {
  color: #88c671;
  content: "\0056";
}

.problem:before {
  color: #d33d44;
  content: "\0057";
}

.cake-error {
  padding: 10px;
  margin: 10px 0;
}

#url-rewriting-warning {
  display: none;
}

.modal-loading {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fefefe;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: end;
  align-items: end;
  z-index: 9998;
  padding: 20px;
  border-radius: 40px;

  i {
    font-size: 3rem;
    color: #4e8eb3;
    animation: loading 1100ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  }
}

.avisos-sem-conteudo {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0px;
  font-style: italic;
}

@media (max-width: 1400px) {

  html {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .avisos-sem-conteudo {
    font-size: 1rem;
  }
}