body {
  margin: 0;
  overflow: hidden;
  background: url("img/Messi_haaland_mbappe.png") center/cover no-repeat;
}

.segundo-body {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.jugador {
    flex: 1;
    position: relative;
    overflow: hidden;

    transform-origin: center;
    transition: none; /* sin transición */
}

.jugador:hover {
    transform: scaleX(1.16);
    
}

/* VIDEO */
.jugador video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  
  opacity: 0;
  transition: 0.3s ease;
}

.jugador.active video {
  opacity: 1;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
}

/* fondos */
.overlay.mbappe { background: url("img/Mbappe_out.png") center/cover no-repeat; }
.overlay.messi { background: url("img/Messi_out.png") center/cover no-repeat; }
.overlay.haaland { background: url("img/Haaland_out.png") center/cover no-repeat; }