.textBox li{
  list-style: none;
  padding: 10px;
}

body{
  margin-top: 40px;
}

/* Barra de propaganda */
.propaganda {
  height: 30px;
  background-color: #F29F05;
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.text {
  animation: moveRight 5s linear infinite;
}

@keyframes moveRight {
  0% { transform: translateX(-250%); }
  100% { transform: translateX(250%); }
}

/* transicao popup */
.popupButtonNext {
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }

.popupButtonBack {
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.popup p{
  margin-bottom: 40px;
  text-align: left;
}

/* estilo popup */

.indexLogoImage {
  height: 12rem;
}

.line{
  border-bottom: 2px solid black;
  width: 96%;
}
