header {
  position: fixed;
  max-width: unset !important;
  z-index: 1000;
  background-color: white;
}

.header_logo { height: calc(12dvw + 74px); min-height: 100px; max-height: 160px; width: 100%; object-fit: cover; transition: height 0.5s, min-height 0.5s; }
.header_logo_menor { height: 60px !important; min-height: 60px !important; }
.buffer_do_cabecalho { height: calc(12dvw + 74px); min-height: 100px; max-height: 160px; }
@media (max-width: 1023px){ .header_logo { height: 120px; min-height: unset; max-height: unset; }}
@media (max-width: 600px){ .header_logo { height: 80px; min-height: unset; max-height: unset; }}

.cabecalho {
  width: 100%;
  max-width: 1680px;
  padding: 40px 40px 20px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: padding-top 0.5s;
}
.cabecalho_menor { padding-top: 20px; }

.cabecalho .botoes {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.botoes_mobile {
  display: none;
}

.botoes_mobile img {
  height: 48px;
}

.lightbox_nav_mobile {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .botoes_mobile {
    display: block;
  }
  .cabecalho .botoes {
    display: none;
  }

  .lightbox_nav_mobile:not(.fechado) {
    z-index: 9999;
    opacity: 1;
    pointer-events: all;
    background: #0005;
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    nav {
      background: white;
      display: flex;
      flex-direction: column;
      width: calc(100dvw - 60px);
      height: 100%;
      padding: 30px;
      gap: 12px;
      align-items: center;
      & button:nth-child(1) {
        align-self: flex-end;
        width: min-content;
      }
      & button:not(:nth-child(1)) {
        width: 55%;
      }
    }
  }
}
