#splash {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    #f2f2f2 0%,
    #ffffff 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.splash-container {
  text-align: center;
  color: #333; /* texto escuro */
}

.splash-container img {
  width: 150px;
  margin-bottom: 20px;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.15);
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
