.cabecalhoSite {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(234, 190, 120, .34);
  background: rgba(7, 19, 7, .76);
  backdrop-filter: blur(8px);
}

.paginaComNavbar .cabecalhoSite { position: relative; }

.navbarSite {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 58px);
  width: min(1380px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
}

.marcaSite {
  color: #fff5d6;
  font-family: "Playfair", Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.linksNavbarSite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.linksNavbarSite a,
.itemDropdownNavbar button {
  padding: 8px 0;
  border: 0;
  color: #fff7df;
  background: transparent;
  font-family: "Pontano Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease;
}

.linksNavbarSite a:hover,
.linksNavbarSite a:focus-visible,
.itemDropdownNavbar button:hover,
.itemDropdownNavbar button:focus-visible { color: #e4b62d; }

.separadorNavbar {
  width: 4px;
  height: 4px;
  flex: none;
  border-radius: 50%;
  background: rgba(234, 190, 120, .82);
}

.itemDropdownNavbar { position: relative; }

.itemDropdownNavbar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.itemDropdownNavbar button::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.dropdownNavbar {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 250px;
  padding: 10px;
  border: 1px solid rgba(234, 190, 120, .42);
  border-radius: 8px;
  background: rgba(7, 19, 7, .97);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.dropdownNavbar a {
  display: block;
  padding: 12px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.25;
}

.dropdownNavbar a:hover,
.dropdownNavbar a:focus-visible { background: rgba(234, 190, 120, .1); }

.itemDropdownNavbar:hover .dropdownNavbar,
.itemDropdownNavbar:focus-within .dropdownNavbar {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.botaoNavbarAtendimento {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  color: #111307;
  background: linear-gradient(90deg, #c58a2e, #f0c875, #c58a2e);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.botaoNavbarAtendimento img { width: 16px; height: 16px; object-fit: contain; }
.botaoNavbarAtendimento:hover,
.botaoNavbarAtendimento:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 0, 0, .24); }
.controleMenuMobile,
.botaoMenuMobile { display: none; }

@media (max-width: 1160px) {
  .navbarSite { grid-template-columns: auto auto; width: min(100% - 36px, 960px); gap: 18px; }
  .botaoMenuMobile { justify-self: end; display: grid; gap: 5px; width: 38px; padding: 8px; cursor: pointer; }
  .botaoMenuMobile span { display: block; height: 2px; background: #fff5d6; }
  .linksNavbarSite { grid-column: 1 / -1; display: none; align-items: stretch; width: 100%; padding: 6px 0 18px; flex-direction: column; gap: 0; }
  .controleMenuMobile:checked ~ .linksNavbarSite { display: flex; }
  .linksNavbarSite a,
  .itemDropdownNavbar button { width: 100%; padding: 13px 0; text-align: left; font-size: 14px; }
  .separadorNavbar { display: none; }
  .itemDropdownNavbar button { justify-content: space-between; }
  .dropdownNavbar { position: static; width: 100%; padding: 0 0 0 16px; border: 0; border-left: 1px solid rgba(234, 190, 120, .36); border-radius: 0; background: transparent; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .dropdownNavbar a { padding: 10px 0; font-size: 13px; }
  .botaoNavbarAtendimento { display: none; }
}

@media (max-width: 620px) {
  .navbarSite { width: calc(100% - 28px); min-height: 72px; }
  .marcaSite { font-size: 13px; }
}
