@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Michroma&family=Orbitron:wght@400..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Michroma&family=Orbitron:wght@400..900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0e0e0e;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.tela-inicial {
  text-align: center;
}

h1 {
  font-size: 2.5em;
  animation: fadeIn 2s ease-in-out;
  color: #001797;
 
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#descricao {
  font-size: 1.2em;
  color: rgb(255, 255, 255);
  margin-top: 20px;
  animation: fadeIn 3s ease-in-out;

  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  
}

button {
  margin-top: 30px;
  padding: 10px 20px;
  font-size: 1em;
  width: 300px;
  height: 50px;
  background-color: #001797;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #003dcc;
  
}

.oculto {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease;
}

.visivel {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}



/* === FUNDO DE NÉVOA === */
.fundo-nevoa {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(54, 15, 209, 0.444)0%, rgba(0, 0, 0, 0.504) 60%);
  pointer-events: none;
  z-index: -1;
  animation: mover-nevoa 20s linear infinite;
  opacity: 0.4;
}

@keyframes mover-nevoa {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 1000px;
  }
}

