.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* transparência escura */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; /* acima das imagens */
  text-align: center;
  padding: 1rem;
}
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  .whatsapp-btn:hover {
    background-color: #128C7E;
  }
  .whatsapp-btn img {
    width: 35px;
    height: 35px;
  }

  .faixa-sem-receita {
  width: 100%;
  background-color: #60057c;
  padding: 0.2rem 0;
  overflow: hidden;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid hsl(0, 0%, 0%);
}
 

.texto-rolante {
  white-space: nowrap;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: hsl(0, 0%, 98%);
  animation: deslizar 20s linear infinite;
}

@keyframes deslizar {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
 .destaque {
  background: #4b0082; /* roxo escuro */
  color: #fff;
  padding: 40px 20px;
  text-align: left;
}

.destaque .container {
  max-width: 800px;
  margin: auto;
}

.destaque-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destaque-lista li {
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

