.topbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,10,24,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* ================= LOGO (pílula arredondada) ================= */
.top-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;

  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);

  transition: background .2s ease, border-color .2s ease;
}

.top-logo:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}

/* imagem da logo */
.logo-img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;

  border-radius: 8px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

/* wrapper do texto (titulo + subtitulo) */
.logo-text-wrap{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

/* texto principal */
.logo-text{
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-text b{
  color: #7c3aed;
}

/* subtítulo (Malta Eletrônicos) */
.logo-subtext{
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
  white-space: nowrap;
}

.logo-subtext b{
  color: #fbbf24;
  font-weight: 600;
}

/* ================= MENU (DESKTOP) ================= */
.top-menu{
  display: flex;
  gap: 22px;
  align-items: center;
}

.top-menu a{
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .15s ease;
}

.top-menu a:hover{
  color: #fff;
}

/* ================= BOTÃO ================= */
.top-btn{
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111827, #1f2937);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.15);
  transition: transform .14s ease, filter .14s ease;
}

.top-btn:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.top-btn:active{
  transform: translateY(1px);
}

/* ================= MOBILE (somente ajustes do header) ================= */
@media (max-width: 900px){
  .topbar-inner{
    padding: 12px 14px;
  }

  .top-logo{
    padding: 7px 12px;
  }

  .logo-img{
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .logo-text{
    font-size: 14px;
  }

  .logo-subtext{
    font-size: 10px;
  }

  .top-btn{
    padding: 9px 14px;
    font-size: 13px;
  }
}
