.topo {
  background-color: #d4af37; /* Dourado */
  color: #2a1a3d; /* Roxo escuro para texto */
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.topo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2a1a3d; /* Roxa escura */
}

.topo-esquerdo, .topo-direito {
  display: flex;
  align-items: center;
  gap: 10px;
}

.leet-text, .destinos-text {
  color: #2a1a3d;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombreamento */
}

.login-btn {
  background-color: #2a1a3d;
  color: #d4af37;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #3d2a5a;
}

.bandeiras-container {
  display: flex;
  gap: 5px;
}

.bandeira {
  width: 24px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #2a1a3d;
  border-radius: 3px;
}

.login-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.login-popup.show {
  display: flex;
}

.login-container {
  background-color: #d4af37;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

.login-container h2 {
  color: #2a1a3d;
  margin-bottom: 15px;
}

.login-container .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #2a1a3d;
  cursor: pointer;
}

.login-input {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 5px;
  border: 1px solid #2a1a3d;
  border-radius: 5px;
}

.login-submit, .recover-password {
  background-color: #2a1a3d;
  color: #d4af37;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  transition: background-color 0.3s;
}

.login-submit:hover, .recover-password:hover {
  background-color: #3d2a5a;
}