/* UTF-8: Loader overlay styles for CyberCampus FSO (exactly as prueba.html, with overlay/blur) */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,400');

.fso-loader-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 16, 48, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  transition: opacity .3s ease;
}
.fso-loader-overlay.is-hidden { opacity: 0; pointer-events: none; }

.fso-loader-overlay .group { filter: drop-shadow(0 6px 22px rgba(0, 172, 232, .15)); text-align: center; }

.fso-loader-overlay .logo {
  width: 72px; height: 72px; margin: 0 auto 18px;
  display: grid; place-items: center; border-radius: 16px;
  background: rgba(0, 172, 232, .08);
  border: 1px solid rgba(0, 172, 232, .25);
  animation: pulseGlow 2.2s ease-in-out infinite;
}
.fso-loader-overlay .logo img { width: 48px; height: 48px; object-fit: contain; }

/* Loader puntos FSO */
.fso-loader-overlay .loader {
  width: 16px; height: 16px; border-radius: 50%; display: block; margin: 20px auto;
  position: relative; background: #FFF; box-shadow: -24px 0 #FFF, 24px 0 #FFF; box-sizing: border-box;
  animation: shadowPulse 2s linear infinite;
}
@keyframes shadowPulse {
  33% { background: #FFF; box-shadow: -24px 0 #00ace8, 24px 0 #FFF; }
  66% { background: #00ace8; box-shadow: -24px 0 #FFF, 24px 0 #FFF; }
  100% { background: #FFF; box-shadow: -24px 0 #FFF, 24px 0 #00ace8; }
}

/* Ticker de texto sin cortes */
.fso-loader-overlay .ticker {
  margin-top: 16px;
  color: #fff;
  font-size: 16px;
  letter-spacing: .3px;
  opacity: .95;
  height: 1.6em;
  line-height: 1.6em;
  overflow: hidden;
  position: relative;
  min-width: 260px;
}
.fso-loader-overlay .ticker__inner {
  display: flex; flex-direction: column; align-items: center;
  will-change: transform;
  transform: translateY(0);
  transition: transform 600ms ease;
}
.fso-loader-overlay .ticker__inner span {
  height: 1.6em; line-height: 1.6em;
  white-space: nowrap;
  padding: 0 .25ch;
  backface-visibility: hidden;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 172, 232, .35), 0 0 0 0 rgba(0, 172, 232, .15) inset; }
  50% { box-shadow: 0 0 24px 8px rgba(0, 172, 232, .25), 0 0 0 1px rgba(0, 172, 232, .25) inset; }
}
