.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre toda a área */
  z-index: -1;       /* fica atrás do conteúdo */
}

/* Overlay escuro */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* semitransparente */
  z-index: 0;
}


@media (max-width: 768px) {
  .bg-video {
    display: block; /* mantém o vídeo ativo */
  }
  .hero-slide {
    background: none; /* remove o fallback */
  }
}

.bg-image {
  background: url("https://sasteamofficial.com/assets/images/equipes/IMG-20251027-WA0040.jpg") center center / cover no-repeat;
}


.bg-image-sld3 {
    background-image: url("https://sasteamofficial.com/assets/images/logo/saslogo-middle.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Opcional: para efeito parallax */
    background-color: #f8f9fa; /* Cor de fundo para os espaços vazios */
}

/* Para dispositivos móveis */
@media (max-width: 768px) {
    .bg-image-sld3 {
        background-image: url("https://sasteamofficial.com/assets/images/logo/saslogo-middle.png");
        background-attachment: scroll; /* Remove parallax em mobile */
        background-size: contain;
        background-position: top center; /* Ajuste a posição se necessário */
    }
}