/* Loading Global - Suvinil na Timbalada */

#global-loading {
  animation: fadeIn 0.3s ease-out;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  position: relative;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f2e9d8;
  border-top: 4px solid #ff6600;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mostrar loading durante carregamento da página */
body.loading-page #global-loading {
  display: flex !important;
}

body.loading-complete #global-loading {
  display: none !important;
}

