.elementor-623 .elementor-element.elementor-element-63109b7{--display:flex;--margin-top:-67px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d3f222a *//* ==========
   HEADER RAIZE.id
   ========== */

.raize-header {
  position: sticky;          /* se não quiser grudar, troca pra relative */
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.raize-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LOGO */

.raize-logo {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}

.raize-logo span {
  color: #2563eb; /* azul RAIZE */
}

/* MENU DESKTOP */

.raize-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
}

.raize-nav a {
  color: #111827;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.raize-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.2s ease;
}

.raize-nav a:hover::after {
  width: 100%;
}

/* TOGGLE HAMBÚRGUER – escondido no desktop */

.raize-menu-toggle {
  display: none;
}

.raize-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.raize-menu-icon span {
  display: block;
  width: 26px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========
   TABLET + MOBILE (≤ 1024px)
   ========== */

@media (max-width: 1024px) {
  .raize-container {
    padding: 10px 14px;
  }

  .raize-logo {
    font-size: 22px;
  }

  /* mostra o hambúrguer e esconde menu em linha */
  .raize-menu-icon {
    display: flex;
  }

  .raize-nav {
    position: absolute;
    top: 10px;               /* altura do header */
    left: 0;
    right: 0;
    margin: 0;
    padding: 16px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: none;           /* começa fechado */
    flex-direction: column;
    gap: 16px;
  }

  .raize-nav a {
    padding: 4px 0;
    font-size: 15px;
  }

  /* quando o checkbox estiver marcado, mostra o menu */
  .raize-menu-toggle:checked ~ .raize-nav {
    display: flex;
  }

  /* animação do ícone ao abrir o menu (opcional) */
  .raize-menu-toggle:checked + .raize-menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .raize-menu-toggle:checked + .raize-menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .raize-menu-toggle:checked + .raize-menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ==========
   MOBILE MAIS ESTREITO (≤ 480px)
   ========== */

@media (max-width: 480px) {
  .raize-container {
    padding: 8px 10px;
  }

  .raize-logo {
    font-size: 20px;
  }

  .raize-nav {
    top: 56px;
    padding: 14px 16px 18px;
  }
}/* End custom CSS */