/* === Fonte global === */
@font-face {
  font-family: 'UniversLTStd';
  src: url('/fonts/UniversLTStd.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* === Aplicar a toda a aplicação === */
/* === Aplicar a toda a aplicação, incluindo elementos que não herdam naturalmente (como inputs) === */
html, body, button, input, textarea, select { /* Adicionamos os elementos de formulário e controle */
  font-family: 'UniversLTStd', 'Open Sans', Helvetica, Arial, sans-serif;
  background-color: #050c21;
  color: #ffffff;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* === HEADER === */
.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
}

.header-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
}

/* === NAVIGATION === */
.nav {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.1rem; /* Fonte menor */
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #6632ff; /* cor de destaque da Lumeeira */
}

/* === MENU MOBILE === */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* === Responsividade === */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: rgba(5, 12, 33, 0.95);
    flex-direction: column;
    align-items: flex-end;
    padding: 20px 30px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}
