* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* 🔥 GLOW CONTROLADO */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,115,0,0.25), transparent 70%);
  filter: blur(100px);
  animation: moveGlow 12s ease-in-out infinite;
  z-index: 0;
}

/* movimento mais suave */
@keyframes moveGlow {
  0%   { transform: translate(-20%, -20%); }
  50%  { transform: translate(20%, 10%); }
  100% { transform: translate(-20%, -20%); }
}

/* CONTAINER */
.container {
  text-align: center;
  z-index: 1;
  max-width: 500px;
  padding: 20px;
}

/* SVG LOGO FIX */
.logo {
  width: 90px;
  height: auto;
  margin-bottom: 25px;
  fill: #ffffff;
  display: block;
  margin-left: auto;
  margin-right: auto;

  animation: float 4s ease-in-out infinite;
}



/* TEXTO */
h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

p {
  color: #aaa;
  margin-bottom: 35px;
  line-height: 1.5;
}

/* LOADER */
.loader {
  width: 36px;
  height: 36px;
  border: 2px solid #222;
  border-top: 2px solid #ff7300;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* ANIMAÇÕES */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}