body {
  padding-top: 88px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 8px 8px 18px rgb(0 0 0 / 19%);
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90vw;
  margin: 0 auto;
  min-height: 88px;
}

header nav .logo {
  width: 132px;
  flex-shrink: 0;
}

header nav .menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav .menu ul li {
  margin-left: 1vw;
}

header nav .menu ul li a {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.833335vw;
  line-height: 125%;
  letter-spacing: 0.001vw;
  color: #13154f;
  text-decoration: none;
}

#btnPortalCliente {
  cursor: pointer;
  justify-content: center;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.8vw;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: #ffa300;
  box-shadow: 0 4px 6px rgb(251 150 60 / 25%);
  border-radius: 15px;
  border: 0;
  padding: 1vw;
}

#user-icon {
  padding-top: 1.5px;
  padding-right: 6px;
}

.mob {
  display: none;
}

.blog-logo-mobile {
  text-decoration: none;
  display: none;
  align-items: center;
}

.blog-logo-mobile .logo {
  display: block;
}

.menu-mobile-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-mobile-btn .menu-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-mobile-btn .menu-dots span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #13154f;
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  body { padding-top: 80px; }
  header nav { min-height: 80px; }
  header nav .logo { width: 118px; }
  header nav .menu ul li a { font-size: 12px; }
  #btnPortalCliente { font-size: 12px; padding: 12px 14px; }
}

@media (max-width: 767px) {
  body { padding-top: 72px; }
  header nav { min-height: 72px; justify-content: space-between; }
  header nav .menu { display: none; }
  header nav .logo { width: 112px; }
  .desk { display: none !important; }
  .mob { display: block !important; }
  .blog-logo-mobile { display: inline-flex !important; }
  .menu-mobile-btn { display: inline-flex !important; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 12px 20px 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgb(0 0 0 / 12%);
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav a {
    display: block;
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #13154f;
    text-decoration: none;
    border-bottom: 1px solid #ececf4;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }
}
