#container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Cola a imagem ao topo */
  margin-top: 0;
  /* Remove a margem superior */
  width: 100%
}

#imagem {
  width: auto;
  height: auto;
}

#frases {
  /*position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centraliza vertical e horizontalmente */
  color: #fff;
  font-size: 100%;
  font-weight: 600;
  line-height: 430%;
  text-align: center;
  /* Centraliza o texto horizontalmente */
  white-space: nowrap;
  /* Impede a quebra de linha */
}

.caixa-texto {
  background-color: #022D4E;
  color: white;
  border: 4px solid #4BD727;
  border-radius: 10px;
  padding: 5px;
  display: inline-block;
  width: 100%;
  line-height: 220%;
}

.caixa-texto2 {
  background-color: #022D4E;
  color: white;
  border: 4px solid #4BD727;
  border-radius: 10px;
  padding: 5px;
  display: inline-block;
  width: 150px;
  line-height: 220%;
}

#frase1,
#frase2 {
  width: 100%;
}

#frase3,
#frase4 {
  width: 50px;
}

#frase4 {
  margin-left: 5px;
  /* Ajuste o valor conforme necessário */
}

#frase3 {
  margin-right: 5px;
  /* Ajuste o valor conforme necessário */
}

.legenda {
  color: gray;
  text-align: center;
  width: 100%;
}

.caixa-texto {
  position: relative;
}

.legenda1 {
  position: absolute;
  top: -13px;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 45%;
  padding: 2px;
  text-align: center;
  width: 100%;
}

.legenda2 {
  position: absolute;
  top: -13px;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 45%;
  padding: 2px;
  text-align: center;
  width: 100%;
}

.legenda3 {
  position: absolute;
  top: 120px;
  left: -80px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 45%;
  padding: 2px;
  text-align: center;
  width: 100%;
}

/* .legenda4 {
  position: absolute;
  top: 120px;
  left: 80px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 45%;
  padding: 2px;
  text-align: center;
  width: 100%;
} */

.loading-icon {
  animation: rotate 1s linear infinite;
}

.hidden {
  display: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pulsating-text {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}