/* Video section */
.video-player {
  padding: 40px 0 90px; /* mais espaço embaixo */
  background: #fff;     /* garante o "respiro" branco antes do roxo */
}

.lita-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

/* mantém proporção 16:9 responsiva */
.lita-video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.lita-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botão play central (fica por cima até o usuário dar play) */
.lita-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lita-video-wrapper.is-playing .lita-video-play {
  display: none;
}