@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');





* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}



:root{

    --cor-fundo: #110F2B;
    --cor-dourado: #E4D2A3;
    --cor-verde-claro: #8bff9f;

}

input, textarea, select {

    outline: none;

}

a{
    text-decoration: none;
}

.container-geral {
  padding: 3em 5em 3em 20em;
  transition: all 0.3s;
}
.ajustarContainer {
  padding: 3em 5em 3em 5em;
}


/*
    CONFIGURAÇAO DO HEADER GLOBAL
*/

.header-top{
  display: flex;
  height: 10vh;
  background-color: var(--cor-fundo);
  color: #fff;

  align-items: center;
  padding: 0 1em;
  gap: 1em;

  transition: all 0.3s;

  padding-left: 310px;
}

.header-top button{
  background-color: transparent;
  border: none;
  color: var(--cor-dourado);
  font-size: 40px;
  cursor: pointer;
}

.header-animation {
  padding-left: 1em;
}

.header-top #hamburger-button-open {
  display: none;
}

.sideNav{
  position: fixed;
  background-color: var(--cor-fundo);
  height: 100vh;
  width: 300px;
  z-index: 2;
  top: 0;
  bottom: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  left: 0;
  transition: all 0.3s;
}

.sumir{
  left: -100vh;
}

.sideNav #hamburger-button-closed{
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--cor-dourado);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.sideNav img{
  width: 250px;
}

#form-closed{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
}

#links{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 2em;
  gap: 1em;
  height: 75vh;
  overflow-y: auto;
}

#links a {
  color: #fff;
  font-size: 18px;
  transition: all 0.2s;
}

#links a:hover{
  color: var(--cor-dourado);
  transform: translateX(10px);
  font-weight: bold;
}

#form-closed button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 18px;
  color: var(--cor-dourado);
  border: none;
  background: transparent;
  cursor: pointer;
}
#form-closed button svg{
  width: 40px;
}

@media (max-width:1024px){
  .container-geral {
    padding: 3em 1em 3em 1em;
    transition: all 0.3s;
  }
  .ajustarContainer {
    padding: 3em 5em 3em 5em;
  }
}

@media (max-width: 768px) {
  .container-geral {
    padding: 3em 1em 3em 1em;
    transition: all 0.3s;
  }
  .ajustarContainer {
    padding: 3em 1em 3em 1em;
  }

  .header-top{
    padding-left: 0.5em;
  }

  .header-top #hamburger-button-open {
    display: block;
  }
  
  .sideNav{
    left: -100vh;
    transition: all 0.3s;
  }
  
  .sumir{
    left: 0vh;
  }
  
}