/* Estilos responsive para el menú de navegación */
.header__menu {
  display: flex;
  flex-direction: row;
}
.menuicon {
  display: none;
  cursor: pointer;
}
@media (max-width: 900px) {
  .header__container {
    flex-direction: row;
    align-items: center;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80vw;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    display: none;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .header__hidden_checkbox:checked ~ .header__menu {
    display: flex;
    transform: translateX(0);
    box-shadow: 2px 0 16px rgba(0,0,0,0.15);
  }
  .menuicon {
    display: block;
    margin-left: auto;
  }
  .navigation__list--header {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .navigation__list_item--header {
    width: 100%;
    text-align: left;
    padding: 1em;
    border-bottom: 1px solid #eee;
  }
}
/* Ocultar el checkbox */
.header__hidden_checkbox {
  display: none;
}
.menuicon__bar {
  width: 30px;
  height: 4px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.4s;
}
