.hero {
    position: relative;
    overflow: hidden;
    height: 60vh; /* 60% da tela */
}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    background-image: url('/static/images/delivery1.jpg');
}

.background-images::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade aqui */
}

.container {
    position: relative;
    z-index: 2;
}


.mosaico {
  position: relative;
}
.mosaico .imagem-container {
  position: relative;
  overflow: hidden;
}
.mosaico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.texto-sobre-imagem {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6); /* Fundo escuro semi-transparente */
  color: white;
  padding: 10px 20px;
  text-align: center;
  /* border-radius: 5px; */
  font-size: 1.2rem;
  /* font-weight: bold; */
  width: 100%;
}