/* Light travels through the lettering; the label itself remains stationary. */
@supports ((background-clip:text) or (-webkit-background-clip:text)){
  #marcas .brand-official{
    background-image:linear-gradient(105deg,#b8000d 0%,#d90010 36%,#f65b60 46%,#ffb0aa 50%,#f65b60 54%,#d90010 64%,#b8000d 100%);
    background-size:300% 100%;
    background-position:100% 50%;
    -webkit-background-clip:text;background-clip:text;
    color:transparent;
    animation:official-letter-light 4.6s ease-in-out -1s infinite;
  }
  @keyframes official-letter-light{
    0%,12%{background-position:100% 50%;}
    64%,100%{background-position:0% 50%;}
  }
}
@media(prefers-reduced-motion:reduce){
  #marcas .brand-official{animation:none;background:none;color:var(--red);}
}
