*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: #e9f3ef;
  display: flex;
  flex-direction: column;
}

header{
    position: fixed; /* Fixa na tela */
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #00a38f; 
}

.logo{
  color: #e9f3ef;
  font-family: 'Sarala', sans-serif;;
  font-size: 2rem;
  padding-left: 2rem;

}

.sessao-primary {
  position: fixed; /* Fixa na tela */
  top: 6.4em;
  left: 0;
  background-color: #00a38f;
  width: 250px;
  height: 100vh; /* Ocupa toda a altura da tela */
  overflow-y: auto; /* Permite rolar caso tenha muito conteúdo */
}

.principal {
  display: flex;
  height: 100%;
  padding-left: 250px; /* Empurra o conteúdo para o lado da barra */
}

#titulo{
  font-family: sans-serif;
  color:#004500;
  margin-left: 4%;
}

#subtitulo{
  font-family: sans-serif;
  color:#004500;
  margin-left: 7%;
}

.table {
  display: none;
}

fieldset{
  border:0;
}

#adicionarimp { 
  display: none;
}

.sessao-secund {
  font-family: sans-serif;
  font-size: 1em;
  color: #004500;
  padding: 5em 0 0 40em;
  height: 100%;
  width: 100%;
  margin-top: 4em;
}

input, select, textarea, button{
  border-radius: 5px;
}

.campo{
  margin-bottom: 1em;
}

.campo label{
  margin-bottom: 0.2em;
  color: #004500;
  display: block;
}

fieldset.grupo .campo{
  float: left;
  margin-right: 1em;
}

.campo input[type="text"], .campo input[type="email"], .campo select, .campo textarea {
  padding: 0.2em;
  border: 1px solid #59429d;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  display: block;
}

.campo select option{
  padding-right: 1em;
}

.campo input:focus, .campo select:focus, .campo textarea:focus{
  background: #bddea9;
}

.botao{
  font-size: 1.2em;
  background: #004500;
  border: 0;
  margin-bottom: 1em;
  color: #ffffff;
  padding: 0.2em 0.6em;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  margin-left: 9em;
  margin-top: 2em;
  transform: translate(-50%, -50%);
}

.botao:hover{
  background: #bddea9;
  box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2);
  text-shadow: none;
}

.menu{
  list-style: none;
  transition: max-height 0.3s ease-out;
  padding: 0;
  margin: 0;
  
}

.hamburger-button .icon{
  display:inline-block;
  width: 30px;
  text-align: center;
}

.hamburger-button[aria-expanded="false"] .icon::before{
  content: "\2630";
}

.hamburger-button[aria-expanded="true"] .icon::before{
  content: "\2715";
}

.hamburger-button-js-enabled + .menu{
  display: flex;
  position: absolute;
  width: calc(100% - 30px);
  left: 15px;
  top: 60px;
  flex-direction: column;
}

.hamburger-button-js-enabled + .menu-closed{
  display: none;
}

.menu li a{
  color: white;
  padding: 10px;
  display: block;
  text-decoration: none;
}

.menu li a:hover,
.menu li a:focus{
  background-color: #555;
}

.hamburger-button{
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  padding: 14px;
  cursor: pointer;
}

.hamburger-button-js-enabled{
  display: block;
}

@media (max-width: 768px) {
  .sessao-primary {
    width: 100%;
    height: auto;
  }
}




