/* --- HEADER BASE --- */
#navBar {
  background: transparent;
  padding-top: 12px;
}

#navBarContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  position: relative;
  height: 60px;
}

.Header__logo img {
  max-height: 40px;
}

/* --- MENU PAYZU (DESKTOP) --- */
.Payzu__customMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.Payzu__customMenu a,
.Payzu__customMenu > div > a {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.Payzu__customMenu a:hover,
.Payzu__customMenu > div > a:hover {
  background-color: #14ce71;
  color: #111111;
  border-color: #14ce71;
}

/* --- LOGIN BUTTON --- */
.Header__actions {
  display: flex;
  align-items: center;
}

.Header__loginOnly {
  font-family: "Montserrat", sans-serif;
  background-color: #14ce71;
  color: white;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.Header__loginOnly:hover {
  background-color: #10b365;
}

/* --- SEARCH BUTTON --- */
.search-btn,
input[type="submit"],
button[type="submit"] {
  background-color: #14ce71 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.search-btn:hover {
  background-color: #10b365 !important;
}

/* --- PLACEHOLDER --- */
input.search-query::placeholder {
  color: #999999;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

/* --- FOOTER --- */
.Footer__footerCopyrigt {
  background-color: #14ce71;
  color: #ffffff;
  text-align: center;
  padding: 16px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.Footer__footerCopyrigt span {
  display: inline-block;
}

/* --- RESET TEXT SHADOW --- */
.Header__searchTitle,
.Header__description,
h1, h2, h3, h4, h5, h6, p {
  text-shadow: none !important;
}

/* --- HAMBURGER MENU --- */
.Hamburger__menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.Hamburger__menu span {
  height: 3px;
  width: 22px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- ACTIVE STATE (X) --- */
.Hamburger__menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.Hamburger__menu.active span:nth-child(2) {
  opacity: 0;
}

.Hamburger__menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- RESPONSIVO MOBILE --- */
@media (max-width: 768px) {
  #navBarContainer {
    flex-direction: row;
    padding: 0 16px;
    height: 60px;
    align-items: center;
  }

  .Header__logo img {
    max-height: 36px;
  }

  .Hamburger__menu {
    display: flex;
    position: absolute;
    top: 14px;
    right: 16px;
  }

  .Payzu__customMenu {
    display: none;
    flex-direction: column;
    background-color: #14ce71;
    position: absolute;
    top: 60px;
    right: 16px;
    padding: 16px;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .Payzu__customMenu.active {
    display: flex;
  }

  .Payzu__customMenu a {
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }
}/* Corrige barra branca que aparece no topo (Zoho default) */
.zd_header,
.zohodesk-support-header,
#zd_header,
#zohodesk-header,
#support-header {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Se ainda houver algum resíduo de espaçamento */
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


