@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----------------  Personalizando o Scroll  ----------------------  */
::-webkit-scrollbar {
  width: 18px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* 3. A parte que a gente arrasta (Thumb) */
::-webkit-scrollbar-thumb {
  background: #E30713;
  border-radius: 5px;
  border: 2px solid #f1f1f1;
}

/* 4. Efeito ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background: #b3050f;
}

/* Animação Pulsar dos botões */
@keyframes pulsarVermelho {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 7, 19, 0.7); /* Cor vermelha SKY com opacidade inicial */
  }
  70% {
    box-shadow: 0 0 0 15px rgba(227, 7, 19, 0); /* O halo se expande a 15px e fica transparente */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 7, 19, 0); /* Retorna ao tamanho original, ainda invisível */
  }
}
.btn-pulsar {
  /* Configuração da animação */
  animation: pulsarVermelho 1.5s infinite;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border-radius: 10px;
}

/* -------- Ativa a transição lateral entre páginas no Chrome/Edge, etc.. ----------- */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: 0.4s cubic-bezier(0.4, 0, 0.2, 1) both move-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

::view-transition-new(root) {
  animation: 0.4s ease-in-out both move-in;
}

@keyframes move-out {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
}
@keyframes move-in {
  from {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bold {
  font-weight: 600;
}

body {
  position: relative;
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
  background-color: #303030;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.web-application {
  width: 100%;
  max-width: 1550px;
  overflow: hidden;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.3);
}

.color-gold {
  display: inline-block;
  color: #a67c00;
  background: linear-gradient(to bottom, #c5a028 0%, #e8c547 40%, #f8e08d 50%, #d4af37 65%, #a67c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/*# sourceMappingURL=style.css.map */
