/* ── Loader Compartilhado — Paleta Teal ──── */
.loading-screen {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,40,60,0.60);
  backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modern-loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.loader-text {
  color: #ecf3f5;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
}

.modern-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.modern-loader span {
  width: 18px;
  height: 18px;
  background: #72c1bd;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 0.6s infinite alternate;
}
.modern-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.modern-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from { transform: translateY(0); opacity: 0.6; }
  to   { transform: translateY(-18px); opacity: 1; }
}