.navbar {
  background-color: #1e3a8a;
  height: 80px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 0;
  position: relative;
}

.navbar__logo {
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
}

.navbar__list {
  display: flex;
  gap: 40px;
  list-style: none;
  transition: all 0.5s ease;
}

.navbar__item a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  padding: 10px;
  /* <-- Corregido */
}

.navbar__item a:hover {
  background-color: skyblue;
  border-radius: 10px;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.menu-icon .line {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

#menu-toggle {
  display: none;
}

@media(max-width:768px) {
  .navbar {
    padding: 16px;
  }

  .menu-icon {
    display: flex;
  }

  .navbar__list {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: #1e3a8a;
    text-align: center;
    transition: heigth 0.5s ease;
    z-index: 2;
  }

  .navbar__item {
    margin: 0;
    padding: 15px 0;
    width: 100%;
  }

  .navbar__item a {
    width: 100%;
    padding: 10px 20px;
  }

  #menu-toggle:checked+.menu-icon+.navbar__list {
    height: 40vh;
  }

}