.setor1 {
  width: 100%;
  height: 30px;
  background-color: #363636;
  display: flex;
  justify-content: center;
  align-items: center;
}

.setor1-texto {
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  animation: lights 4s infinite;
  text-align: center;
  white-space: nowrap;
  color: hsl(28, 89%, 80%);
  line-height: 30px; /* Centraliza verticalmente */
}

/* Animação do texto */
@keyframes lights {
  0% {
    color: hsl(28, 89%, 80%);
    text-shadow:
      0 0 1em hsla(28, 100%, 50%, 0.2),
      0 0 0.125em hsla(28, 100%, 60%, 0.3),
      -1em -0.125em 0.5em hsla(50, 100%, 60%, 0),
      1em 0.125em 0.5em hsla(208, 100%, 60%, 0);
  }
  30% {
    color: hsl(28, 100%, 90%);
    text-shadow:
      0 0 1em hsla(28, 100%, 50%, 0.5),
      0 0 0.125em hsla(28, 100%, 60%, 0.5),
      -0.5em -0.125em 0.25em hsla(50, 100%, 60%, 0.2),
      0.5em 0.125em 0.25em hsla(208, 100%, 60%, 0.4);
  }
  40% {
    color: hsl(28, 100%, 95%);
    text-shadow:
      0 0 1em hsla(28, 100%, 50%, 0.5),
      0 0 0.125em hsla(28, 100%, 90%, 0.5),
      -0.25em -0.125em 0.125em hsla(50, 100%, 60%, 0.2),
      0.25em 0.125em 0.125em hsla(208, 100%, 60%, 0.4);
  }
  70% {
    color: hsl(28, 100%, 90%);
    text-shadow:
      0 0 1em hsla(28, 100%, 50%, 0.5),
      0 0 0.125em hsla(28, 100%, 60%, 0.5),
      0.5em -0.125em 0.25em hsla(50, 100%, 60%, 0.2),
      -0.5em 0.125em 0.25em hsla(208, 100%, 60%, 0.4);
  }
  100% {
    color: hsl(28, 89%, 80%);
    text-shadow:
      0 0 1em hsla(28, 100%, 50%, 0.2),
      0 0 0.125em hsla(28, 100%, 60%, 0.3),
      1em -0.125em 0.5em hsla(50, 100%, 60%, 0),
      -1em 0.125em 0.5em hsla(208, 100%, 60%, 0);
  }
}

/* Responsividade para celulares */
@media screen and (max-width: 600px) {
  .setor1 {
    height: 40px;
  }

  .setor1-texto {
    font-size: 0.8rem;
    line-height: 40px;
  }
}
#logo-setor1-mobile {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

#logo-setor1-mobile img {
  height: 28px;
  width: auto;
}
