body fuse-splash-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #111827;
  color: #f9fafb;
  z-index: 999999;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body fuse-splash-screen img {
  width: 120px;
  max-width: 120px;
}

body fuse-splash-screen .spinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  width: 56px;
}

body fuse-splash-screen .spinner > div {
  width: 12px;
  height: 12px;
  background-color: #1e96f7;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: fuse-bouncedelay 1s infinite ease-in-out both;
  animation: fuse-bouncedelay 1s infinite ease-in-out both;
}

body fuse-splash-screen .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

body fuse-splash-screen .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes fuse-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes fuse-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

body:not(.fuse-splash-screen-hidden) {
  overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
  visibility: hidden;
  opacity: 0;
}
/*######################################*/
/* Estilo geral da splash screen */
/*.splash-wrapper {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    background-color: black;*/
/*    width: 100vw;*/
/*    height: 100vh;*/
/*}*/

/* Círculo branco central */
.circle {
  background-color: white;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.box-icon.has-icon {
  background-color: transparent;
  animation: show-bg 0.6s forwards;
  animation-delay: 2.5s; /* espera a animação do ícone */
}
@keyframes show-bg {
  to {
    background-color: black;
  }
}

.letter-f {
  position: relative;
  width: 120px;
  height: 180px;
  display: grid;
  grid-template-columns: repeat(4, 30px);
  grid-template-rows: repeat(6, 30px);
  gap: 0;
  justify-content: center;
  align-items: center;
}

.f-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 310px;
  font-weight: bold;
  color: #e0e0e0;
  z-index: 0;
}

@keyframes pop-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-top {
  from {
    transform: translateY(-200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-bottom {
  from {
    transform: translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.icon-sprite {
  width: 30px;
  height: 30px;
  opacity: 0;
  transform: scale(0.5);
  background-image: url('/images/sprites/occupations.png');
  background-repeat: no-repeat;
  /*animation: pop-in 0.4s ease-out forwards;*/
  z-index: 1;
}

.slide-in-top {
  animation: slide-in-top 0.5s ease-out forwards;
}

.slide-in-left {
  animation: slide-in-left 0.5s ease-out forwards;
}

.slide-in-right {
  animation: slide-in-right 0.5s ease-out forwards;
}

.slide-in-bottom {
  animation: slide-in-bottom 0.5s ease-out forwards;
}

.icon-sprite.spacer {
  background-image: none;
  background-color: transparent;
  border: none;
}

/* Posições específicas dos ícones na sprite */
.icon-sprite.icon-dev {
  background-position: 2px -2px;
}

.icon-sprite.icon-designer {
  background-position: -65px -1px;
}

.icon-sprite.icon-engenheiro {
  background-position: -96px -1px;
}

.icon-sprite.icon-garcom {
  background-position: -32px -2px;
}

.icon-sprite.icon-soldador {
  background-position: 2px -34px;
}

.icon-sprite.icon-farmer {
  background-position: 2px -69px;
}

.icon-sprite.icon-medico {
  background-position: -32px -69px;
}

.icon-sprite.icon-outro {
  background-position: -65px -69px;
}

.icon-sprite.icon-dev2 {
  background-position: -96px -69px;
}

.icon-sprite.icon-welder {
  background-position: 2px -101px;
}

.icon-sprite.icon-suporte {
  background-position: 2px -134px;
}

.icon-sprite.icon-engenheira {
  background-position: 2px -172px;
}

.icon-sprite.icon-trabalhador {
  background-position: -360px 0;
}
