/* Navbar Atimus — substitui o header Elementor no site estático */
.atimus-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #2b320a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Raleway", sans-serif;
}

.atimus-site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  min-height: 84px;
}

.atimus-site-header__brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.atimus-site-header__brand img {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.atimus-site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 2px;
  min-width: 0;
  flex-wrap: nowrap;
}

.atimus-site-header__nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.atimus-site-header__nav a:hover,
.atimus-site-header__nav a:focus-visible {
  color: #f9d56f;
}

.atimus-site-header__nav a.is-active {
  color: #f9d56f;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.atimus-site-header__nav a.atimus-site-header__nav-cta {
  min-height: 36px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #f9d56f;
  color: #111 !important;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.atimus-site-header__nav a.atimus-site-header__nav-cta:hover,
.atimus-site-header__nav a.atimus-site-header__nav-cta:focus-visible {
  background: #ffe08a;
  color: #111 !important;
  text-decoration: none;
}

.atimus-site-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f1a13 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.atimus-site-header__cta:hover,
.atimus-site-header__cta:focus-visible {
  background: #f9d56f;
  color: #1f1a13 !important;
}

.atimus-site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.atimus-site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

@media (min-width: 1200px) {
  .atimus-site-header__nav a {
    padding: 8px 14px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .atimus-site-header__inner {
    flex-wrap: wrap;
    padding-inline: 16px;
  }

  .atimus-site-header__toggle {
    display: inline-flex;
  }

  .atimus-site-header__cta {
    order: 3;
    margin-left: auto;
    min-height: 36px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .atimus-site-header__nav {
    order: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    padding: 12px 0 4px;
  }

  .atimus-site-header__nav.is-open {
    display: flex;
  }

  .atimus-site-header__nav a {
    justify-content: flex-start;
    padding: 12px 8px;
    font-size: 15px;
  }

  .atimus-site-header__brand img {
    height: 56px;
  }
}
