#bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -1;
}

/* Gradiente que empieza vibrante y se desvanece hacia abajo */
#bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(19deg, 
    #21D4FD 0%,     /* Color inicial */
    #B721FF 30%,   /* Color final del gradiente */
    transparent 80% /* Se vuelve transparente desde el 80% hacia abajo */
  );
  z-index: 0;
  pointer-events: none;
}

/*/ .p-main {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: white;
  text-align: center;
}