/* ══ LOGO FIJO ══ */
.logo-fixed{
  position:absolute;
  top:36px;right:48px;
  display:flex;align-items:center;
  z-index:50;
  opacity:0;transition:opacity 0.9s ease 0.5s;
  cursor:pointer;
}
body.rendered .logo-fixed{opacity:1}
.svg-masked{
  width:130px;height:46px;flex-shrink:0;
  background:#fff;
  mask-image:var(--svg-mask);
  mask-size:contain;mask-repeat:no-repeat;mask-position:left center
}
.sep-logo{width:1px;height:30px;background:rgba(255,255,255,0.4);margin:0 14px;flex-shrink:0}
.dev-text{font-size:28px;font-weight:500;line-height:1;color:#fff}
.dev-v{display:inline-block;width:0.62em;text-align:center;animation:bC 1.4s step-end infinite}
@keyframes bC{
  0%,49%{background:#fff;color:#0590aa;-webkit-text-fill-color:#0590aa}
  50%,100%{background:transparent;color:rgba(255,255,255,0.6);-webkit-text-fill-color:rgba(255,255,255,0.6)}
}
