/* ==========================================
   ARKAN DESIGN SYSTEM - NAVBAR COMPONENT
   ========================================== */

.navbar {
  z-index: 500;
  height: 11vh;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.right-navbar {
  display: flex;
}

.icon-navbar {
  height: 32px;
  opacity: 1;
}

.theme-toggle {
  width: 3.6vw;
  height: 2.2vw;
  cursor: pointer;
  border: 1px solid #303030;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
}

.toggle-circle {
  width: 1.4vw;
  height: 1.4vw;
  border: 1px solid #303030;
  border-radius: 100%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 10%;
  right: auto;
}

.theme-icon-dark {
  z-index: 10;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.theme-icon-light {
  z-index: 10;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.wings-img {
  opacity: 0;
}


/* --- ARKAN CHROMATIC DNA OVERRIDES --- */
.navbar {
  background-color: transparent; /* Mantém a transparência se estiver sobreposta */
}
.icon-navbar {
  /* Filtro CSS para transformar svg preto em Marfim Clássico #FDFBF7 */
  filter: invert(99%) sepia(5%) saturate(161%) hue-rotate(320deg) brightness(113%) contrast(96%);
}
.wings-img {
  filter: invert(99%) sepia(5%) saturate(161%) hue-rotate(320deg) brightness(113%) contrast(96%);
}
