.bg-frase {
  background-color: var(--branco);
  min-height: 50rem;
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  overflow-x: clip;
}

.bg-frase.margin {
  margin-bottom: 6rem;
}

.bg-frase.margin::before {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-color: var(--branco);

  position: absolute;
  left: 0;
  bottom: -6rem;
  z-index: -1;
}

.bg-frase .container {
  padding: 8rem 0;
}

.bg-frase h2 {
  max-width: 105rem;
  margin: 0 auto;
  text-align: center;

  position: relative;
  z-index: 2;
}

.bg-frase .video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-frase .video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cinza);
  mix-blend-mode: color;

  position: absolute;
  top: 0;
  left: 0;
}

.bg-frase .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-frase .palavras {
  background-color: var(--branco);
  max-width: max-content;
  width: 100%;

  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translate(-50%, 62%);
  z-index: -1;
}

.bg-frase .palavras p {
  font-size: clamp(1.5rem, 5vw, 9.75rem);
  white-space: nowrap;
}

@media (max-width: 991px) {
  .bg-frase {
    min-height: 30rem;
  }
  .bg-frase.margin {
    margin-bottom: 4rem;
  }
  .bg-frase.margin::before {
    height: 4rem;
    bottom: -4rem;
  }
}
