/* Header compartilhado — Focus Up */
.site-header{position:fixed;inset:0 0 auto;z-index:1000;border-bottom:1px solid transparent;transition:.25s}.site-header.scrolled{background:rgba(10,11,12,.88);border-color:var(--line);backdrop-filter:blur(18px)}.header-inner{height:84px;display:flex;align-items:center;justify-content:space-between;gap:24px}.brand img{width:138px;height:auto}@media(max-width:820px){.header-inner{height:72px}.brand img{width:122px}.header-inner .button{display:none}}
/* V20 — centralização exclusiva do header no mobile */
@media(max-width:820px){
  .header-inner{
    height:84px;
    justify-content:center;
  }

  .brand{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    margin-inline:auto;
  }

  .brand img{
    width:122px;
  }

  .header-inner .button{
    display:none;
  }
}

@media(max-width:560px){
  .header-inner{
    height:82px;
  }

  .brand img{
    width:126px;
  }
}
