.embla {
  position: relative;
  margin: auto;
  overflow: hidden;
}
.embla__viewport {
  position: inherit;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: black;
}


.embla__viewport::before{
  content: "";
  top: -1%;
  left: -1%;
  width: 105%;
  height: 105%;
  position: absolute;
  background-image: url('/imagens/Carrossel/fundo.jpg');
  background-size: cover;
  background-position: center;
}

.embla__container {
  display: flex;
  height: 100%;
}
.embla__slide {
  position: relative;
  min-width: 100%;
  height: auto;
  background-size: cover;
  text-align: center;
  font-size: 24px;
  margin: 0 20px;
  aspect-ratio: 160 / 45;
}

.embla__slide img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}

.embla__prev, .embla__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  border-radius: 500px;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
}
.embla__prev { left: 10px; }
.embla__next { right: 10px; }

.embla__dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0009;
  border-radius: 500px;
  padding: 5px 5px;
}
.embla__dot {
  width: 10px;
  height: 10px;
  background-color: #fff5;
  border: none;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
.embla__dot.is-selected {
  background-color: #fffd;
}
