
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #81380b;
  z-index: 9999;
  overflow: hidden;
}


body::after {
  content: "🚚 ✨ Frete grátis a partir de 199,00 para Sul e Sudeste, e 250,00 para Centro-oeste, Norte e Nordeste. ✨ 🚚";
  position: fixed;
  top: 10px;
  white-space: nowrap;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  animation: correr 25s linear infinite;
  z-index: 10000;
  width: 100%;
}


body {
  padding-top: 40px;
}


@keyframes correr {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
