.cabecalho{
  width: 100%;
  height: var(--altura-header);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

  .cabecalho__logos{
    height: 100%;
    display: flex;
    
    align-items: center;
    
  }

    

  .cabecalho__nav{
    height: 100%;
    max-width: 50%;

    display: flex;
    align-items: center;
  }
/* MOBILE */
@media screen and (min-width:0){
  

  .cabecalho__logos{
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  .cabecalho__logo{
    height: 90%;
    max-width: calc(30% - 0.1rem);
  }
}/* MOBILE - FIM */


/* TABLET */
@media screen and (min-width: 768px){
  
}/* TABLET - FIM */


/* 1024 */
@media screen and (min-width: 1024px){
  

  .cabecalho__logos{
    max-width: 30%;
    justify-content: space-between;
    gap: 0.25rem;
  }

  .cabecalho__logo{
    height: 100%;
    max-width: calc(50% - 0.1rem);
  }
}/* 1024 - FIM */


/* 1200 */
@media screen and (min-width: 1200px){
  
}/* 1200 - FIM */