/* style.css */
.overlay {
    position: fixed;
    z-index:1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fade-in {
  animation: fade-in 0.5s ease-in-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.esmaecer {
    transition: opacity 1.5s ease-out; /* Transição suave */
}

.center-icon {
    width: 25vw; /* 20% da largura da tela */
    height: auto;
}