/* estilos nuevos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

.header__Content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  
}

.header_name {
  max-width: 5rem;
  margin-top: 0;
}

.header__navList {
  display: flex;
  list-style-type: none;
  gap: 1rem;
}

.header__navList a {
  text-decoration: none;
  color: #1c1c1c;
}

.abrir-menu {
  display: none;
}

.header__menu {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 10px;
}

.header__menu>a {
  text-decoration: none;
}

.header__item {
  display: flex;
  gap: 20px;
}

.header__item a {
  text-decoration: none;
}

.header__icon {
  width: 24px;
  height: 24px;
}
.abrir-menu, .cerrar-menu {
  display: none;
}

@media screen and (max-width: 720px) {
  .abrir-menu,
  .cerrar-menu {
    display: block;
    border: 0;
    font-size: 1.15rem;
    background:transparent;
    cursor: pointer;
    border: 2px;
  }

  .abrir-menu{
    color: #1c1c1c;
  }

  .cerrar-menu i{
    color: #ececec;
  }

  .header__nav{
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
    position:absolute;
    top:0;
    right:0;
    border-radius: 2px;
    background-color: #1c1c1c;
    padding: 2rem;
  }

  .header__nav.visible{
    opacity: 1;
    visibility: visible;
  }
   .header__navList {
    flex-direction: column;
    align-items: end;
   }

   .header__navList li a{
    color:white;
   }

  .header__menu {
    display: none;
  }
}


