/* BANNER ROTATIVO */
.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-slide {
  display: none;
  position: relative;
}

.banner-slide img {
  width: 100%;
    height: auto;     /* Mantém proporção real */
    max-height: 100px; /* Limita a altura */
    object-fit: contain;
}

/* Animação de fade 
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: .4 }
  to { opacity: 1 }
}*/