/* Estilos principais do header */
.site-header {
  background-color: #2b323a;
  padding: 15px 2rem;
  font-family: "Montserrat", sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.nav-menu ul {
  font-weight: bold;
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.2s;
  
}

.nav-menu a.active,
.nav-menu .current-menu-item > a {
  font-weight: bold;
}

.header-cta .btn-cta {
  background-color: white;
  color: #2b323a;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.header-cta .btn-cta:hover {
  background-color: #e4e4e4;
}

/* Checkbox escondido */
.menu-toggle {
  display: none;
}

/* Botão hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-cta {
  display: none;
}

/* Responsivo */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-menu {
    display: none;
    width: 100%;
  }

  .menu-toggle:checked ~ .nav-menu {
    display: block;
    margin-top: 1rem;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .site-header .container {
    align-items: center;
    gap: 1rem;
  }

  .mobile-cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
  }

  .mobile-cta .btn-cta {
    display: inline-block;
    background-color: white;
    color: #2b323a;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-cta .btn-cta:hover {
    background-color: #e4e4e4;
  }

  .header-cta {
    display: none;
  }
}
