#ss-topbarpromo.ss-topbarpromo{
  width:100%;
  background: var(--ssTopbarBg, #16a34a);
  color: var(--ssTopbarColor, #ffffff);
  height: var(--ssTopbarHeight, 48px);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
  line-height:1;
  z-index: 9999;
}

#ss-topbarpromo.ss-topbarpromo.is-sticky{
  position: sticky;
  top: 0;
}

#ss-topbarpromo .ss-topbarpromo__inner{
  width:100%;
  max-width: 1400px;
  padding: 0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}

#ss-topbarpromo .ss-topbarpromo__msg{
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 1 1 auto;
  min-width: 0;
  text-align:center;
}

#ss-topbarpromo .ss-topbarpromo__item{
  display:none;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  width:100%;
}

#ss-topbarpromo .ss-topbarpromo__item.is-active{
  display:block;
}

#ss-topbarpromo .ss-topbarpromo__cta{
  flex: 0 0 auto;
  background: rgba(255,255,255,.92);
  color: #0b6b2b;
  text-decoration:none;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight:700;
  font-size: 13px;
}

#ss-topbarpromo .ss-topbarpromo__cta:hover{
  background: rgba(255,255,255,1);
}

#ss-topbarpromo .ss-topbarpromo__close{
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 0;
  background: rgba(255,255,255,.16);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  line-height: 28px;
  padding: 0;
}

#ss-topbarpromo .ss-topbarpromo__close:hover{
  background: rgba(255,255,255,.26);
}

@media (max-width: 768px){
  #ss-topbarpromo.ss-topbarpromo{
    height: auto;
    padding: 8px 0;
  }
  #ss-topbarpromo .ss-topbarpromo__inner{
    max-width: 100%;
    gap: 10px;
  }
  #ss-topbarpromo .ss-topbarpromo__cta{
    display:none; /* mantém a barra fininha no mobile */
  }
  #ss-topbarpromo .ss-topbarpromo__item{
    white-space: normal;
  }
}
