/* Estilos específicos para index.html */

/* Mini loader só pra index */
body, html {
  height: 100vh;
  overflow: hidden;
}

.loading-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.loading-spinner {
  width: 6vh;
  height: 6vh;
  border: 0.4vh solid rgba(255, 255, 255, 0.3);
  border-top: 0.4vh solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 2vh;
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
