/* =====================================================
   TOP BAR — PRÊMIO MANIA
===================================================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  /* 🎨 Degradê elegante (radial deslocado – efeito premium) */
  background: radial-gradient(
    ellipse at 30% 0%,
    rgb(1, 162, 36) 0%,
    rgba(133, 174, 0, 0.278) 40%,
    rgba(12, 20, 0, 0.97) 100%
  );

  /* 🧊 leve efeito glass */
  backdrop-filter: blur(6px);

  /* ✨ sombra sutil */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);

  /* necessário para a borda reluzente */
  overflow: hidden;
}

/* brilho superior */
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.10),
    transparent 40%,
    rgba(0,255,170,0.06)
  );

  opacity: 0.35;
  pointer-events: none;
}

/* linha reluzente inferior */
.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(202, 255, 42, 0.6),
    rgba(0, 255, 170, 0.6),
    transparent
  );

  opacity: 0.8;
}

/* container interno */
.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.topbar-logo {
  width: 120px;
}

/* área dos ícones */
.topbar-right {
  display: flex;
  gap: 8px;
}

.topbar-right a {
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform .2s ease;
}

.topbar-right a:hover {
  transform: translateY(-2px) scale(1.08);
}

/* ícones */
.icon-img {
  height: auto;
  display: block;
}

/* tamanhos específicos */
.icon-whatsapp {
  width: 35px;
}

.icon-instagram {
  width: 50px;
}

/* MOBILE */
@media (max-width: 900px) {
  .topbar-logo {
    width: 100px;
  }
}
