#header {
  background-color: var(--main-color);
  width: 100%;
  position: fixed;
  top: 0%;
  left: 0;
  height: var(--header-height);
  z-index: 100;
  color: var(--main-typo-color);
  box-shadow: 1px 1px 8px rgb(228, 228, 228);

}
#headerContainer {
  /* border: 2px solid red; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 20px;
}
#menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.opcionMenu {
  width: 150px;
  margin: 10px;
  cursor: pointer;
  padding: 15px;
  transition: .4s box-shadow;
  text-align: center;

}
.opcionMenu:hover {
  box-shadow: 2px 2px 6px rgba(128, 128, 128, 0.459);
}
.opcionMenu:last-child {
  margin-right: 0;
}

#logoMenu {
  max-height: 97%;
  background-color: white;
}

#componentes {
  display: flex;
  justify-content: space-evenly;
}
.seccion {
  display: none;
  margin-top: var(--header-height);
}
.seccion.mostrar {
  display: block;
}
#container_proyectos.mostrar{
  display: flex;

}
#hamburguesa {
  display: none;
  flex-direction: row;
  align-items: center;
  font-size: 40px;
  cursor: pointer;
}
#desplegable {
  background-color: var(--main-color);
  opacity: 0;
  position: fixed;
  top: var(--header-height);
  width: 50%;
  right: -100%;
  transition: 0.4s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#desplegable.mostrar {
  opacity: 1;
  pointer-events: all;
  right: 0%;
}
.opcionDesplegable {
  margin: 1px 0;
  padding: 5px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

@media only screen and (max-width: 900px) {
  #headerContainer{
    max-width: 100vw;
  }
  #menu {
    display: none;
  }
  #hamburguesa {
    display: flex;
    fill: black;
  }
  #hamburguesa:hover {
    display: flex;
    fill: rgb(116, 116, 116);
  }
}
