.nav-header {
  display        : flex;
  justify-content: end;
  font-family    : 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size      : 14px;
}

.a-header {
  padding        : 10px 27px 10px 27px;
  text-align     : center;
  color          : #555555;
  line-height    : 14px;
  font-weight    : 400;
  letter-spacing : 1px;
  text-transform : none;
  text-decoration: none;
  cursor         : pointer;

}

.span-header:hover {
  cursor        : pointer;
  padding-bottom: 5px;
  border-bottom : 3px solid rgba(0, 107, 184, 0.466);
}

.selected-page {
  cursor        : pointer;
  padding-bottom: 5px;
  border-bottom : 3px solid rgb(0, 107, 184);
  font-weight   : bold;
}

.header-button {
  padding      : 15px 48px;
  background   : #007aff;
  font-size    : clamp(13px, 1vw, 19px);
  font-weight  : 600;
  font-family  : 'Roboto'sans-serif !important;
  line-height  : 48px;
  color        : #ffffff;
  border       : none;
  border-radius: 5px;
  box-shadow   : rgb(38, 57, 77) 0px 20px 30px -10px;
  cursor       : pointer;
}

.header-button:hover {
  padding   : 15px 48px;
  background: #298efa;
}

/* --- MENU MOBILE --- */
.mobile-menu {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border    : none;
  font-size : 2rem;
  color     : #ffffff;
  padding   : 0.2rem;
  cursor    : pointer;
}

.mobile-logo-center {
  display: none;
}

.logo-center-img {
  display  : block;
  margin   : 1.5rem auto 0 auto;
  max-width: 380px;
  width    : 100vw;
  padding  : 15px 0px 30px 20px;
  height   : auto;
}

.mobile-menu-content {
  list-style    : none;
  margin        : 0;
  padding       : 1rem 0.5rem;
  background    : #fff;
  box-shadow    : 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius : 0 0 12px 12px;
  position      : absolute;
  top           : 50px;
  left          : 0;
  right         : 0;
  z-index       : 1000;
  display       : flex;
  flex-direction: column;
  gap           : 0.5rem;
}

.mobile-menu-content li {
  margin: 0.2rem 0;
}

.mobile-menu-content .a-header {
  display        : block;
  width          : 100%;
  padding        : 0.75rem 1.5rem;
  font-size      : 1.1rem;
  color          : #222;
  text-decoration: none;
  border-radius  : 6px;
  transition     : background 0.2s;
}

.mobile-menu-content .a-header:hover {
  background: #f0f4fa;
  color     : #006cb8;
}

@media (max-width: 900px) {
  .mobile-logo-center {
    display       : block;
    text-align    : center;
    background    : #fff;
    padding-top   : 1.5rem;
    padding-bottom: 0.5rem;
  }

  .span-header {
    color: #fff;
  }

  .header-desktop {
    display   : none !important;
    position  : static !important;
    box-shadow: none !important;
  }

  .mobile-menu {
    display : block;
    position: relative;
  }

  .header-mobile {
    height          : 50px;
    background-color: #007aff;
    display         : block !important;
  }

  .selected-page {
    cursor        : pointer;
    padding-bottom: 5px;
    border-bottom : 3px solid rgb(2, 71, 121);
  }

  .mobile-menu-content {
    background-color: #007aff;
    padding         : 1.5rem 0.7rem 1.5rem 0.7rem;
    gap             : 0.7rem;
  }

  .mobile-menu-content li {
    margin: 0.8rem 0;
  }
}

@media (min-width: 901px) {
  .mobile-logo-center {
    display: none !important;
  }

  .header-mobile {
    display: none !important;
  }

  .header-desktop {

    position  : sticky;
    top       : 0;
    left      : 0;
    right     : 0;
    z-index   : 1020;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
  }
}

/* --- FIM MENU MOBILE --- */