/* 
Versão: 1.0
Descrição: Estilo para página "em breve" moderna e responsiva
*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 2rem;
}

.logo {
  width: 120px;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

h1 {
  font-size: 2em;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1em;
  margin-bottom: 2rem;
}

footer {
  margin-top: 3rem;
  font-size: 0.9em;
  color: #ccc;
}

/* Animação de carregamento */
.loader {
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-top: 8px solid #00bcd4;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  animation: spin 1.2s linear infinite;
}

/* Animações */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsividade */
@media (max-width: 500px) {
  h1 {
    font-size: 1.5em;
  }

  .logo {
    width: 90px;
  }

  p {
    font-size: 1em;
  }
}

