:root{
  --colorBackground: #051D3B;
  --blue300: #5081FB;
  --blue200: #7BA4FC;
  --blue100: #96B9FD;
  --white: #FFFFFF;
  --neutral: rgba(255, 255, 255, 1);
 
  --sombra:#0000000F;
 
 --fonte: Inter, sans-serif;
  
 }

body{
  background-color: var(--colorBackground);
  font-family: var(--fonte);
  color: var(--neutral);
  margin: 2rem;
}

/*Header*/
.header-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.logo{
  display: flex;
  align-items: center;   
  width: 170px; 
}


.busque{
  background-color:rgba(255, 255, 255, 0.16);
  width: 100%;
  display: block;
  height: 56px;
  
  border-radius: 8px;
  border: none;
  box-sizing: border-box;

  font-size: 16px;
  font-style: normal;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.busque::placeholder{
  font-size: 16px;
  font-style: normal;
 
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.busque:hover{
  background: rgba(255, 255, 255, 0.24);
}

.perfil{
  display: flex;
  align-items: center;
  height: 32px;
  border-radius: 8px;
  padding: 12px;
}

.perfil:hover{
  background-color: rgba(255, 255, 255, 0.08);
}

.fontePerfil{
  width: 2rem ;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 0;
}

.fotoPerfil, .fontePerfil, .busque{
  display: none;
}

#menu-icon{

  width: 1.8rem;
  align-self: center;
}

/*Main*/
.body-container{
  display: flex;
  flex-direction: column;
}

/*Menu Esquerdo*/
.menuEsquerdo{
  display: none;
}

.menuLateralE-icone{
  height: 48px;
  width: 48px;
  left: 0px;
  top: 0px;
  border-radius: 16px;
}
.editor-icone{
  opacity: 0.50;
}
.editor-icone:hover{
  opacity: 0.70;
}
.editor-icone:active{
  opacity: 1;
}

.fonteMenuLateralE{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  color: var(--neutral);

  margin-left: 16px;
  margin-bottom: 0;
}

.tituloMenuLateralE{
  width: 51px;
  height: 18px;
  left: 32px;
  top: 128px;
  
  /* Sidebar title */
 
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  /* identical to box height, or 150% */
  
  letter-spacing: 0.4em;
  text-transform: uppercase;
  
  /* Neutral/$white */
  
  color: #FFFFFF;

}

.menu-navegacao .menu-navegacao-item{
  width: 189px;
  
  margin-top: 16px;
}


.imagens-link, .menu-navegacao-item{
  display: flex;
  justify-content:start;
  align-items: center;
}

/*menu hamburguer*/
.menuHamburguer{
  width: 254px;
  height: 912px;
  background: #2D415B;
  border-radius: 8px;
  position: absolute;
  display: none;
  top: 100px;
  right: 10px;

  padding-top: 24px;
  padding-left: 24px;
}

.show{
  display: block;
}

.divisoria{
 
  opacity: 0.08;
  
  border: 1px solid #FFFFFF;
  margin: 24px 24px 24px 0;
}

.perfilHamburguer{
  display: flex;
  align-items: center;
  margin-right: 5%;
}

.perfilHamburguer, .autorPerfil{
  width: 2rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/*Quadro editor*/
.quadro{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2%;
  padding-left: 3%;

  background: #6BD1FF;
  border-radius: 8px;
}

.editor{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4%;
  padding-left: 4%;

  width: 97%;
  height: 300px;

  /* Neutral/$dark-gray */

  background: #141414;
  /* $editor-shadow */

  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.24);
  border-radius: 8px;

/* Inside Auto Layout */

  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 10px 0px;
}

.dot-container{
  width: 52px;
  height: 12px;


  display: flex;
  justify-content: space-between;
}

.dot{
  width: 12px;
  height: 12px;
  left: 16px;
  top: 16px;

  border-radius: 16px;
}

.macRed{
  background: #FF5F56;
}
.macYellow{
  /* Mac/$mac_yellow */
  background: #FFBD2E;
}
.macGreen{
/* Mac/$mac_green */
  background: #27C93F;
}

.codigo{

  width: 98%;
  height: 234px;

}

.fonteCodigo{
  position: block;
  font-family: Roboto Mono,sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;

  background: #141414;
  color: var(--neutral);

  height: 95%;
  width: 97%;
  border: none;
  resize: none;

  margin-top: 10px;
}

.fonteCodigo::-webkit-scrollbar{
  width: 8px;
}

.fonteCodigo::-webkit-scrollbar-thumb{
  background-color: rgba(80, 129, 251, 0.16);
}


.botaoVisualizar{
  width: 100%;
  height: 56px;

  background: rgba(80, 129, 251, 0.08);
  border-radius: 8px;
  border: none;
  margin-top: 6%;

  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--neutral);

}

.botaoExportarContainer
{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.botaoVisualizar:active{
  background: rgba(80, 129, 251, 0.16);
  border: 4px solid rgba(80, 129, 251, 0.24);
}

.botaoVisualizar:hover{
  background: rgba(80, 129, 251, 0.16);
}

.botaoVisualizar:focus{
  background: rgba(80, 129, 251, 0.24);
}

/*Menu da Direita*/
.menuDireito{

  width: 100%;
  height: 600px;

  margin-top: 7%;

  display: flex;
  flex-direction: column;  

  }
  
  .tituloMenuDireito{
  /* Seu projeto */
  
  height: 18px;
  
  
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height, or 150% */
  
  letter-spacing: 0.4em;
  text-transform: uppercase;
  
  margin-bottom: 16px;
  
  color: var(--neutral);
  
  }
  
  .inputNomeProjeto{
    width: 100%;
    height: 56px;
    
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    border: none;
    
    margin-bottom: 16px;

    color: #FFFFFF;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    padding-left: 14px;
    opacity: 0.64;
  }
  
  
  .inputNomeProjeto::placeholder{
  /* $label */
  position: static;
  width: 159px;
  height: 24px;
  left: calc(50% - 159px/2 - 42.5px);
  top: calc(50% - 24px/2);
  
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  
  color: #FFFFFF;
 
  }

  .inputNomeProjeto:hover{
    background: rgba(255, 255, 255, 0.24);
  }
  
  .inputDescricao{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
   
  width: 100%;
  height: 80px;
   
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  border: none;

  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  
  color: var(--neutral);
  opacity: 0.64;
  
  padding-left: 14px;
  }
  
  .inputDescricao::placeholder{
  position: static;
  width: 189px;
  height: 48px;
  left: calc(50% - 189px/2 - 27.5px);
  top: calc(50% - 48px/2);
  
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  
  color: var(--neutral);
  }

  .inputDescricao:hover{
    background: rgba(255, 255, 255, 0.24);
  }
  
  .tituloPerso{
    /* Personalização */
  
  height: 18px;
    
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height, or 150% */
  
  letter-spacing: 0.4em;
  text-transform: uppercase;
  
  color: var(--neutral);
  
  margin-top: 40px;
  margin-bottom: 16px;
  
  }
  
  .selectLinguagem{
    width: 100%;
    height: 56px;
    
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    border: none;
    
    margin-bottom: 16px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  
    opacity: 0.64;
    padding: 16px;
    color: var(--neutral);
  }
  
  .dropdownLinguagem{
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  /* Neutral/$white */
  
  color: var(--neutral);
  background: var(--colorBackground);
  
  padding: 16px;
  }
    
  
  .retang{
    /* Rectangle 30 */
    
    width: 100%;
    height: 56px;
    
    
    background: rgba(196, 196, 196, 0.01);
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 8px;
    margin-bottom: 32px;
  }
  
  
  .botaoAzul{
    /* Button */
  
    width: 100%;
    height: 56px;
  
    /* Blue/$blue-300 */
  
    background: #5081FB;
    border-radius: 8px;
    border: none;
  
    /* Button */
  
    left: 30.67%;
    right: 30.72%;
    top: 28.57%;
    bottom: 28.57%;
    
    
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    
    text-align: center;
    
    color: #051D3B;
  }

  .botaoAzul:hover{
    background-color: var(--blue200);
  }

  .botaoAzul:active{
    background: #7BA4FC;
    border: 4px solid rgba(80, 129, 251, 0.72);
  }

  .botaoAzul:focus{
    background-color: var(--blue100);
  }

  .botaoImg{
    width: 49%;
  }

  .botaoTxt{
    width: 49%;
  }

  .fonteModal{
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 24px;
    /* identical to box height, or 150% */
    
    text-align: center;
    
    color: #051D3B;
  }

@media screen and (min-width: 768px) {
  .body-container{
    flex-direction: column;
  }

.busque{
  margin-left: 4%;
  width: 55%;
  display: block;

}
.fotoPerfil, .fontePerfil{
  width: 2rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/*Menu hamburguer*/
.menuHamburguer{
  display: flex;
  flex-direction: column;

  width: 254px;
  height: 912px;
  background: #2D415B;
  border-radius: 8px;
  position: absolute;
  display: none;
  top: 100px;
  right: 10px;

  padding-top: 24px;
  padding-left: 24px;
}

.show{
  display: block;
}


/*Editor*/
.quadro-container{
  display: flex;
  flex-direction: column;
  width: 100%;

}

  .quadro{
    height: 350px;
  }

  .editor{
    height: 295px;
  }

}
@media screen and (min-width: 1025px) {
/*Header*/
  .fotoPerfil, .fontePerfil{
    display: inline;
  }

  header .perfil {
    display: flex;
    align-items: center;
    margin-right: 5%;
}

  input{
    width: 100%;
  }

  #menu-icon {
    display: none;
  }


/*Menu Lateral Esquerdo*/

.menuEsquerdo{
  /* Menu */
    width: 189px;
    height: 146px;
    left: 32px;
    top: 128px;
  
  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  
  /*Menu Hamburguer*/
  .menuHamburguer{
    display: none;
  }

  .body-container{
    flex-direction: row;
  }

  /*Quadro*/
  .quadro-container{
    margin-left: 11%;
  }

  /*Menu Direito*/
  .menuDireito{
    width: 30%;
    margin-top: 0px;
    margin-left: 55px;
  }

}