.header {
  background: #1e293b;
  border-bottom: 1px solid white;
  padding: 0.7rem 1.2rem;
  font-family: 'Inter', sans-serif;
}

.header__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Link da esquerda */
.header__left-link {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.header__left-link:hover {
  color: #60a5fa;
}

/* Link da direita */
.header__right-link {
  color: white;
  text-decoration: none;
  /* font-weight: 550; */
  padding: 5px 14px;
  background-color: #60a5fa;
  border-radius: 10px;
}

.header__right-link:hover {
  background-color: #ff6700;
}

.icone{
  margin-right: 6px;
  font-weight: bold !important;
}

/* Botão Hamburguer */
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__toggle span {
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* MENU MOBILE */
.header__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #1e293b;
}

.header__mobile-link {
  color: white;
  text-decoration: none;
  /* font-weight: 550; */
  padding: 5px 14px;
  background-color: #60a5fa;
  border-radius: 10px;
}

/* OPEN MENU */
.header__mobile.header__mobile--open {
  display: flex;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .header__right {
    display: none;
  }

  .header__toggle {
    display: flex;
  }
}