@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}


.cabecalho {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 8px 16px;
    background-color: #192533;
}

.cabecalho__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cabecalho__logo__img {
    width: 40vw;
}

.cabecalho__menu__btn__img {
    width: 4.5vh;
}

.menu-lateral {
    display: flex;
    flex-direction: column;
    background-color: #192533;
    width: 50vw;
    height: 100vh;
    position: absolute;
    transition: 1s;
    left: -50vw;
}

dialog {
  /* Redefinição de Bordas e Contornos */
  border: none;
  outline: none;
  height: 100vh;
  width: 100vw;
  background-color: aliceblue;
}


/* Redefinição para o pseudo-elemento ::backdrop */
dialog::backdrop {
    border: 0;
    margin: 0;
    background-color: aliceblue;
    
}

.modal__conteudo {
    display: flex;
    flex-direction: column;
}

.modal__btn {
    display: flex;
    justify-content: end;
}

.modal__btn img {
    width: 5vw;
}

.modal__titulo h2{
    font-size: 5vh;
    display: block;
    margin-bottom: 5vh;
    font-weight: 430;
}

.modal__menu img{
    width: 6vw;
    padding: 0vw 3vw 0 0;
}

.modal__menu a{
    display: flex;
    align-items: center;
    font-size: 4.5vw;
    font-weight: 320;
}

.modal__menu ul li{
    display: flex;
    align-items: center;
    height: 7vh;
}
